Search found 19 matches: hborland

Return to advanced search

Re: programa ejecutable EXE

... #define SRCPAINT 15597702 // 0xEE0086 // Para Mensajes #define SRCAND 8913094 STATIC oWndMain // Objeto Ventana principal STATIC hBorland // ----------------------------------------------------------------------- // Funci¢n ...: Main() // Descripci¢n: Funci¢n principal, que inicia ...
by edgar
Sat Nov 29, 2014 3:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: programa ejecutable EXE
Replies: 11
Views: 1706

Re: Modificando archivo RC

... que la DLL de Borland esté en uso. Una posible solución es que desde un EXE (construido a partir de un PRG) cargues la DLL de Borland: local hBorland := LoadLibrary( "BWCC32.dll" ) Y a continuación por ejemplo llamas a un MsgInfo( "Borland DLL disponible" ) y lo dejas ...
by Antonio Linares
Fri Jun 20, 2014 5:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Modificando archivo RC
Replies: 5
Views: 1568

Re: FWH HbSix DBF/NSX/SMT File Management

... #Include "hbsix.ch" FUNCTION Main( ) LOCAL hBorland LOCAL x, aDbf[0] LOCAL DBFPass := 'bogus' * FIELD P_NO SET CENT ON SET DATE TO BRITISH SET EPOCH TO 1980 SET DELETED ON REQUEST DBFNSX,DBFSMT ...
by RiazKhan
Mon Mar 05, 2012 11:00 am
 
Forum: Utilities / Utilidades
Topic: FWH HbSix DBF/NSX/SMT File Management
Replies: 6
Views: 3000

Re: Volviendo al tema CDO

... Function fEmail(cTo) // Recibe como parametro el correo electronico del cliente * local hBorland //:= LoadLibrary("SgemBW32.DLL") Local oDlg, oFont, oFont2, oFont3 Local oGet1, oGet2, oGet3, oGet4, oGet5 Local oBt1, oBt2, oBt3, ...
by Armando Picon
Fri Nov 04, 2011 2:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Volviendo al tema CDO
Replies: 19
Views: 6327

Re: Cannot create dialog box...

Thank you, Otto.

I had only "local hBorland := LoadLibrary( "BWCC32.dll" )" . I've added the other 2 lines as you suggested, but my problem remains.

My BWCC32.dll is version 2.4.0.2 dated 3 April 2002. Does that seem to you to be the correct verson?
Don
by DonDrew
Fri Aug 20, 2010 7:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cannot create dialog box...
Replies: 6
Views: 2661

Re: Cannot create dialog box...

Don, I see you use Borland controls.

BorCheck

Do you have

local hBorland := LoadLibrary( "BWCC32.dll" )
BWCCRegister(GetResources())
DLL32 FUNCTION BWCCRegister( hInst AS LONG ) AS WORD PASCAL LIB "BWCC32.DLL" ?

Best regards,
Otto
by Otto
Fri Aug 20, 2010 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cannot create dialog box...
Replies: 6
Views: 2661

Sobre Recursos Borland

... que operan con multiples recursos borland a 32bits... tomando en cuenta algunas consideraciones: 1. En el programa principal #ifdef __CLIPPER__ hBorland:=LoadLibrary("BWCC.DLL") RUTAR:=oRt:DLLPTH+"GESM0100.DLL" SET RESOURCES TO "&RUTAR." #else hBorland := LoadLibrary("BWCC32.DLL") ...
by mlayns
Tue Oct 20, 2009 5:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Sobre Recursos Borland
Replies: 1
Views: 590

COMPILAR CON XHARBOUR

... agregue las lineas al final del primer PRG DLL32 FUNCTION BWCCRegister( hInst AS LONG ) AS WORD PASCAL LIB "BWCC32.DLL" al incio local hBorland := LoadLibrary( "BWCC32.DLL" ) BWCCRegister( GetResources() ) y sucede lo mismo, no puede mostrarme los dialogos no uso SET RESOURCES ...
by LuisPonce
Sun Oct 11, 2009 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMPILAR CON XHARBOUR
Replies: 11
Views: 3446

Re: fwh\samples\RE.prg - FiveWin Resources Editor underrated

...    DS_3DLOOK } } //----------------------------------------------------------------------------// function Main()    local oBar, oMenuNew    local hBorland := LoadLibrary( "BWCC32.dll" )    BWCCRegister( GetResources() )    DEFINE WINDOW oWnd FROM 3, 6 TO 20, 70 ;       TITLE FWVERSION ...
by Otto
Sun Aug 30, 2009 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh\samples\RE.prg - FiveWin Resources Editor underrated
Replies: 38
Views: 11546

... principal algo asi como esto : #include "FiveWin.ch" #include "Folder.ch" #include "Report.Ch" #include "SSay.ch" #Include "Ord.Ch" STATIC oWnd,hBorland,oMenu,oCursorMano STATIC cVersion:="Ventas Ver. 7.0" STATIC cMiCia :="" STATIC cMiRuc :="" STATIC cMiDir :="" STATIC cMiDi2 :="" STATIC cMiDi3 ...
by LuisPonce
Sat Sep 27, 2008 1:12 am
 
Forum: FiveWin para CA-Clipper
Topic: ARCHIVOS .MEM
Replies: 5
Views: 2628

Fivewin Classes

... % 92 The same occurs when I try to load the program thought the network. What can be wrong? Try adding the following to your startup code: hBorland := LoadLibrary( "BWCC.DLL" ) and then: FreeLibrary( hBorland ) in your exit code. Someone in this NG has figured out how to run controls from ...
by Antonio Linares
Wed Aug 27, 2008 7:44 am
 
Forum: Utilities / Utilidades
Topic: Boris Pekic - NG's archive
Replies: 27
Views: 64706

... 2.4 --que en mi caso fue el referente--, se hizo imperativo: 1) Cargar la libreria para manejar el BWCC32.DLL, al inicio del programa de entrada: hBorland := LoadLibrary("BWCCDLL.32"); 2) Luego las llamadas normales a los menu y etc., etc. y; 3) Finalmente liberar el manejador: FreeLibrary("BWCC32.DLL") ...
by Armando Picon
Fri Aug 22, 2008 8:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio...Codigo que no funciona
Replies: 6
Views: 1572

... 0 a 255 // se vuelca en el puerto LPTn en su forma binaria. // // Giancarlo J. Sabattino S. // gsabattino@cantv.net // Valencia - Venezuela ////hBorland :=LoadLibrary( "BWCC32.DLL" ),; // Load Borlands Custom Control DLL // ******************************************************************* ...
by daniel_halon
Thu May 22, 2008 1:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Conectar/Desconectar via FW
Replies: 5
Views: 2046

Si utilizas recursos, a lo mejor te falta el SET ROSURSES TO, o simplemente el FreeLibrary( hBorland ) del final.
Un saludo
by antolin
Wed Apr 16, 2008 8:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: PASA ALGO MUY RARO AL CERRAR MI PROGRAMA(RESUELTO)
Replies: 14
Views: 2869

Antonio,

The value, shown by MsgInfo(hBorland), is 13762560.

Michel
by driessen
Mon Feb 12, 2007 11:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error "Cannot create dialog box" after migrating t
Replies: 12
Views: 4708
Next

Return to advanced search