Hi David,

what does you make believe, it's a memory problem.
How ist your system's memory usage and free disk space, when this error occurs ?

Axel.





"Knight, David (MED)" <[EMAIL PROTECTED]>@rational.com on 18.07.2001 19:19:52

Please respond to "Knight, David (MED)" <[EMAIL PROTECTED]>

Sent by:  [EMAIL PROTECTED]


To:     'Andr� VEGA' <[EMAIL PROTECTED]>
        "'Rose Forum'" <[EMAIL PROTECTED]>
cc:      (bcc: Axel Huch/HBG/MS/PHILIPS)
Subject:  RE: (ROSE) script termination - memory limitations
Classification:




The script crashes both when compiled and uncompiled.  From the menu it
gives me the error message I described below.  If I run it from the
"debugger" within rose, rose simply crashes and exits with no error
message.

I will try to print out the error message and hope that will clarify
what is going wrong.  Thanks for the code.

If I remove the theImage.Render fileName$ command from my program, I
don't experience any crashes.  I suppose this could still be a memory
problem though since the Render method is really just another
subroutine, correct?


David Knight
------------------
GE Medical Systems
Software Engineering Intern
(262) 521-6586
[EMAIL PROTECTED]




-----Original Message-----
From: Andr� VEGA [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 18, 2001 1:21 AM
To: Knight, David (MED)
Subject: Re: (ROSE) script termination - memory limitations




"Knight, David (MED)" a �crit :

> Thanks a lot for the information.  ...
>
> "Application Error: The instruction '0x77f64a3d' referenced memory at
> '0x0ce4c155.'  The memory could not be 'written.'"
>
> Although this may be the same error, I was wondering if you knew for
> sure that this memory is the stack.

Hello David,
I don't know if that adress is stack memory or global memory for sript
running.
Try to catch the error in your main program with an error handler and
then
print the error,
you'll be sure about the error description (if you don't know how to:)
( beginning your main:
    On Error GoTo ErrorForGeneration
 ..... you main code

... and then at the end
ErrorForGeneration:
 PrintLog("   Error during generation processing file " + filename$)
    MsgBox "   Error number      : " + Str(Err.Number), , "Code
Generation"
    MsgBox "   Error description : " + Err.Description, , "Code
Generation"
End Sub
)
Printing the error code and description will guide you to know what it
is
about.

If script runs fine with the uncompiled version you are hardly sure
there is
no bug,
and that the problem you run into is memory error for sure.

--
------------------------------------------------
Andr� VEGA
[EMAIL PROTECTED]
01.46.08.63.27
------------------------------------------------

************************************************************************
* Rose Forum is a public venue for ideas and discussions.
* For technical support, visit http://www.rational.com/support
*
* Admin.Subscription Requests: [EMAIL PROTECTED]
* Archive of messages: 
http://www.rational.com/products/rose/usergroups/rose_forum.jtmpl
* Other Requests: [EMAIL PROTECTED]
*
* To unsubscribe from the list, please send email
*
* To: [EMAIL PROTECTED]
* Subject:<BLANK>
* Body: unsubscribe rose_forum
*
*************************************************************************





************************************************************************
* Rose Forum is a public venue for ideas and discussions.
* For technical support, visit http://www.rational.com/support
*
* Admin.Subscription Requests: [EMAIL PROTECTED]
* Archive of messages: 
http://www.rational.com/products/rose/usergroups/rose_forum.jtmpl
* Other Requests: [EMAIL PROTECTED]
*
* To unsubscribe from the list, please send email
*
* To: [EMAIL PROTECTED]
* Subject:<BLANK>
* Body: unsubscribe rose_forum
*
*************************************************************************

Reply via email to