Multiple Forms

  • Thread starter Thread starter Jeffry Montalvo
  • Start date Start date
J

Jeffry Montalvo

Hello Everyone,
I have a form that will have several forms in (12). I have them hidden and
then recall the form to be displayed on the screen with a command. My
problem is that I get the calculating execution on at all times. My screen
flickers and never stops because it keeps calculating within the form.
Is there a solution for this...?

Sincerely,
Jeff
 
You are probably using up all your memory because you are loading everything
at once. Either:

Get a lot more memory

or:

Redesign your forms to have smaller recordsets, and then load and unload
forms as you need them.
 
Dear Jeffry:

I'm no expert, but this reminds me of a problem I once had when I put a
command to requery my form in the form's OnCurrent event. This caused a
loop, and my controls flickered as they were constantly being requeried. Do
you have anything in any OnCurrent event(s) that might do the same thing?

Oh, and if you do a Google groups search with this search term:

Calculating.... Why this error?

you will find a thread in which a similar problem was described, and the
problem was related to mis-referenced controls - but go read that thread for
more info.

HTH
Fred Boer
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top