The Access 2003 crashes

uhadey

New member
Local time
Today, 08:26
Joined
Jul 21, 2011
Messages
7
Hi, experts.
I am using Access 2003 on XP Home SP3.
I have a MainForm with a TabControl on it with 3 pages. Pages No'2 and No'3 each have their own Subform (let's call them sbfParent1 and sbfParent2). Each sbfParent has its own TabCtl with a sbfChild (1 and 2) on each page. Each sbfChild (we have 4 of them, right?) have a procedure which updates relevant field in MainForm's underlying recordset through a relevant bound textbox in MainForm. Everything is fine until I add and save new record on sbfChild1 and then click on another page of MainForm.TabControl to see a sbfParent2 and its kids. Even before the MainForm.TabControl's OnChange event fires, the entire Access crashes with nice apologies and suggestion to send a report to Microsoft. I decline and try to catch the bug, but so far without success. Could anybody tell me what may be wrong and where to look? Many thanks.
 
May not be relevant but try to open the file using the /decompile switch then use Alt/F11 to open the VBA editor and recompile. I have to do this to mine every now and then when I'm working heavily in developing.

The batch file I created and placed on my desktop does all the work for me.

Here is the code for the batch file:

Code:
"C:\Program Files\Microsoft Office\Office14\msaccess.EXE" /decompile "Path to your Access data file goes here.accdb"
 

Users who are viewing this thread

Back
Top Bottom