Advertisement

07.18.2003 at 05:39PM PDT, ID: 20683439
[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!

7.4

Getting EOutOfResource Error.

Asked by gulberg in Visual Basic Programming

Tags:

Hi,

We have our big application contains lots of forms.  I should tell a brief background of it.  We have created a user-interface in Delphi 5 for Cobol applications.  It is a single big DLL for GUI for our application.  This DLL is using Transoft ODBC to connect to the database, and besides an Acuconnect tool is being used to enable the cobol program to work with GUI interface.  I have built a process which has a loop to run some screens automatically by clicking appropriate buttons in the background while a form is stay on top tells the process progress.  During this process, usually delphi generates an error "System out of resources." (EOutofResources) when it tries to open a requested screen.  I have been reading here regarding this error, so I have tried some changes as well like not to autocreate forms, and also I think I release/free forms properly when they need to be closed.  Anyway, during this error, I got another error like "Too many open files.".  We are not using lots of bitmaps and graphic files.  I have tried to reduce number of unnecessary controls from the form, but it did not help.  Please anybody could give suggestions to resolve this issue.  I tried replacing Free/Release method but it did not solve.

Following is a piece of code if it could help you to understand.  This code is trying to open a screen (CurrentForm) which user requested.  There is a parent Main form which is inherited by child screens, so every child screen has the standard built-in controls which are on the main form.

//Main Form close event which is inherited by every child form..
procedure TFORMFSI.FormClose(Sender: TObject; var Action: TCloseAction);
begin
  Action := caFree;
end;
//------

//----Following Routine is defined in the application (project) which calls requested (child) screen which inherits the main form.
 if CurrentForm <> nil then
   begin
         CurrentForm.Show;

        if (PrvScreen <> nil) then //Last Screen which needs to be closed.
        begin
           PrvScreen.Close;
           PrvScreen.Free;
           PrvScreen:= nil;
        end;

        repeat
            sleep(1);
            Application.ProcessMessages;
        until TFormFSI(CurrentForm).Closed;


Thanks.
Gulberg

Start Free Trial
[+][-]07.19.2003 at 07:42AM PDT, ID: 8958264

View this solution now by starting your 7-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: Visual Basic Programming
Tags: eoutofresource
Sign Up Now!
Solution Provided By: Paladin_VB
Participating Experts: 2
Solution Grade: B
 
 
[+][-]11.28.2003 at 06:17AM PST, ID: 9837776

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.12.2003 at 01:00PM PST, ID: 9930919

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42