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!

Can I start the Hierarchical Flex Grid 'unexpanded'?

Status
Not open for further replies.

rwilliams

Programmer
Aug 9, 2001
17
GB
Can you start it with + signs showing rather than -ve's? I've examined the various properties but none look promising. By the way thanks to everyone; I'm writing my first VB app (we normally use other languages) and this site is very helpful as I have no one else in the office to ask. Hope I'll be able to help people myself soon.
 
THIS MAY BE OF HELP.

Why not set the column width to zero on load form.

Private sub form_load()
With MSFlexGrid1
.ColWidth(0) = 0
.ColWidth(1) = 0
End With

Then you can resize the grid when needed.
 
I don't really want to change the column widths, just not open the subrecords. They seem to open automatically which is annoying.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top