Link to home
Start Free TrialLog in
Avatar of pdvsa
pdvsaFlag for United States of America

asked on

Insert Into

Experts:
In the below, how can I set the value of the combo box on tblLCAmendHistory to ID=14 which corresponds to the word "ISSUE"?
I have a row source qry on AmendType in tblAmendHistory:
SELECT tblLCAmendTypeDropBox.ID, tblLCAmendTypeDropBox.Type FROM tblLCAmendTypeDropBox ORDER BY tblLCAmendTypeDropBox.Type;

I have not tested the below yet so there could be something wrong with the AmendType part.  I dont know if I need it in the first part or if I could remove it completely.

Also, if the LCNo is "" then I would want the code to stop and I think Cancel = True stops the code and therefor no insert.  Let me know that is correct.  

basically what I am doing is after user inputs a date in the field [DateOfIssueSB] then it should INISERT. I am not sure if I should use BeforeUpdate or AFterUpdate.  I think it might be beforeUpdate because need to test if Null but not sure if the date entered by user will be "seen" in the BeforeUPdate event.  

Anyways, any questions please let me know.

Private Sub txtDateOfIssueSB_BeforeUpdate(Cancel As Integer)

       Dim strSQL As String
 
   If Me.LCNo = "" Then
        MsgBox "Enter in the LC No before Entering the Issue Date (need it for Insert Event)"
        Cancel = True
   
     ElseIf (Me.DateOfIssueSB) = "" Then
    'wanting to insert the Date that was entered but only if it was Null before the date was entered.  If not null before update then that means there was a date already entered and dont want to do any Insert.

  strSQL = "INSERT INTO tblLCAmendHistory (AmendedDate, letterOfCreditID, EndUserID, LCNo, AmendType) VALUES (#" & Format(Date, "m\/d\/yyyy") & "#," & Me!ID & "," & Me!EndUserID & ",'" & HyperlinkPart(Me!LCNo, acDisplayText) & "' "    'NOT SURE WHAT I WOULD PUT HERE IF ANYTHING TO SET THE THE VALUE TO EQUAL "ISSUE" IN THE COMBO BOX. ON TBLAMENDHISTORY.
 
  End If
Avatar of Hamed Nasr
Hamed Nasr
Flag of Oman image

Attach a sample database, and supply steps to follow to get the results.
Avatar of pdvsa

ASKER

I opened the attached and I think you will get an error because I cant save the file with my changes to auto exec form to open.  If you can just open frmLetterOfCredit_cont please.  
Avatar of pdvsa

ASKER

it is 2k7
Looks like you pressed submit without Adding File.
You need to press File---Then Add File Then Submit.
Don't foreget instruction, to open file, and type what, and to expect what, but you get other output.
Avatar of pdvsa

ASKER

Oh i am out of it today.   I have been doing too many things at once.   I am not at computer at the moment.   I think you are outside the usa too.   Will upload soon...
Avatar of pdvsa

ASKER

Hnasr:  attached is the file...

New---use-this-for-EE.zip
ASKER CERTIFIED SOLUTION
Avatar of Hamed Nasr
Hamed Nasr
Flag of Oman image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pdvsa

ASKER

Hnasr:  will get back to you shortly.  I have been out on vacation and will revisit at another  time.