Search found 267 matches: params

Return to advanced search

Re: XAMPP through PortableApps.com or Server2Go

Charly,
can you tell me what to use with the build in mod harbour version for

TEMPLATE PARAMS
ENDTEXT

xCommand is not working for me.

Best regards,
Otto
by Otto
Fri Mar 01, 2024 11:42 pm
 
Forum: mod_harbour
Topic: XAMPP through PortableApps.com or Server2Go
Replies: 11
Views: 9283

Re: XAMPP through PortableApps.com or Server2Go

... But if I use mod harbour code I get: Error COMPILER/(1001) 30 Description Syntax error "syntax error at 'PARAMS'" Operation Line: 8 Best regards, Otto     function main()        local cHtml := ''      ...
by Otto
Thu Feb 29, 2024 7:27 pm
 
Forum: mod_harbour
Topic: XAMPP through PortableApps.com or Server2Go
Replies: 11
Views: 9283

Re: come recuperare il codice fivewin da .c file

... chatgpt: recover the original PRG code from this pcode: HB_FUNC( APRIDBCONPASSWORD ) { static const BYTE pcode[] = { HB_P_FRAME, 0, 2, /* locals, params */ /* 00003 */ HB_P_BASELINE, 138, 0, /* 138 */ HB_P_PUSHLOCALNEAR, 2, /* PASSWORD */ HB_P_PUSHNIL, HB_P_EXACTLYEQUAL, HB_P_JUMPFALSENEAR, 12, ...
by Antonio Linares
Mon Feb 12, 2024 9:55 pm
 
Forum: All products support
Topic: come recuperare il codice fivewin da .c file
Replies: 7
Views: 458

Problemas al migrar desde FWH2012 a FWH2307 - cerrado

... Define= [xMate] Create Map/List File=No [Project] Run=%HOME%\bin\Wc-Sire.Exe Params= Final Path=%HOME%\bin Maintain LNK=Yes Default Type=1 Error log= [Data Path] Dbf= [Editor] D:\MySql\WinContaPro\Sire\Wc-Sire\Source\menu.prg=1,N,N ...
by CARLOS ATUNCAR
Tue Sep 12, 2023 11:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas al migrar desde FWH2012 a FWH2307 - cerrado
Replies: 22
Views: 1677

New FTDN July/Julio (FWH 23.07)

... uVar, p1, p2, ... ) Now uVar can also be function name ending with "()". If the named function is linked, the function is executed with params p1,p2,... etc. XEval( {|c| Upper( c ) }, "abc" ) --> ABC XEval( "Upper()", c ) --> ABC If uVar is neither a codeblock ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1065

Re: ¿Pequeño error en Documentación de rowset en FWHMariadb?

nageswaragunupudi wrote:You are right
Possible params are:
RowSet( cSql, aParams, lReadOnly )
RowSet( cSql, aParams, nLimit, lReadOnly )
RowSet( cSql, nLimit, lReadOnly )
RowSet( cSql, lReadOnly )


Muchas gracias Mr. Rao.
by jose_murugosa
Thu Jul 20, 2023 12:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pequeña Corrección en Documentación de RowSet RESUELTO
Replies: 1
Views: 115

Re: Xbrowse, FastEdit y xBrw:Edit() tratando de entender...

You are right
Possible params are:
RowSet( cSql, aParams, lReadOnly )
RowSet( cSql, aParams, nLimit, lReadOnly )
RowSet( cSql, nLimit, lReadOnly )
RowSet( cSql, lReadOnly )
by nageswaragunupudi
Wed Jul 19, 2023 3:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, FastEdit y xBrw:Edit() RESUELTO
Replies: 7
Views: 320

Re: Color of rows in the cell

Simplification in the next version: 1) aDataFont and aClrText can also be codeblocks. These codeblocks are evaluated with two params, viz, the column object and lHiLite. The above code can be written like this: WITH OBJECT oBrw:aCols[ 2 ]   :aClrText   := { ...
by nageswaragunupudi
Sat Jan 28, 2023 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color of rows in the cell
Replies: 5
Views: 467

Re: DLLCALL under Fivewin

... 004C3ED2 00000008 005DE11E 00000000 008DAE70 00000020 0000000F 008DB1C4 00000002 00000000 00000011 C stack: EIP: EBP: Frame: OldEBP, RetAddr, Params... Modules: 00400000 005A0000 C:\fwh\0\LISTVIEW\DUALGRID.exe 77390000 0019F000 C:\WINDOWS\SYSTEM32\ntdll.dll 766F0000 0009B000 C:\WINDOWS\System32\KERNEL32.DLL ...
by Jimmy
Fri Dec 02, 2022 12:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2629

Re: Questions about WebView

Dear Yuri,

When you use this code:
viewtopic.php?p=255632&sid=1d500740664e0671278e8d3f3076d61a#p255632
you can call SendToFWH( params... ) from the web HTML javascript and your FWH app will get it on the oWebView:bOnBind codeblock
by Antonio Linares
Thu Nov 24, 2022 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Questions about WebView
Replies: 26
Views: 1614

New FTDN October/Octure (FWH 22.10)

... Fix: When browsing an array containing utf8 values in any cell was resulting in runtime error. Fixed. * DATA bBmpData is now evaluated with params, CellValue, lSelected, ColumnObject) * FW_ReadImage( <wmf_file> ) was giving runtime error, Fixed. * function ICON_READ( cFileName ) in ...
by Antonio Linares
Wed Nov 02, 2022 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 862

Re: bOr / nOr : how to "add" Constante under FiveWin

... to use "OR" ( a | b | c ...) // clang nOr( a, b, ... ) // FWH function NUMOR( a, b, .. ) // CT function HB_BITOR( a, b ) // xHarbour 2 params only HB_BITOR( a, b, c, ... ) // Harbour
by nageswaragunupudi
Mon Oct 17, 2022 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bOr / nOr : how to "add" Constante under FiveWin
Replies: 8
Views: 405

Re: IE

You have to supply 0, 0 to WebView_Create(). It does not work using params there

But you can make it child of any other window using SetParent( webview_get_window( hWebView ), hWndParent )
by Antonio Linares
Mon Jun 06, 2022 6:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1680

Re: W3Schools webpage template "COMPANY" to mod harbour

... declared globally (outside any function) have Global Scope. Static declaration in HARBOUR must be done before the main function. With TEMPLATE PARAMS you pass the variables to HTML/JS part *** hb_jsonenconde/hb_jsondecode Turns a Harbour HASH into a JS jsonobject and vice versa *** Please, ...
by Otto
Mon May 16, 2022 6:22 pm
 
Forum: mod_harbour
Topic: W3Schools webpage template "COMPANY" to mod harbour
Replies: 7
Views: 816

Re: xbrowse command not working properly -- MR. RAO

... 00000006 01277654 002929E1 00000000 00000000 00141C0D 000000AF 00000002 01258234 00000000 00000000 C stack: EIP: EBP: Frame: OldEBP, RetAddr, Params... Modules: 00090000 00479000 C:\clinica32\Clinica32.exe 77B80000 001A3000 C:\Windows\SYSTEM32\ntdll.dll 768D0000 000F0000 C:\Windows\System32\KERNEL32.DLL ...
by Compuin
Wed Feb 23, 2022 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse command not working properly -- MR. RAO
Replies: 21
Views: 1384
Next

Return to advanced search