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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FlexGrid Headers

Status
Not open for further replies.

ToshTrent

Technical User
Jul 27, 2003
209
How can I make the following code turn my flexgrid headers to a fixed row?

With msflxMediaCodes

Set .DataSource = rs
.ColHeader(0) = flexColHeaderOn
.Cols = 2
.RowHeightMin = 280

.ColHeaderCaption(0, 0) = "Client"
.ColWidth(0) = 580
.ColHeaderCaption(0, 1) = "Magazine"
.ColWidth(1) = 500
End With

I did try (.FixedRows = 1) but this just got my field names from Access.

Thanx
Tosh
 
Have you tried:

MSFlexGrid1.textmatrix(0,0) = "MyCaption"

Good Luck

Bob
 
Errm nope,

Has anyone ever told you that you're a lord?

Thank you for your help!

Tosh
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top