hello please help me on how to put indicator on flexgrid is this possible?,...if i have new added data on my flexgrid then it point to the newly added data can you help how to do this...hoping for your positive responds..thanks in advance
jemz -1 Master Poster
Recommended Answers
Jump to PostHi!
If you want a "sign" in the line (the way Microsoft Access does), you can make a small picture (in "bmp" or "ico" format, I supose), then load this picture all times user change the line, or, if you use datacontrol, all times user move to next / …
Jump to PostHi,
Or else, Just simply change the BackColor of newly added row...
Say You have added new row to the grid as the last row, then use this code:Dim i As Integer With Grd .Row = .Rows-1 For i = 0 To .Cols-1 .Col = …
Jump to PostThanks, Veena!
Your solution make the entitre line "indicated" and are faster, cause don't need to load any picture to the memory...
The one I presented put a little icon in the beggining of the line, so, if the user don't pay attention, sometimes it will not be viewed...…
Jump to PostHi Sidnei,
Welcome.. Changing the BackColor of entire row is faster and less load on memory..
But the only thing we need to Take Care here is, When the User Adds One more row (If the rows are not being added sequentially) , We need to Reset the back/fore …
Jump to PostHi,
Try This :
Dim n As Integer grd.TextMatrix(grd.Rows - 1, 0) = vidno grd.TextMatrix(grd.Rows - 1, 1) = pn grd.TextMatrix(grd.Rows - 1, 2) = last grd.TextMatrix(grd.Rows - 1, 3) = first grd.TextMatrix(grd.Rows - 1, 4) = middle grd.TextMatrix(grd.Rows - 1, 5) = address grd.TextMatrix(grd.Rows - …
All 21 Replies
sidnei 12 Junior Poster in Training
ankush.mukherje 0 Junior Poster
QVeen72 104 Posting Shark
sidnei 12 Junior Poster in Training
ankush.mukherje 0 Junior Poster
QVeen72 104 Posting Shark
jemz -1 Master Poster
jemz -1 Master Poster
QVeen72 104 Posting Shark
jemz -1 Master Poster
jemz -1 Master Poster
jemz -1 Master Poster
sidnei 12 Junior Poster in Training
jemz -1 Master Poster
sidnei 12 Junior Poster in Training
jemz -1 Master Poster
sidnei 12 Junior Poster in Training
sidnei 12 Junior Poster in Training
jemz -1 Master Poster
sidnei 12 Junior Poster in Training
jemz -1 Master Poster
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.