shanmugham
Programmer
Dear friends
i am using vb6, access 97, ADO & msflexgrid
displaying lines in grid lines
using this following commands
sstring is a text (approx 500 chrs)
phrase = sString
blankposition = InStr(1, phrase, vbCrLf)
While blankposition <> 0
nextword = Left$(phrase, blankposition - 1)
str1 = nextword)
gcfc.TextMatrix(lpcount, 3) = str1
gcfc.Rows = gcfc.Rows + 1
lpcount = lpcount + 1
phrase = Right$(phrase, Len(phrase) - blankposition)
blankposition = InStr(1, phrase, vbCrLf)
Wend
str1 = phrase
gcfc.TextMatrix(lpcount, 3) = str1
gcfc.Rows = gcfc.Rows + 1
lpcount = lpcount + 1
I WANT TO GLOW A PARTICULAR WORD IN A LINE OR DIFFERENTIATE A PARTICULAR WORD IN A LINE
HOW TO DO THIS
thanks in advance
SHAN
i am using vb6, access 97, ADO & msflexgrid
displaying lines in grid lines
using this following commands
sstring is a text (approx 500 chrs)
phrase = sString
blankposition = InStr(1, phrase, vbCrLf)
While blankposition <> 0
nextword = Left$(phrase, blankposition - 1)
str1 = nextword)
gcfc.TextMatrix(lpcount, 3) = str1
gcfc.Rows = gcfc.Rows + 1
lpcount = lpcount + 1
phrase = Right$(phrase, Len(phrase) - blankposition)
blankposition = InStr(1, phrase, vbCrLf)
Wend
str1 = phrase
gcfc.TextMatrix(lpcount, 3) = str1
gcfc.Rows = gcfc.Rows + 1
lpcount = lpcount + 1
I WANT TO GLOW A PARTICULAR WORD IN A LINE OR DIFFERENTIATE A PARTICULAR WORD IN A LINE
HOW TO DO THIS
thanks in advance
SHAN