txgeekgirl
Registered User.
- Local time
- Today, 00:32
- Joined
- Jul 31, 2008
- Messages
- 187
I am trying to make a little adjustment (AddVersion) form that feeds from a form called PBCCUpdateForm.
I need Add Version to record the selected Title ID from the PBCCUpdateForm so a new Version for that title can be added.
Add Version has four properties - Textbox to hold TitleID, Input Box for Version and two check boxes for Media Copy or Disaster Recovery Copy.
TitleID In Add Version should equal Title ID from PBCCUpdateForm and log that Title ID into the Applications Table.
Here are some codes I have tried:
'Me.TitleID = DLookup("[TitleID]", "[Title], [TitleID] = " & Str([Forms]![PBCCUpdateForm]![cmbTitle]))
'[TitleID] = DLookup("[TitleID]", "[Title], [TitleID] = " & Str([Forms]![PBCCUpdateForm]![cmbTitle]))
'[TitleID] = DLookup("[TitleID]", "[Title]", "[Title] = " & [Forms]![PBCCUpdateForm]![cmbTitle])
'Me.TitleID = DLookup("[TitleID]", "[Title]", "[TitleID] = " & [Forms]![PBCCUpdateForm]![cmbTitle])
Nothing works. My boss, who is the YODA of DB programming is on vacation and I need help desperately.
I need Add Version to record the selected Title ID from the PBCCUpdateForm so a new Version for that title can be added.
Add Version has four properties - Textbox to hold TitleID, Input Box for Version and two check boxes for Media Copy or Disaster Recovery Copy.
TitleID In Add Version should equal Title ID from PBCCUpdateForm and log that Title ID into the Applications Table.
Here are some codes I have tried:
'Me.TitleID = DLookup("[TitleID]", "[Title], [TitleID] = " & Str([Forms]![PBCCUpdateForm]![cmbTitle]))
'[TitleID] = DLookup("[TitleID]", "[Title], [TitleID] = " & Str([Forms]![PBCCUpdateForm]![cmbTitle]))
'[TitleID] = DLookup("[TitleID]", "[Title]", "[Title] = " & [Forms]![PBCCUpdateForm]![cmbTitle])
'Me.TitleID = DLookup("[TitleID]", "[Title]", "[TitleID] = " & [Forms]![PBCCUpdateForm]![cmbTitle])
Nothing works. My boss, who is the YODA of DB programming is on vacation and I need help desperately.