473,385 Members | 1,757 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

myGridTable

guy

if you have to do it try this . (sorry about the wrapping)

Imports System.Reflection
Imports System
Imports System.Windows.Forms
Public Class GridColumnFormatter

Public Shared Sub SetColumnWidth(ByVal Grid As
System.Windows.Forms.DataGrid, ByVal ColumnIndex As
Integer, ByVal ColumnWidth As Integer)
Dim thing As Object
Dim Field As FieldInfo = Grid.GetType.GetField
("myGridTable", BindingFlags.Instance Or
BindingFlags.NonPublic)
thing = Field.GetValue(Grid)
Field = thing.GetType.GetField("gridColumns",
BindingFlags.Instance Or BindingFlags.NonPublic)
thing = Field.GetValue(thing)
Dim col As
System.Windows.Forms.DataGridTextBoxColumn = thing
(ColumnIndex)
col.Width = ColumnWidth
End Sub

End Class

-----Original Message-----
using quickwatch on a winforms datagrid I can see
myGridTable property, tunneling down there is much info
useful to a developer. why is this not exposed as a publicor protected property? Is it to force people to use the
TableStyles collection?

I suppose I will have to resort to Reflection...

guy
.

Jul 19 '05 #1
0 1202

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: guy | last post by:
if you have to do it try this . (sorry about the wrapping) Imports System.Reflection Imports System Imports System.Windows.Forms Public Class GridColumnFormatter Public Shared Sub...
0
by: guy | last post by:
if you have to do it try this . (sorry about the wrapping) Imports System.Reflection Imports System Imports System.Windows.Forms Public Class GridColumnFormatter Public Shared Sub...
3
Frinavale
by: Frinavale | last post by:
Hi there, I'm using JavaScript to highlight a row or column in a table. I have created a CSS class that changes the background colour to a light blue and I apply this class to the cells in the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.