PDA

View Full Version : Preview/Build Closes on a page click


lbflynn
11-10-2005, 02:21 PM
When I preview or build my project as soon as I click on the fifth page, the preview closes. The build does the same. I have no event to close selected and can see nothing wrong on the page in question. None of the pages indexed after that page will display either. Any ideas??

rhosk
11-10-2005, 02:27 PM
Well, you have something hiding in there somewhere. Can you post your project file and we can take a look?

lbflynn
11-15-2005, 08:39 AM
I'm trying to upload but it doesnt seem to be working

i even tried removing the effected pages and recreating them but I still get the same issue. The problem page is number 5, Move Ins.



Well, you have something hiding in there somewhere. Can you post your project file and we can take a look?

rhosk
11-15-2005, 08:57 AM
How large is this file? Make sure that you export as a APZ.

Put this in your Global Functions -

function QueryAllowProjectClose()
result = Dialog.Message("Exit Application?", "Are you sure you want to exit?", MB_YESNO, MB_ICONEXCLAMATION, MB_DEFBUTTON1);

--the no button was pressed
if result == 7 then
--cancel exit
return false;
else
--allow exit
return true;

end
end

If it's an Appication.Exit call, then this message should show up. If it's not, then you definitely have a crash issue and maybe should contact support.

Without knowing a single detail about your project, there's nothing we can do.

lbflynn
11-15-2005, 09:28 AM
Thanks Ron. It seems to happen even when i start a new project so it seems I may have a larger issue at hand. Will contact support. Appreciate your help!

rhosk
11-15-2005, 09:31 AM
You could always try a reinstall. In any event, the support folks will have you up and running again in no time. If able, let us know the outcome.