Tagged Questions
The openargs tag has no wiki summary.
4
votes
5answers
3k views
OpenArgs is Null error
I am using the OpenArgs parameter to send a value when using DoCmd.OpenForm:
DoCmd.OpenForm "frmSetOther", acNormal, , , acFormAdd, acDialog, "value"
I then use Me.OpenArgs inside the opened form ...
1
vote
3answers
354 views
MS Access: How to pass OpenArgs into a Subform?
EDIT: nevermind I just created a new form, it looks worse but it's much easier
I have a form of orders and there are buttons and a subform on it.
The form has a customer name that is given in the ...
1
vote
1answer
429 views
MS Access - opening a form with a new record and inserting a value from a previous form
I have a form in an MS Access database which lists Orders with an Order Number with one order per page. At the bottom of the form there is a button which opens another form, to add an item for the ...
1
vote
2answers
494 views
MS Access - Open Argument between sub forms? can I pass a value? do I need to?
So I have a sub form that creates a record (and record it), and then another sub form opens up for data entry...however can I still use an open arg to pass the value (ProjectID) between these sub ...
1
vote
3answers
109 views
OpenArgs Problem in Access
I have a code like this:
Dim strResponses As String
strResponses = Forms!frmResponses.QstnID.OpenArgs
If Len(strResponses) > 0 Then
Me![QstnID].DefaultValue = Me.OpenArgs
End If
When I ...
0
votes
1answer
663 views
MS Access 2007 - OpenArgs not passing the value to next form?
So I pass the ID value from one form to the next using
Docmd.OpenForm "SecondForm",,,,,, MainID
Docmd.Close AcForm, "FirstForm", acSaveYes
and then I check the value on the Second Form's load ...