|
-
Feb 8th, 2008, 10:48 AM
#1
Thread Starter
Frenzied Member
Insert records
I have three reading,
I have to insert first reading first (text1.text) , After I save the first reading for first records, I want it pop up the messagebox, You want to add records for reading two? Text1.text = text1.text + 1, If I click yes, now text1 show me number 2 that mean it increase to 2 from first reading. I am no idea to start it. How to do that?
-
Feb 8th, 2008, 11:07 AM
#2
Re: Insert records
I don't understand the question.
Lets start with what is a "reading"?
-
Feb 10th, 2008, 08:54 AM
#3
Thread Starter
Frenzied Member
Re: Insert records
Like this, I have to insert three records into the database.The id number for each records are "1" ,"2", "3". This Id number are unique.
After finish insert the record for Id number 1 and save the records for Id 1, it want to pop up the message, How to pop up messagebox and said "You record for ID 1 is saving, You want to insert ID 2" and so on. After ID number 3 is saving, I don't want to pop up the messagebox again.. How to do that?
MsgBox "You record for :" & Combo9.Text & " is saving!", vbOKOnly + vbInformation, "Info"
Combo9.Text = Combo9.Text + 1
If MsgBox("You want to insert record for ID:" & Combo9.Text & "?", vbQuestion + vbYesNo) = vbYes Then
Last edited by matrik02; Feb 10th, 2008 at 08:57 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|