Tagged Questions
The openform 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
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
1answer
528 views
WPF version of Application.OpenForms
I have an application in which I will have to get at another WPF window which is open. In WinForms, I was able to use:
MainWindow main = (MainWindow)Application.OpenForms["MainWindow"];
To be able ...
0
votes
1answer
65 views
why it is not throwing “Collection was modified; enumeration operation may not execute” exception
I have a logout menu option in my MDI application. On log out I want to close all open forms. currently i am using following code snippet to achieve this;
For Each f As Form In ...
0
votes
1answer
70 views
MS Access 2007 OpenForm method, can't get the where clause to produce the correct result
I can not get the OpenForm method to open a form with the correct record loaded. I'm going to do my best here to provide the details:
The 'source' form is based off Table A, and it is read-only. A ...