Jan 5, 2004 #1 pna3 Programmer Dec 5, 2003 21 IN I am using the Microsoft Hierchical FlexiGrid Report option in VB to generate a report on the Screen for the User to view. I want to make alignment changes to text in certain columns. How do i do this? plz help. this is very urgent
I am using the Microsoft Hierchical FlexiGrid Report option in VB to generate a report on the Screen for the User to view. I want to make alignment changes to text in certain columns. How do i do this? plz help. this is very urgent
Jan 6, 2004 #2 Maii Programmer Aug 28, 2003 54 BD MSHFlexGrid1.ColAlignment(3) =flexAlignRightCenter Upvote 0 Downvote
Jan 6, 2004 #3 zemp Programmer Jan 27, 2002 3,301 CA You can also set the alignment in the formatstring property (if used). For example, Code: grid.formatstring = "<Col1 |^Col2 |>Col3 " '<' aligns the entire column to the left, '^' aligns center and '>' aligns right. This can be done at design time or at run time. Take Care, zemp Upvote 0 Downvote
You can also set the alignment in the formatstring property (if used). For example, Code: grid.formatstring = "<Col1 |^Col2 |>Col3 " '<' aligns the entire column to the left, '^' aligns center and '>' aligns right. This can be done at design time or at run time. Take Care, zemp