Search found 1510 matches: replace

Return to advanced search

Re: Silvo .. changes to your xMate environment

... Warning W0032  Variable 'NCOL' is assigned but not used in function 'BMPTILED(122)' The sample should be corrected. Replace this: local nRow := 0, nCol := 0, n with: local nRow := 0, nCol And you shold not have any warnings. Fixing the warnings is very important as ...
by Enrico Maria Giordano
Tue Apr 30, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Silvo .. changes to your xMate environment
Replies: 26
Views: 334

DBCOMMIT() EN DBF - SQL AUTOMATICO ?

Buena tarde. Requiero para proceso de migracion de DBF´S a SQL NATIVO con fivewin - mariadb, interceptar el replace al momento del ALIAS->( dbcommit() ), para poder hacer la actualizacion con sql , sobre la base de datos SQL La idea es trabajar con tablas DBF de manera temporal ...
by russimicro
Sun Apr 28, 2024 11:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DBCOMMIT() EN DBF - SQL AUTOMATICO ?
Replies: 4
Views: 196

Re: compile errors

This is the error: #include "C:\Harbour\Include\hbcurl.ch" Please replace it with #include "hbcurl.ch" Compiles fine here. And please use latest Harbour and xHarbour builds: https://github.com/FiveTechSoft/harbour_and_xharbour_builds ...
by Enrico Maria Giordano
Thu Apr 11, 2024 3:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: compile errors - send a SMS
Replies: 19
Views: 373

Re: FWErrorsys()

function ErrorDialog( e ) is static so you have to modify errsysw.prg to make it public or entirely replace FWH errsysw.prg with one of your own
by Antonio Linares
Wed Apr 03, 2024 9:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1845

Re: FWErrorsys()

FWH procedure FWErrorSys() is identical to FWH procedure ErrorSys() that it is automatically called by Harbour.

procedure ErrorSys() invokes function ErrorBlock() to replace the default application errorBlock:

ErrorBlock( { | e | ErrorDialog( e ) } )
by Antonio Linares
Wed Apr 03, 2024 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1845

AYUDA Validacion LRC para datafono

... End Function Private Function GetStringFromHex(ByVal s As String) As String Dim result As String = Nothing Dim s2 As String = s.Replace(" ", Nothing) For i As Integer = 0 To s2.Length - 1 Step 2 result += Convert.ToChar(Integer.Parse(s2.Substring(i, 2), System.Globalization.NumberStyles.HexNumber)) ...
by russimicro
Sat Mar 30, 2024 6:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Validacion LRC para datafono
Replies: 2
Views: 498

Re: Still a problem with FWH 24.02 and xHarbour Builder

Dear Antonio,

You are fantastic. I was using an old xfw.lib.

I remember that I once had to add it, but I didn't replace it by newer versions since I stored it in another folder.

Problem solved. Thank you so much.

Have a nice Sunday.
by driessen
Sun Mar 17, 2024 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Still a problem with FWH 24.02 and xHarbour Builder - SOLVED
Replies: 4
Views: 799

Re: New FWH 24.02

Or better, replace this

Code: Select all  Expand view
echo $(BCDIR)\lib\c0w32.obj + > b32.bc


with those:

Code: Select all  Expand view
echo -L%bcdir%\lib;%bcdir%\lib\psdk + > b32.bc
echo %bcdir%\lib\c0w32.obj + >> b32.bc
by Enrico Maria Giordano
Tue Mar 12, 2024 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.04
Replies: 37
Views: 7266

Re: Create a Panel width a text

... 50, aDim[ 2 ] + 50, 300 },,oFonttext, RGB(255,165,0), nARGB(255,rgb(248,248,248)  ) , .f. ) } i have replace PANEL using   MEMOTEXT := alltrim( cMsg )   @ oPanel2:nTitleHeight+5, 10  GET oPanelText VAR MEMOTEXT SIZE oPanel2:nWidth-2, oPanel2:nHeight-40 ...
by Jimmy
Thu Feb 22, 2024 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3227

Re: Fwh 23.10 TGet another problem (UNSOLVED)

We sent you FiveH.lib and FiveHC.lib. First please make a safe copy of your present FWH2310 folder Then replace these two libs in your fwh\lib folder with the libs we sent you now. Then, please test this program and provide your feedback. #include "fivewin.ch"REQUEST ...
by Horizon
Mon Feb 19, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 55019

Re: Fwh 23.10 TGet another problem (UNSOLVED)

We sent you FiveH.lib and FiveHC.lib. First please make a safe copy of your present FWH2310 folder Then replace these two libs in your fwh\lib folder with the libs we sent you now. Then, please test this program and provide your feedback. #include "fivewin.ch"REQUEST ...
by nageswaragunupudi
Mon Feb 19, 2024 6:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 55019

Re: RC to PRG generator

... select one and generate the code for it: simply rename your RC file as rctoprg.rc and build rctoprg.prg If you keep your dialogs inside a DLL then replace GetInstance() for LoadLibrary( "yourdll.dll" ) This example and the new C code listed at the bottom will be included in next FWH build. ...
by Antonio Linares
Tue Feb 13, 2024 11:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1235

Re: DateTime calculation

... in milliseconds:", unixTimestampMilliseconds  This code assumes myDate contains the Harbour date variable you want to convert. Please replace myDate with your actual date variable. The resulting unixTimestampMilliseconds will be in the format you can use in your URL. Make sure to adjust ...
by Antonio Linares
Sat Jan 27, 2024 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DateTime calculation
Replies: 6
Views: 706

Re: error oBrw:ToExcel

We get this error with some versions of Excel.

We need to modify xbrowse.prg
Please locate this line of code in the method ToExcel()
Code: Select all  Expand view
oWin:FreezePanes := .t.


Replace with:
Code: Select all  Expand view
  TRY
      oWin:FreezePanes := .t.
   CATCH
   END
by nageswaragunupudi
Wed Jan 10, 2024 2:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: error oBrw:ToExcel
Replies: 2
Views: 552

file ID in the Windows file system

... the fsutil command: 1. Open Command Prompt as Administrator. 2. Execute the command: ```cmd fsutil file queryfileid C:\path\to\your\file.txt ``` Replace `C:\path\to\your\file.txt` with the actual path to your file. This will return the File ID in a hexadecimal format. **Considerations:** - **Permissions**: ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 638
Next

Return to advanced search