by nolgiati » Thu Jul 05, 2007 4:05 pm
Antonio no se que estoy haciendo mal porque sigue tirando el mismo error, esta es la manera en que agregue la funcion en mi main():
***************************************************
#include "FWCE.ch"
REQUEST HB_LANG_ESWIN
// DEFINICION DE COLORES /////////////////////////////////////////////////////////////
#Define Negro 0
#Define Azul 8388608
#Define AzulB 16711680
#Define Verde 32768
#Define VerdeB 65280
#Define Celeste 8421376
#Define CelesteB 16776960
#Define Rojo 128
#Define RojoB 255
#Define Magenta 8388736
#Define MagentaB 16711935
#Define Marron 32896
#Define Gris 8421504
#Define GrisB 12632256
#Define Amarillo 65535
#Define Blanco 16777215
//
STATIC oWnd
// FUNCION MAIN /////////////////////////////////////////////////////////////////////
Function Main()
Local oBmp,oCursor1,oBar,cTexto,oDbf
Local Datos:="\\PIII\C\WPSDatos\"
LandScape()
HB_LANGSELECT("ESWIN")
SET DELETED ON
SET DATE TO FREN
*SET SOFTSEEK ON
SET CENTURY ON
SET EPOCH TO 2000
*SET DEFAULT TO &Datos
AnsiToOem(cTexto)
USE (Datos+"STOCK.DBF") VIA "DBFNTX" NEW
DATABASE oDbf
Stock->(DbGoTop())
DEFINE BITMAP oBmp NAME 'Five'
DEFINE WINDOW oWnd TITLE "Inventario"
ACTIVATE WINDOW oWnd ;
ON PAINT oWnd:SayBitmap(60,10,oBmp);
ON INIT Control()
Portrait()
DBCLOSEALL()
oBmp:End()
Return Nil
//
// FUNCION ANSI //
Function AnsiToOem(cTexto)
Return cTexto
//
Gracias de nuevo.