Special Charecter
-
Hi, I m work in vb6.0 i want insert a special charector in Hirechieachal FlexGrid for exampal "right mark"
-
Hi, I m work in vb6.0 i want insert a special charector in Hirechieachal FlexGrid for exampal "right mark"
What do you mean by "insert in a FlexGrid"? I'm assuming you're talking about a string. You put a special character in a string just like any other character. (Pardon me, but my VB6 is a little rusty)...
Dim newString As String
newString = Left(oldString, 10) & Chr(characterNumber) & Right(oldString, Len(oldString) - 10)The limitation is that the character you insert must exist in the font that you want the rest of the string to be in. If not, you're pretty much out of luck. You can't use different fonts inside the same string in the FlexGrid. -- modified at 10:20 Tuesday 1st August, 2006
Dave Kreskowiak Microsoft MVP - Visual Basic