Search found 57 matches

by alerchster
Wed Nov 27, 2024 4:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Tscintilla save a file
Replies: 2
Views: 520

Re: Tscintilla save a file

Code: Select all | Expand

function Salva_File(oMemo)
   local  cFile := cGetFile32( , FWString("Save as"), 0, ;
                          hb_CurDrive() + ":\" + CurDir(), .T., .T. )
   MemoWrit(cFile, oMemo:cTitle )
 
return nil
by alerchster
Tue Nov 26, 2024 6:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Happy birthday dear Antonio
Replies: 11
Views: 1598

Re: Happy birthday dear Antonio

Happy Birthday and many returns with health and many visions for future!
by alerchster
Mon Nov 18, 2024 3:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xImage doubt
Replies: 17
Views: 3987

Re: xImage doubt

in front of your rc-file

Code: Select all | Expand

#include "..\include\WinApi.ch"
by alerchster
Mon Nov 11, 2024 7:33 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Resuelto : hbmk2 no encuentra el archivo C0W32.OBJ
Replies: 3
Views: 620

Re: hbmk2 no encuentra el archivo C0W32.OBJ

Esta línea en archivo.bat es incorrecta
set HB_USER_LDFLAGS=-L%bcc%\LIB;%bcc%\LIB\psdk
cambiar a
set HB_USER_LDFLAGS=-L%bcc%\LIB\WIN32;%bcc%\LIB\WIN32\psdk

ilink32.cfg ?
-L"d:\bcc770\bcc\lib\win32";"d:\bcc770\bcc\lib\win32\psdk"
cambiar a
-L"d:\bcc770\lib\win32";"d:\bcc770\lib\win32\psdk"

bcc32 ...
by alerchster
Thu Oct 31, 2024 3:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RDS (Remote Desktop) and FW programming
Replies: 10
Views: 1124

Re: RDS (Remote Desktop) and FW programming

Marc Venken wrote:The search does not find that link of you post
Marc, you must search for +rdp +manager
by alerchster
Wed Oct 16, 2024 7:27 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
Replies: 29
Views: 2932

Re: Ayuda compilar 64 bits con FivEdit y BCC7764

Enrico's solution, very good old dos time; Thanks;
a small correction otherwise the exe is called c0w64

Code: Select all | Expand

%BCC%\bin\ilink64 -j%HRB%\lib %1 c0w64 %lst%, , , %FWH%\lib\five64 %FWH%\lib\fivec64 @%HRB%\hrb.rsp %LIB%
by alerchster
Wed Oct 16, 2024 6:42 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
Replies: 29
Views: 2932

Re: Ayuda compilar 64 bits con FivEdit y BCC7764

Enrico's solution is a very good alternative to hbmk2 from (x)harbour, make from Borland and the batch files from FW.

Now the only question that remains is how to compile multiple prg files in one project.
by alerchster
Wed Oct 16, 2024 3:21 am
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
Replies: 29
Views: 2932

Re: Ayuda compilar 64 bits con FivEdit y BCC7764

see my hpb.file

Code: Select all | Expand

# Source File
test.prg 

-optim-
-ldflag+=-aa

-workdir=
#-inc

# include path FWH64
-Ic:\fwh64_72024\include 

# lib path FWH64
-Lc:\fwh64_72024\lib     

# FWH64 libs
-lfive64
-lfivec64

hbct.hbc
xhb.hbc
hbziparc.hbc

# run after create
-run
by alerchster
Mon Oct 14, 2024 2:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Spinner Get
Replies: 7
Views: 589

Re: Spinner Get

@ nRow,nCol+150 GET aGet[4] VAR nPuntataIniziale SIZE 90,20 PIXEL OF oDlg FONT oFont SPINNER ON UP 0.50;
ON DOWN 0.50 MIN 0,50 MAX 200 RIGHTTOLEFT


@ nRow,nCol+150 GET aGet[4] VAR nPuntataIniziale SIZE 90,20 PIXEL OF oDlg FONT oFont SPINNER MIN 0.50 MAX 200 ;
ON UP GetStep( cGet, 0.50 ) ;
ON ...
by alerchster
Sat Sep 28, 2024 9:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: imagelist on tree
Replies: 15
Views: 2724

Re: imagelist on tree

There must be an existing directory instead of c:\fwh1905\*

Code: Select all | Expand

LOCAL cPath := "c:\FWH1905\*", oItem
by alerchster
Sun Sep 22, 2024 11:12 am
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar con hmbk2 es complicado, pero...
Replies: 89
Views: 13543

Re: Compilar con hmbk2 es complicado, pero...

Buenos dias

go64.bat @setlocal
set bcc=borland\bcc77064
set path=c:\%bcc%\bin;%path%
set HB_USER_CFLAGS=-Ic:\%bcc%\INCLUDE\windows\crtl -Ic:\%bcc%\INCLUDE\windows\sdk -Lc:\%bcc%\LIB
set HB_USER_LDFLAGS=-Lc:\%bcc%\LIB;c:\%bcc%\LIB\psdk
C:\harbour_bcc770_64_20240531\bin\hbmk2.exe test.hbp -comp=bcc64 ...
by alerchster
Sat Sep 21, 2024 12:52 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Longitud de una cadena de texto
Replies: 4
Views: 485

Re: Longitud de una cadena de texto

len(string) ?