[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.4

"Null object reference" with a datawindow being passed in a structure

Asked by JamesDuffy in PowerBuilder Programming Language

Tags: PowerBuilder, datawindow, structure

I 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.
[+][-]09/08/09 07:08 AM, ID: 25282005Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: PowerBuilder Programming Language
Tags: PowerBuilder, datawindow, structure
Sign Up Now!
Solution Provided By: JamesDuffy
Participating Experts: 0
Solution Grade: A
 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625