Click here to Skip to main content
16,006,605 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionCopy Append to Clipboard Pin
gonen5227-May-09 18:35
gonen5227-May-09 18:35 
AnswerRe: Copy Append to Clipboard Pin
Anubhava Dimri27-May-09 20:10
Anubhava Dimri27-May-09 20:10 
GeneralRe: Copy Append to Clipboard Pin
gonen5227-May-09 20:42
gonen5227-May-09 20:42 
AnswerRe: Copy Append to Clipboard Pin
Mycroft Holmes27-May-09 22:14
professionalMycroft Holmes27-May-09 22:14 
AnswerRe: Copy Append to Clipboard Pin
oikoik14-Jan-10 19:46
oikoik14-Jan-10 19:46 
Questionstart monitor external application problem with shared folder Pin
nico200727-May-09 14:05
nico200727-May-09 14:05 
AnswerRe: start monitor external application problem with shared folder Pin
gsaxena190927-May-09 14:09
gsaxena190927-May-09 14:09 
QuestionNeed a code [modified] Pin
gsaxena190927-May-09 13:53
gsaxena190927-May-09 13:53 
Hi
I've create a check box array, want to display a message box - moment the user clicks the 3rd check box

Private Sub step19() ' Action Item PGR

Dim conns1 As New ADODB.Connection
Dim rss1 As New ADODB.Recordset
Dim idexs1 As Integer
Dim sss1 As String
''On Error GoTo errorHandler


conns1.Open "Driver={Microsoft Access Driver (*.mdb)};" & _
"Dbq=" & App.Path & "\EPMTDB.mdb;" & _
"Uid=;Pwd=;"

Set rss1 = New ADODB.Recordset
rss1.CursorType = adOpenKeyset
rss1.LockType = adLockPessimistic



rss1.Open "select * from StepSI", conns1

idexs1 = 0


For i = 0 To 2
Check(i).Visible = True
Next

For i = 0 To 2
Check(i).Caption = rss1!APGR
rss1.MoveNext
Next
' here I need the code, when the user click on 2nd check box gets the message box


For i = 3 To 9
Check(i).Visible = False
Next


rss1.Close
conns1.Close

End Sub

modified on Wednesday, May 27, 2009 8:09 PM

AnswerRe: Need a code Pin
_Damian S_27-May-09 15:32
professional_Damian S_27-May-09 15:32 
GeneralRe: Need a code Pin
gsaxena190927-May-09 23:59
gsaxena190927-May-09 23:59 
Questionproblem with Master-Detail database in VB6 Pin
breikascool27-May-09 13:25
breikascool27-May-09 13:25 
Questionaccept a string and convert the case of the characters [modified] Pin
Member 451421827-May-09 10:59
Member 451421827-May-09 10:59 
AnswerRe: accept a string and convert the case of the characters [modified] Pin
EliottA27-May-09 11:11
EliottA27-May-09 11:11 
JokeRe: accept a string and convert the case of the characters Pin
Luc Pattyn27-May-09 12:08
sitebuilderLuc Pattyn27-May-09 12:08 
GeneralRe: accept a string and convert the case of the characters Pin
EliottA27-May-09 12:09
EliottA27-May-09 12:09 
GeneralRe: accept a string and convert the case of the characters Pin
Luc Pattyn27-May-09 12:21
sitebuilderLuc Pattyn27-May-09 12:21 
AnswerRe: accept a string and convert the case of the characters Pin
EliottA27-May-09 11:25
EliottA27-May-09 11:25 
AnswerRe: accept a string and convert the case of the characters Pin
Luc Pattyn27-May-09 11:39
sitebuilderLuc Pattyn27-May-09 11:39 
QuestionDate Design Suggestion... Pin
smjunior0927-May-09 7:36
smjunior0927-May-09 7:36 
AnswerRe: Date Design Suggestion... Pin
Dave Kreskowiak27-May-09 7:46
mveDave Kreskowiak27-May-09 7:46 
GeneralRe: Date Design Suggestion... Pin
smjunior0927-May-09 7:53
smjunior0927-May-09 7:53 
GeneralRe: Date Design Suggestion... Pin
Dave Kreskowiak27-May-09 10:22
mveDave Kreskowiak27-May-09 10:22 
QuestionSubclass a Control by UserControl Pin
Samir Ibrahim27-May-09 6:36
Samir Ibrahim27-May-09 6:36 
AnswerRe: Subclass a Control by UserControl Pin
EliottA27-May-09 7:03
EliottA27-May-09 7:03 
GeneralRe: Subclass a Control by UserControl Pin
Samir Ibrahim27-May-09 21:37
Samir Ibrahim27-May-09 21:37 

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.