Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data Grid Created with GUI

Status
Not open for further replies.

JulesDBQ

Programmer
Apr 17, 2003
22
US
I created a data grid using the GUI within VB .NET. I would like to manipulate the column widths for some of the columns in this data grid and make them wider. Will I be able to do this since I created it with the GUI and not with code? Any assistance would be appreciated. Thanks.
 
Yes. Everything you do in the GUI is writen in code. Switch to the code view and look for the "Windows Form Designer Generated Code" region. If you expand that you can see all of the components and settings in code.

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
I should have thought of that. [smile] Thanks for the hint. Now for the details of what I need to do to resize the column widths of the grid. Where in the code is that referenced? Do you have any sample snipets of code that would give me a good start. Thanks again.
 
I >think< the datagrid object has either a columns collection with width properties, or a collection of columnwidths. I can't recall. but it is likely something like:

datagrid.cols(0).width = xxx

or

datagrid.columns(0).width = xxx

or

datagrid.columnwidth(0) = xxx

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top