Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Starting App without seeing foxpro screen shrink.
Message
From
17/10/2000 03:33:06
 
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00428371
Message ID:
00430195
Views:
24
Thanks all.

But when I use SCREEN=OFF the program does not even start.

I could not find anything on the SCREEN=OFF in the help..
I was looking for something like:
_SCREEN.OFF=.T.

So I can do it independent of the config.fpw.

A Second problem is I have two programs in the same folder.
One is now working fine as it is now...
And the second I would like to start without seeing the screen resize.

Lets for now consider the second program I want to start without seeing the resize...
The relevent code is:
	MODIFY WINDOW SCREEN ;
		AT  0.000, 0.000  ;
		SIZE 10.900,70.200 ;
		TITLE " "  NOMINIMIZE NOZOOM NOGROW;
		FONT "Arial",8
	
		**COLOR RGB(,,,192,192,192);

	_SCREEN.CAPTION="Print Controller"

	nwidth=SYSMETRIC(1)
	nHeigth=SYSMETRIC(2)
	IF nwidth=1024 AND nHeigth=768
	
		MOVE WINDOW SCREEN TO 39,134

	ENDIF

	IF nwidth=800 AND nHeigth=600
		MOVE WINDOW SCREEN TO 27,90
	ENDIF
	
	IF nwidth>1024
		MOVE WINDOW SCREEN TO 38,109
	ENDIF	
	
	DO FORM prtserv.scx
The form is modul and I tried with showwindow=1,2 and 3 with the same effect...
Starting the program with screen=off has absolutely no effect...A task is not even generated. Same with the other main program. (which has all in screen forms).

Any ideas?

The c
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform