Many Thanks Nage
Happy New Year
Marco
Search found 42 matches: nage
Searched query: nage
- Tue Jan 07, 2025 9:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: to Excel : using Array and "paste" it
- Replies: 6
- Views: 909
- Fri Jan 03, 2025 5:47 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: to Excel : using Array and "paste" it
- Replies: 6
- Views: 909
Re: to Excel : using Array and "paste" it
Dear Nage
this problem has been resolved?
Many thanks
Marco
Code: Select all | Expand
oSheet:Range( "A1:C1" ):Value := { 1, 2, 3 } //WORKS.
oSheet:Range( "A1:C2" ):Value := { {1,2,3},{4,5,6} } // FAILS, though works with VB <<<<<<<<<<<<<<< this problem
Many thanks
Marco
- Tue Jun 25, 2024 2:23 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF editors
- Replies: 78
- Views: 15082
Re: DBF editors
... to be executed and any local variables captured when the block is created.
Garbage Collection: Harbour has garbage collection mechanisms to manage memory used by code blocks. Unreferenced code blocks are cleaned up automatically.
Flexibility:
Dynamic Behavior: Code blocks provide a high degree ...
Garbage Collection: Harbour has garbage collection mechanisms to manage memory used by code blocks. Unreferenced code blocks are cleaned up automatically.
Flexibility:
Dynamic Behavior: Code blocks provide a high degree ...
- Fri Aug 12, 2022 5:07 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FW_DbfToHTML() new
- Replies: 3
- Views: 757
Re: FW_DbfToHTML() new
Nage,
can you share cust.html?
Many thanks
Marco
can you share cust.html?
Many thanks
Marco
- Sun Feb 28, 2021 6:01 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: What's the best way to set individual bits, in a bit string
- Replies: 9
- Views: 1018
Re: What's the best way to set individual bits, in a bit string
Thanks nage,
There's no function folder in samples.
if you mean the .c code in the ..\samples and subfolders, yes that's helpful.
But nobody - as far as I know - has put together any kind structured tutorial document with short samples and maybe exercises. All we have is reference documentation ...
There's no function folder in samples.
if you mean the .c code in the ..\samples and subfolders, yes that's helpful.
But nobody - as far as I know - has put together any kind structured tutorial document with short samples and maybe exercises. All we have is reference documentation ...
- Wed Nov 04, 2020 11:30 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Program techniques : change indexorder or use aliases
- Replies: 4
- Views: 804
Re: Program techniques : change indexorder or use aliases
... Omit if uVal
is an expression
bcRetExpr: codeblock/string: Expression to evaluate
Examples:
CUSTOMER->( FW_DBFLOOKUP( 108, "ID", "AGE" ) ) --> nAge of ID 108
CUSTOMER->( FW_DBFLOOKUP( 99, "ID", "FIELD->SALARY += 100" ) ) -->
Salary field is incremented and written to table and returns the value ...
is an expression
bcRetExpr: codeblock/string: Expression to evaluate
Examples:
CUSTOMER->( FW_DBFLOOKUP( 108, "ID", "AGE" ) ) --> nAge of ID 108
CUSTOMER->( FW_DBFLOOKUP( 99, "ID", "FIELD->SALARY += 100" ) ) -->
Salary field is incremented and written to table and returns the value ...
- Thu Mar 26, 2020 7:40 am
- Forum: mod_harbour
- Topic: Mod_Harbour and Hash Arrays
- Replies: 6
- Views: 1092
Re: Mod_Harbour and Hash Arrays
... it is great.
As far as using Hash Arrays with Mod_Harbour:
local aH := {=>}
Function Main()
aH[ 'cTime' ] := time()
aH[ 'dDate' ] := date()
aH[ 'nAge' ] := 123
?aH[ 'cTime' ]
?aH[ 'dDate' ]
?aH[ 'nAge' ]
Return nil
This works and Time, Date, and Age show in the browser window.
However should ...
As far as using Hash Arrays with Mod_Harbour:
local aH := {=>}
Function Main()
aH[ 'cTime' ] := time()
aH[ 'dDate' ] := date()
aH[ 'nAge' ] := 123
?aH[ 'cTime' ]
?aH[ 'dDate' ]
?aH[ 'nAge' ]
Return nil
This works and Time, Date, and Age show in the browser window.
However should ...
- Fri Dec 13, 2019 4:10 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FW_BarCodeBmp Help
- Replies: 1
- Views: 515
FW_BarCodeBmp Help
Hi Mr. Nage,
I am generating a QR code with FW_BarCodeBmp, but when recording it saves me the image with a black background.
How to save with transparent background
![Image](https://i.postimg.cc/PNGV0xQY/TEMP0001.jpg)
I am generating a QR code with FW_BarCodeBmp, but when recording it saves me the image with a black background.
How to save with transparent background
![Image](https://i.postimg.cc/PNGV0xQY/TEMP0001.jpg)
- Fri Oct 11, 2019 1:36 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: SayBarCode control
- Replies: 34
- Views: 9476
Re: SayBarCode control
... 40; hBmp, "name.bmp" )return nil
You can specify the file name as "name.bmp" or "name.jpg" or "name.png" and it will be saved in bmp or jpg or png format depending on the extension used.
For best results, use bmp format.
Thank you Mr. Nage. Which fivewin version provides this feature?
You can specify the file name as "name.bmp" or "name.jpg" or "name.png" and it will be saved in bmp or jpg or png format depending on the extension used.
For best results, use bmp format.
Thank you Mr. Nage. Which fivewin version provides this feature?
- Sat May 25, 2019 11:46 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: COLUMNA xBROWSE CON VARIOS BOTONES ACCION INDIVIDUAL
- Replies: 4
- Views: 855
Re: COLUMNA xBROWSE CON VARIOS BOTONES ACCION INDIVIDUAL
... etc...alli estaria usando por lo menos 4 columnas del xbrowse, si se pudiese usar UNA SOLA conteniendo los 4 botones...creo seria algo muy bueno...digo, no se...igual probare lo que sugieres y comento, gracias...
For now, keep using 4 different columns.
Saludos y gracias Mr.Nage,,,gracias...
For now, keep using 4 different columns.
Saludos y gracias Mr.Nage,,,gracias...
- Thu Mar 28, 2019 2:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Question to coordinates.
- Replies: 6
- Views: 1184
Re: Question to coordinates.
Günther,
You can use :
@ 185, 810 GET oGet[1] VAR nAge SIZE 30, 22 PICTURE "99" PIXEL UPDATE
oGet[1]:bLClicked := {|| aSize := GET_SIZE( oGet[1] ), ;
MsgAlert( "Top : " + ALLTRIM(STR(aSize[1])) + CRLF + ; // only for test
"Left : " + ALLTRIM(STR(aSize[2])) + CRLF + ;
"Width : " + ALLTRIM(STR(aSize ...
You can use :
@ 185, 810 GET oGet[1] VAR nAge SIZE 30, 22 PICTURE "99" PIXEL UPDATE
oGet[1]:bLClicked := {|| aSize := GET_SIZE( oGet[1] ), ;
MsgAlert( "Top : " + ALLTRIM(STR(aSize[1])) + CRLF + ; // only for test
"Left : " + ALLTRIM(STR(aSize[2])) + CRLF + ;
"Width : " + ALLTRIM(STR(aSize ...
- Wed Oct 04, 2017 7:43 pm
- Forum: WhatsNew / Novedades
- Topic: New FTDN September/Septiembre 2017 (FWH 17.09)
- Replies: 3
- Views: 4071
New FTDN September/Septiembre 2017 (FWH 17.09)
... Omit if uVal
is an expression
bcRetExpr: codeblock/string: Expression to evaluate
Examples:
CUSTOMER->( FW_DBFLOOKUP( 108, "ID", "AGE" ) ) --> nAge of ID 108
CUSTOMER->( FW_DBFLOOKUP( 99, "ID", "FIELD->SALARY += 100" ) ) -->
Salary field is incremented and written to table and returns the ...
is an expression
bcRetExpr: codeblock/string: Expression to evaluate
Examples:
CUSTOMER->( FW_DBFLOOKUP( 108, "ID", "AGE" ) ) --> nAge of ID 108
CUSTOMER->( FW_DBFLOOKUP( 99, "ID", "FIELD->SALARY += 100" ) ) -->
Salary field is incremented and written to table and returns the ...
- Mon Sep 11, 2017 9:58 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: SetCheck CON DBF NO ME CAMBIA IMAGEN TRUE/FALSE
- Replies: 2
- Views: 695
Re: SetCheck CON DBF NO ME CAMBIA IMAGEN TRUE/FALSE-RESUELTO
... 40;,.t.)
4 es la columna del xbrowse donde esta el campo logico
Tuve el mismo problema con dolphin.
Espero te sirva
CMSOFT ya lo resolvi con una ayuda de NAGE en el foro inglres, igual gracias por tu respuesta...saludos...gracias...
http://forums.fivetechsupport.com/viewtopic.php?f=3&t=34571
4 es la columna del xbrowse donde esta el campo logico
Tuve el mismo problema con dolphin.
Espero te sirva
CMSOFT ya lo resolvi con una ayuda de NAGE en el foro inglres, igual gracias por tu respuesta...saludos...gracias...
http://forums.fivetechsupport.com/viewtopic.php?f=3&t=34571
- Sat Sep 09, 2017 4:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: SetCheck WITH DBF DOES NOT CHANGE IMAGE TRUE / FALSE
- Replies: 5
- Views: 1226
Re: SetCheck WITH DBF DOES NOT CHANGE IMAGE TRUE / FALSE
... 91; n ]:nFooterType := AGGR_SUMnextoBrw:aCols[ 9 ]:SetCheck()oBrw:MakeTotals()ACTIVATE DIALOG oDlg CENTERED
Mr. NAGE, as always as successful, as it is an old application, I did not want to touch anything, since the only change I made was in a Fast Report report ...
Mr. NAGE, as always as successful, as it is an old application, I did not want to touch anything, since the only change I made was in a Fast Report report ...
- Thu Sep 07, 2017 3:15 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Allow a write in Get in a Combobox
- Replies: 11
- Views: 3249
Re: Allow a write in Get in a Combobox
... at the top of the source code of the dbcombo.prg says that the list needs to ordered, incremental search works even with unordered lists.
Mr.NAGE, in your sample it works but only with the first 2 letters of the word to search, I imagine that it is the field value in the DBF, in my case I use ...
Mr.NAGE, in your sample it works but only with the first 2 letters of the word to search, I imagine that it is the field value in the DBF, in my case I use ...