I have an application with 37 forms. this application runs fine on the Tunsgen C. When I try to move it to the TX device, it 1) runs slower, about 30% slower. 2) It seems to fail on almost every form transition or when the the application exits.

When I run the application on the simulator, it does not fail. when I try to debug the device, I'm finding it almost impossible to find where to put break points or alerts.

Does anyone have any ideas on how to debug the TX device, some tricks and or suggestions.

Here's what the exit code looks like.

static void AppStop(void)
{
        StarterPreferenceType prefs;

        PrefSetAppPreferences (appFileCreator,
                              appPrefID, appPrefVersionNum,
                             &prefs, sizeof (prefs), true);

        if(SCANNER)
        {
                int     scanErr;
                scanErr = ScanCloseDecoder();
        }

        mySocket.CloseLib();

        if(MSR && SYMBOL_HHD)
        {
                error = MsrClose(GMsrMgrLibRefNum);
                error = SysLibRemove(GMsrMgrLibRefNum);
                if(error) AlertMessage(InformationAlert, "MSR Problems LIB", " ", 
"");
        }

        FreeFieldMemory();

        FrmDeleteForm(FrmGetActiveForm());

        // Send a frmSave event to all the open forms.
        FrmSaveAllForms ();

        // Close all the open forms.
        FrmCloseAllForms ();

        DmCloseDatabase (MyAppDB);
}


Thanks for the help...

Luis

_________________________________________________________________
Play Flexicon: the crossword game that feeds your brain. PLAY now for FREE.  http://zone.msn.com/en/flexicon/default.htm?icid=flexicon_hmtagline


--
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to