- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI have a structure (str_doc) which contains a number of variables including a datawindow as shown below:
____________
integer retcode
string docname
... (other variables)...
datawindow areas
____________
I have a main window (w_win1) where this structure is set as an instance variable (istr_doc). On a button on this window then I open a response window and pass the structure to it as shown below:
____________
istr_doc.retcode = 0
istr_doc.doc_name = ""
...other variables set...
OpenWithParm(w_win2, istr_doc)
____________
On my response window (w_win2) I also have an instance of the structure (istr_doc_r). This gets set with the passed in values via the Message.PowerObjectParm.
There is also a datawindow (dw_areas) where the user selects a number of different areas which I want to pass back to the main window when the SAVE button is clicked.
So on my SAVE button clicked event I have the following code as shown below:
____________
istr_doc_r.retcode = 1
istr_doc_r.docname = ...value set by user...
...other variables set...
istr_doc_r.areas = dw_areas
Parent.TriggerEvent(close!
____________
The close event then closes the response window returns the structure as shown below:
____________
CloseWithReturn(this, istr_doc_r)
____________
Back in my main window (w_win1) I immediately update my structure (istr_doc) with the Message.PowerObjectParm to get the returned values and then proceed to do further work on those values before updating my records.
My problem is that when I attempt to access the datawindow which has been passed back via the structure (istr_doc.areas) I get an "Null object reference" error and a crash. I can access any other of the variables (e.g. istr_doc.retcode) being passed back through the structure with no difficulty.
I have checked in the response window (via a RowCount) and the datawindow in the structure is valid before I close the response window but somehow it is not valid when it has been passed back in the main window.
Am I missing something obvious here?
__________________________
PS - I know I could do a workaround for this problem using an nvo to pass the data between the windows but this application has a standard of using structures to pass values and I'd like to keep to that standard if possible.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: JamesDuffyPosted on 2009-09-08 at 07:08:24ID: 25282005
Closing this question as I have done some further investigation and realised why my problem was occurring.