chart object crashes form

DevTycoon

Registered User.
Local time
Today, 13:36
Joined
Jun 14, 2014
Messages
94
Has anyone heard of forms crashing access when a chart object is present? When I create the form and set record source there is no problem. When I set that new form to visible It just hangs FOREVER after it sets form to visible.

Please share your general insight. I am at a loss at the moment finding new ways to trouble shoot.

Thanks for any help!
 
What do you mean by "When I set that new form to visible"?
Try by creating a new database and create the form with the chart object.
 
What do you mean by "When I set that new form to visible"?

VBA code is used to set form to visible, that is when access hangs...Access probably hangs for a million reasons. I just didn't know if someone has heard of something analogous to my problem.

Code:
dim oForm as form
set oForm = new FORM_myNewForm

...
...
...

oForm.visible = true

Try by creating a new database and create the form with the chart object.


I will try this and report back.
 
I thought it was a form already created, and not one you created using code, so I think we need to see the rest of the code.
 

Users who are viewing this thread

Back
Top Bottom