FoxPro/Visual FoxPro - Ejecutable

 
Vista:

Ejecutable

Publicado por Elsa (8 intervenciones) el 02/09/2002 19:00:01
Hola...
¿Como hago un ejecutable donde no aparezca la ventana de fox pro?
me urge, por favor, si pueden mandenme todos los pasos y el codigo que va en el programa inicio.... (no hice menús)

Gracias....
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Ejecutable

Publicado por eric (254 intervenciones) el 02/09/2002 21:21:17
Hola, cuando tu creas tu formulario principal o tu PRG, que funciona como principal, al ejecutarlo solo debe de aparecer el formulario al que llamas, nunca deberia de aparcer la ventana de VFP.
Porque no me mandas tu codigo de inicio, y te ayudo a encontrar el error.
Suerte
E.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Ejecutable

Publicado por Rolando (325 intervenciones) el 03/09/2002 00:30:55
Hola
Ahi te envio un prg completo. Cualquier duda me avisas, ok?

* Quitamos cualquier mensaje a pantalla
SET SYSMENU off
Set Sysmenu to
SET STATUS BAR ON
SET CENTURY ON
_Screen. Windowstate = 2
SET TALK OFF
SET PATH TO HOME()+ "Tablas",;
HOME() + "Forms",;
HOME() + "Prgs",;
HOME() + "Menues"


WITH _Screen
.Caption ="Sistema de Depuracion de Archivos"
.BackColor = RGB(255,255,255)
.Closable = .T. && Maximized
.MaxButton = .F. && Maximized
.WindowState = 2 && Maximized
.AddObject ( "Title1", "Title" )
.AddObject ( "Title2", "Title" )
.Title2.Top = .Title2.Top - 4
.Title2.Left = .Title2.Left - 4
.Title2.ForeColor = RGB ( 255, 0, 0 )
ENDWITH

Do Menu.mpr
DO FORM Principal
ON SHUTDOWN CLEAR EVENTS

READ EVENTS
*PARA DESACTIVAR MENSAJE ANTES DE CERRAR LA APLICACION

ON SHUTDOWN

CLEAR WINDOW
CLEAR ALL
CLOSE ALL

DEFINE CLASS Title AS LABEL
FontName= [Times New Roman]
FontSize= 28
Visible = .T.
Width = 800
Height = 125
Top = _Screen.Height - 530
Left = 20
Alignment = 2
Caption = [Depurar Archivos Logs]
ForeColor=RGB ( 192,192,192 )
BackStyle= 0 && Transparent
ENDDEFINE

Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar