Hi,
just PB Win 9 in relesead, I have updated it, but I have found now some problems: problems of focus and more. I have reistalled PB Win 8
and everything worked.
Today I have installed PB Win 9.01. The focus problems disappeared, but I have another problem, generating a system error with some simple command, that before worked very well:
before when this SUB end, the program continuated the flow without problems. Now, the same command give me system error. I change it with:
and so don't give me any error.
But when the program finish, or call another program, the sistem error returns.
I have tried all, but the problem not resolved.
the command that calls the SUB is:
Can you help me?
Otherwise I reinstalling PB Win 8 that worked well.
just PB Win 9 in relesead, I have updated it, but I have found now some problems: problems of focus and more. I have reistalled PB Win 8
and everything worked.
Today I have installed PB Win 9.01. The focus problems disappeared, but I have another problem, generating a system error with some simple command, that before worked very well:
Code:
SUB Config() SHELL"NOTEPAD2.EXE W_PMENU.CWC" END SUB
before when this SUB end, the program continuated the flow without problems. Now, the same command give me system error. I change it with:
Code:
SUB Config() SHELL"NOTEPAD2.EXE W_PMENU.CWC" SHELL"PAY.EXE" END SUB
and so don't give me any error.
But when the program finish, or call another program, the sistem error returns.
I have tried all, but the problem not resolved.
the command that calls the SUB is:
Code:
CONTROL ADD BUTTON, hDlg2, %IDC_BUTTON3, "Configura schermo" , 5, 210, 70, 15 CALL Config
Otherwise I reinstalling PB Win 8 that worked well.
Comment