Search found 54 matches: parl

Return to advanced search

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

Puedes explicarnos como lo has solucionado ? gracias Agrege a mi prg este porcion #pragma BEGINDUMP #include <hbapi.h> #undef hb_retclen_buffer #undef hb_parldef void hb_retclen_buffer( char * szText, int nLen ) { hb_retclen( szText, nLen ); } int hb_parldef( int iParam, int iDefValue ) { ret...
by CARLOS ATUNCAR
Fri Jan 26, 2024 11:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)
Replies: 5
Views: 278

Re: Funciones C en Harbour

Syntax void Animate_Open( hwnd, szName); Parameters hwnd Type: HWND A handle to the animation control. szName Type: LPTSTR A pointer to a buffer that contains the path of the AVI file or the name of an AVI resource. Alternatively, this parameter can consist of the AVI resource identifier in the LOW...
by carlos vargas
Mon Feb 08, 2021 9:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones C en Harbour
Replies: 19
Views: 1645

problemas al linkear

Hola. usando harbour y Fwh la ultima. Me arroja estos errores: [1]:iLink32.Exe -Gn -q -aa -Tpe -x @testMaria.bcl Error: Unresolved external 'WinMain' referenced from X:\HARB\BCC7\LIB\C0W32.OBJ Error: Unresolved external '_hb_vmProcessSymbols' referenced from X:\PROYECTOS\TEST\MARIA\OBJ\MARIA.OBJ Err...
by goosfancito
Thu Feb 04, 2021 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas al linkear
Replies: 6
Views: 441

Warning W8065

hi all How fix this error :Warning W8065 ..\source\function\TSBFUNCS.C 73: Call to function 'ISLOG' with no prototype in function HB_FUN_TSDRAWCELL #ifndef __HARBOUR__ CLIPPER TSDrawCell( PARAMS ) // ( hWnd, hDC, nRow, nColumn , nWidth , // uData, nAlign , nClrFore, nClrBack , // hFont, nBitmap, nHe...
by mauri.menabue
Sun Jun 22, 2014 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Warning W8065
Replies: 7
Views: 937

Re: Hide / Show Image-scrollbars ( like xBrowse ) ?

pgfdz , Thank You very much for the info, but the defined scrollbars from resource are still visible : ( Image defined from function ) REDEFINE IMAGE oIMAGE ID 510 FILENAME NIL OF oDlg PIXEL BORDER //SB_HORZ 0 //SB_VERT 1 //SB_CTL 2 //SB_BOTH 3 ShowScrollBar( oIMAGE:hWnd, 3 , .F. ) #pragma BEGINDUMP...
by ukoenig
Tue Feb 12, 2013 4:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide / Show Image-scrollbars ( like in xBrowse ) ?
Replies: 4
Views: 1078

Problemas al crear la libreria TWBROWSE

Estoy intentado crear la libreria TWBROWSE con Harbour 2.0 y FWH 1104 y me dan los siguientes errores: si alguien pudiera ayudarme.... Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland .\source\function\twbrowse\WBRWLINE.C: Error E2356 .\source\function\twbrowse\WBRWLINE.C 38: Type mismat...
by ander7319
Fri Jan 04, 2013 9:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas al crear la libreria TWBROWSE
Replies: 6
Views: 2855

Re: xBrowse lVScroll .F.

Hola http://msdn.microsoft.com/en-us/library/windows/desktop/bb787601(v=vs.85).aspx Un saludo #pragma BEGINDUMP #include "windows.h" #include "hbapi.h" HB_FUNC( SHOWSCROLLBAR ) { hb_retl( ShowScrollBar( (HWND) hb_parnl( 1 ), hb_parni( 2 ), hb_parl( 3 ) ) ); } ...
by pgfdz
Thu Aug 23, 2012 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse lVScroll .F. Francisco SOLUCIONADO
Replies: 9
Views: 1600

Re: Creation of xHarbour PCODE DLL succeeded

Hi Antonio, I tried but it seems hb_parl(-1) doesn't return a logic value or anyway the value is not TRUE. The external application that call babudll recognize TRUE only if I use "return TRUE" instead of "returnhb_parl(-1)" into ExecAll. This is a semplified self-contained sample...
by Marco Turco
Sat Nov 19, 2011 8:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation of xHarbour PCODE DLL succeeded
Replies: 25
Views: 10182

Re: Creation of xHarbour PCODE DLL succeeded

Marco,

hb_parl( -1 ) is retrieving the logical value returned by CheckPassword() :-)
by Antonio Linares
Fri Nov 18, 2011 7:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation of xHarbour PCODE DLL succeeded
Replies: 25
Views: 10182

Re: Creation of xHarbour PCODE DLL succeeded

Hi,
the checkpassword function is correctly called. Thank you.
The only problem is that instead of return hb_parl( -1 ) ExecuteAll should return the logic value from checkpassword. Do you think it could be possible ?
Thanks in advance.
by Marco Turco
Fri Nov 18, 2011 11:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creation of xHarbour PCODE DLL succeeded
Replies: 25
Views: 10182

Re: Compiling TSButton with MinGW gcc

Rimantas, seems that nobody else is interested in TsBrowse/TsButton and MinGW... And Manuel disappears from time to time... But after studying the C code I managed to compile the TsBrowse C code. So, lets try to do this. First in bpaint.c change all references of _parclen, _parl, _parni, _parnl, etc...
by concentra
Wed Nov 09, 2011 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2958

Re: Compiling TSButton with MinGW gcc

Hi, Need help with TsButtons & MinGW . Creating of library - succesfull , but trying to build application with tsbutton library I'm getting errors . Sbuh3m.a here Tsbutton lib for MinGw hbmk2: Linking... Ts.exe ffmpeg/lib/Sbuh3m.a(bpaint.o):bpaint.c:(.text+0x9040): multiple definition of `HB_FUN...
by Rimantas
Wed Nov 09, 2011 6:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiling TSButton with MinGW gcc
Replies: 12
Views: 2958

illegal types 'unsigned char *'

when I create clpwks.lib I got error Type: C >>>xcc.exe -Fo"BITS.obj" -Ot -I"r:\include" -I"R:\include" -I"R:\c_include" -I"R:\c_include\win" -I"R:\c_include\msvc" "BITS.C"<<< BITS.C(27): error: Operands of = hav...
by kajot
Sun Oct 23, 2011 2:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: illegal types 'unsigned char *'
Replies: 0
Views: 514

Re: Prototype missing?

from the harbour doc, harbour vs xharbour ### C LEVEL COMPATIBILITY ### =================================== The main difference between Harbour and xHarbour in public C API is in value quantifiers. Harbour fully respect 'const' variable attribute and does not remove it from returned values. It helps...
by carlos vargas
Sun Oct 02, 2011 1:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Prototype missing?
Replies: 35
Views: 8030

Error al compilar TWBROWSE xHarbour build 1.2.1 y FWH 11.01

Que tal buenas tardes, he estado tratando de compilar la TWbrowse de Hernan sin exito, al intentar generar la libreria con el xedit me manda los siguientes errores: Compilando WBRWLINE.C... Error E2303 WBRWLINE.C 74: Type name expected Error E2141 WBRWLINE.C 98: Declaration syntax error Error E2303 ...
by alex_cyr
Sat Jul 09, 2011 2:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al compilar TWBROWSE xHarbour build 1.2.1 y FWH 11.01
Replies: 7
Views: 2631
Next

Return to advanced search