Results 1 to 3 of 3

Thread: Insert records

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Feb 2007
    Location
    Malaysia
    Posts
    1,370

    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?

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Insert records

    I don't understand the question.

    Lets start with what is a "reading"?

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Feb 2007
    Location
    Malaysia
    Posts
    1,370

    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
  •  



Click Here to Expand Forum to Full Width