Click here to Skip to main content
15,903,201 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralControl Selection & Resizing at Runtime Pin
for12068-Jan-08 1:26
for12068-Jan-08 1:26 
GeneralRe: Control Selection & Resizing at Runtime Pin
Dave Kreskowiak9-Jan-08 3:26
mveDave Kreskowiak9-Jan-08 3:26 
GeneralRe: Control Selection & Resizing at Runtime Pin
student_rhr27-Feb-08 3:57
student_rhr27-Feb-08 3:57 
QuestionIs this the Right way to handle Concurrency ? Pin
Vimalsoft(Pty) Ltd7-Jan-08 22:50
professionalVimalsoft(Pty) Ltd7-Jan-08 22:50 
AnswerRe: Is this the Right way to handle Concurrency ? Pin
Paddy Boyd8-Jan-08 0:52
Paddy Boyd8-Jan-08 0:52 
GeneralRe: Is this the Right way to handle Concurrency ? Pin
Vimalsoft(Pty) Ltd8-Jan-08 1:19
professionalVimalsoft(Pty) Ltd8-Jan-08 1:19 
AnswerRe: Is this the Right way to handle Concurrency ? Pin
Dave Kreskowiak9-Jan-08 3:17
mveDave Kreskowiak9-Jan-08 3:17 
GeneralAdding control in MSFlexgrid Pin
aaraaayen7-Jan-08 22:21
aaraaayen7-Jan-08 22:21 
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: Adding control in MSFlexgrid Pin
Dave Kreskowiak9-Jan-08 3:09
mveDave Kreskowiak9-Jan-08 3:09 
GeneralThe Following Code gives this Error "Object reference not set to an instance of an object." Pin
Vimalsoft(Pty) Ltd7-Jan-08 19:34
professionalVimalsoft(Pty) Ltd7-Jan-08 19:34 
GeneralRe: The Following Code gives this Error "Object reference not set to an instance of an object." Pin
Christian Graus7-Jan-08 21:30
protectorChristian Graus7-Jan-08 21:30 
GeneralRe: The Following Code gives this Error "Object reference not set to an instance of an object." Pin
Vimalsoft(Pty) Ltd7-Jan-08 21:47
professionalVimalsoft(Pty) Ltd7-Jan-08 21:47 
GeneralRe: The Following Code gives this Error "Object reference not set to an instance of an object." Pin
Christian Graus7-Jan-08 22:00
protectorChristian Graus7-Jan-08 22:00 
GeneralRe: The Following Code gives this Error "Object reference not set to an instance of an object." Pin
Vimalsoft(Pty) Ltd7-Jan-08 22:18
professionalVimalsoft(Pty) Ltd7-Jan-08 22:18 
GeneralBackup and Restore Pin
vaani7-Jan-08 19:00
vaani7-Jan-08 19:00 
GeneralRe: Backup and Restore Pin
Vimalsoft(Pty) Ltd7-Jan-08 21:00
professionalVimalsoft(Pty) Ltd7-Jan-08 21:00 
Questionthinstall Pin
Tauseef A7-Jan-08 18:45
Tauseef A7-Jan-08 18:45 
Generalcustom control picturebox click handling Pin
raventatatatata7-Jan-08 16:45
raventatatatata7-Jan-08 16:45 
GeneralRe: custom control picturebox click handling Pin
Ajay.k_Singh7-Jan-08 23:21
Ajay.k_Singh7-Jan-08 23:21 
GeneralRe: custom control picturebox click handling Pin
raventatatatata8-Jan-08 13:30
raventatatatata8-Jan-08 13:30 
QuestionConsuming .NEt web service in VB 6.0 Client Pin
DeepakSh7-Jan-08 11:32
DeepakSh7-Jan-08 11:32 
GeneralRe: Consuming .NEt web service in VB 6.0 Client Pin
Christian Graus7-Jan-08 11:57
protectorChristian Graus7-Jan-08 11:57 
GeneralFlow Charting in VB Pin
ExcelMonkey7-Jan-08 7:21
ExcelMonkey7-Jan-08 7:21 
GeneralRe: Flow Charting in VB Pin
Christian Graus7-Jan-08 9:35
protectorChristian Graus7-Jan-08 9:35 
GeneralRe: Flow Charting in VB Pin
ExcelMonkey7-Jan-08 10:02
ExcelMonkey7-Jan-08 10:02 

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.