hello can you help me how can i remove the flexgrid lines or to be invisible lines in my flexgrid and to put some background color in every rows..just like in I-Tunes software blue and white color of the grid rows...please help me hoping for your positive responds...
thank you in advance...

Hi,

To remove grid lines, Right click FlexGrid, goto tab "Style' and give
GridLines =0 - None.

to change row color:

dim j as integer
With Grd
  .Row =1
  For j = 0 To .Cols-1
    .Col = j 
    .CellbackColor = vbBlue
    .CellForecolor - vbWhite
  Next
End With

Regards
Veena

Hi,

To remove grid lines, Right click FlexGrid, goto tab "Style' and give
GridLines =0 - None.

to change row color:

dim j as integer
With Grd
  .Row =1
  For j = 0 To .Cols-1
    .Col = j 
    .CellbackColor = vbBlue
    .CellForecolor - vbWhite
  Next
End With

Regards
Veena

hi thank you for the reply and for helping me i will write again if i have doubt..more power to you...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.