Click here to Skip to main content
15,891,136 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Generalsyntax highlighting in richtextbox Pin
balakpn9-Jan-08 0:32
balakpn9-Jan-08 0:32 
GeneralRe: syntax highlighting in richtextbox Pin
Dave Kreskowiak9-Jan-08 4:09
mveDave Kreskowiak9-Jan-08 4:09 
QuestionNeed Help on Delegates Pin
Senthil S8-Jan-08 23:05
Senthil S8-Jan-08 23:05 
GeneralRe: Need Help on Delegates Pin
Dave Kreskowiak9-Jan-08 4:05
mveDave Kreskowiak9-Jan-08 4:05 
GeneralMonth&Year Pin
Priya S8-Jan-08 20:23
Priya S8-Jan-08 20:23 
GeneralRe: Month&Year Pin
Christian Graus8-Jan-08 20:43
protectorChristian Graus8-Jan-08 20:43 
GeneralRe: Month&Year Pin
Priya S8-Jan-08 20:56
Priya S8-Jan-08 20:56 
GeneralHelp to add CheckBox control to the flexgrid Pin
aaraaayen8-Jan-08 19:50
aaraaayen8-Jan-08 19:50 
Hi,

I am having MSFlexgrid with some contents from backend. In it at the last column at every row i need to add a checkbox over it. I tried with the following code. Its not throwing error. But i cannot see the checkbox. Please help me. And also i need to write a code when the checkboxes are select and click button it should do some things like "Accept" in backend.
Please help me. Its urgent.

MSFlexGrid1.Rows = rs.RecordCount
MSFlexGrid1.Cols = rs.Fields.Count + 1
Dim i, j As Integer
For i = 0 To rs.RecordCount - 1
For j = 0 To rs.Fields.Count - 1
MSFlexGrid1.TextMatrix(i, j) = rs.Fields(j).Value
If j = rs.Fields.Count - 1 Then
Load Check1(i + 1)
MSFlexGrid1.Row = i
MSFlexGrid1.Col = j + 1
Check1(i + 1).Left = MSFlexGrid1.CellLeft + MSFlexGrid1.Left
Check1(i + 1).Top = MSFlexGrid1.CellTop + MSFlexGrid1.Top
'Check1(n).Width = MSFlexGrid1.CellWidth
'check1(n).Height=
Check1(i + 1).Caption = "check1(" & i & ")"
Check1(i + 1).Visible = True

End If
Next j
Next i


Thanks in Advance,

Regards,
GeneralRe: Help to add CheckBox control to the flexgrid Pin
Dave Kreskowiak9-Jan-08 3:58
mveDave Kreskowiak9-Jan-08 3:58 
GeneralDataTable and Labels... Pin
Illegal Operation8-Jan-08 19:11
Illegal Operation8-Jan-08 19:11 
GeneralRe: DataTable and Labels... Pin
Christian Graus8-Jan-08 19:21
protectorChristian Graus8-Jan-08 19:21 
GeneralRe: DataTable and Labels... Pin
Illegal Operation8-Jan-08 20:00
Illegal Operation8-Jan-08 20:00 
Questionhow to zip/Unzip Files Pin
irfanahsan8-Jan-08 18:53
irfanahsan8-Jan-08 18:53 
AnswerRe: how to zip/Unzip Files Pin
Reza Raad8-Jan-08 19:56
Reza Raad8-Jan-08 19:56 
GeneralRe: how to zip/Unzip Files Pin
Nilesh Hapse8-Jan-08 20:20
Nilesh Hapse8-Jan-08 20:20 
Generalbacked-up file destination Pin
Tony Rose Victorino8-Jan-08 18:42
Tony Rose Victorino8-Jan-08 18:42 
QuestionRe: backed-up file destination Pin
Reza Raad8-Jan-08 20:02
Reza Raad8-Jan-08 20:02 
GeneralRe: backed-up file destination Pin
Dave Kreskowiak9-Jan-08 3:54
mveDave Kreskowiak9-Jan-08 3:54 
GeneralRe: backed-up file destination Pin
Johan Hakkesteegt10-Jan-08 5:29
Johan Hakkesteegt10-Jan-08 5:29 
Questionwhen creating a schedule task what are the things that you need to consider? Pin
Tony Rose Victorino8-Jan-08 18:36
Tony Rose Victorino8-Jan-08 18:36 
AnswerRe: when creating a schedule task what are the things that you need to consider? Pin
Christian Graus8-Jan-08 18:42
protectorChristian Graus8-Jan-08 18:42 
QuestionI can't figure out how to add, edit and delete records in my database Pin
skinner_bx8-Jan-08 18:30
skinner_bx8-Jan-08 18:30 
GeneralRe: I can't figure out how to add, edit and delete records in my database Pin
Christian Graus8-Jan-08 18:40
protectorChristian Graus8-Jan-08 18:40 
GeneralRe: I can't figure out how to add, edit and delete records in my database Pin
Nilesh Hapse8-Jan-08 20:03
Nilesh Hapse8-Jan-08 20:03 
Generalbackup and restore Pin
Tony Rose Victorino8-Jan-08 18:27
Tony Rose Victorino8-Jan-08 18:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.