Life is limited. But memories are infinite.
Condolence to his family.
Search found 99 matches
- Mon May 05, 2025 3:12 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Mr. Rao passed away @8.30 pm on 4/May/2025
- Replies: 45
- Views: 1834
- Wed Mar 26, 2025 2:56 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using a webview from an existing window
- Replies: 14
- Views: 7669
Re: Using a webview from an existing window
#include "FiveWin.ch"
function Main()
local oWnd, oWebView
DEFINE WINDOW oWnd TITLE "Dashboard"
oWebView = TWebView2():New( oWnd )
oWebView:SetHtml( dash() )
ACTIVATE WINDOW oWnd MAXIMIZED ;
ON RESIZE oWebView:SetSize( nWidth, nHeight )
return nil
function dash()
local cHtml
TEXT ...
function Main()
local oWnd, oWebView
DEFINE WINDOW oWnd TITLE "Dashboard"
oWebView = TWebView2():New( oWnd )
oWebView:SetHtml( dash() )
ACTIVATE WINDOW oWnd MAXIMIZED ;
ON RESIZE oWebView:SetSize( nWidth, nHeight )
return nil
function dash()
local cHtml
TEXT ...
- Tue Feb 11, 2025 5:02 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: curl en harbour 64 bits ultima version
- Replies: 7
- Views: 1431
Re: curl en harbour 64 bits ultima version
?
-n-
-ldflag=/NODEFAULTLIB:libucrt
-ldflag+=/NODEFAULTLIB:msvcrt
-n-
-ldflag=/NODEFAULTLIB:libucrt
-ldflag+=/NODEFAULTLIB:msvcrt
- Sat Feb 08, 2025 5:49 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: substr() SOLUCIONADO
- Replies: 9
- Views: 17648
Re: substr()
Estimado,
Quizas, asi?
n1:= HB_AT(" ",cstrings , 65, 75 )
deta[2]:= substr(cstrings , n1+1, 160-n1)
saludos
Quizas, asi?
n1:= HB_AT(" ",cstrings , 65, 75 )
deta[2]:= substr(cstrings , n1+1, 160-n1)
saludos
- Wed Nov 27, 2024 4:08 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Tscintilla save a file
- Replies: 2
- Views: 1010
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
- Tue Nov 26, 2024 6:12 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy birthday dear Antonio
- Replies: 11
- Views: 3186
Re: Happy birthday dear Antonio
Happy Birthday and many returns with health and many visions for future!
- Mon Nov 18, 2024 3:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: xImage doubt
- Replies: 17
- Views: 6345
Re: xImage doubt
in front of your rc-file
Code: Select all | Expand
#include "..\include\WinApi.ch"
- Mon Nov 11, 2024 7:33 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Resuelto : hbmk2 no encuentra el archivo C0W32.OBJ
- Replies: 3
- Views: 1166
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 ...
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 ...
- Fri Nov 01, 2024 5:17 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: SetWindowTheme error
- Replies: 2
- Views: 653
- Thu Oct 31, 2024 3:09 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: RDS (Remote Desktop) and FW programming
- Replies: 10
- Views: 2791
Re: RDS (Remote Desktop) and FW programming
Marc, you must search for +rdp +managerMarc Venken wrote:The search does not find that link of you post
- Wed Oct 16, 2024 7:34 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
- Replies: 29
- Views: 6702
- Wed Oct 16, 2024 7:27 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
- Replies: 29
- Views: 6702
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
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%
- Wed Oct 16, 2024 6:42 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
- Replies: 29
- Views: 6702
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.
Now the only question that remains is how to compile multiple prg files in one project.
- Wed Oct 16, 2024 3:21 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
- Replies: 29
- Views: 6702
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
- Tue Oct 15, 2024 7:11 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ayuda compilar 64 bits con FivEdit y BCC7764
- Replies: 29
- Views: 6702