Search found 35 matches: nnum

Return to advanced search

Re: xHarbour.org updated!

... #Include "Fivewin.ch" Function Main() LOCAL oDlg, oGet LOCAL cCad := "Testing " // pad("Testing Gets",40) LOCAL nNum := 0 LOCAL dDat := Date() inicio := 0 Set Century on Set Date To British Set Epoch to 1960 Set Multiple On Set Deleted On DEFINE DIALOG oDlg TITLE ...
by wartiaga
Tue Sep 19, 2023 7:57 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 153
Views: 30979

Re: xHarbour.org updated!

... #Include "Fivewin.ch" Function Main() LOCAL oDlg, oGet LOCAL cCad := "Testing " // pad("Testing Gets",40) LOCAL nNum := 0 LOCAL dDat := Date() inicio := 0 Set Century on Set Date To British Set Epoch to 1960 Set Multiple On Set Deleted On DEFINE DIALOG oDlg TITLE ...
by wartiaga
Tue Sep 19, 2023 12:16 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 153
Views: 30979

Re: xHarbour.org updated!

... #Include "Fivewin.ch" Function Main() LOCAL oDlg, oGet LOCAL cCad := "Testing " // pad("Testing Gets",40) LOCAL nNum := 0 LOCAL dDat := Date() Set Century on Set Date To British Set Epoch to 1960 Set Multiple On Set Deleted On DEFINE DIALOG oDlg TITLE "TGet ...
by wartiaga
Mon Sep 18, 2023 7:22 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 153
Views: 30979

Re: numeric get

If nNum is declared as nil then this error is generated:

Error description: Error BASE/1122 Argument error: TRANSFORM
Args:
[ 1] = U
[ 2] = C 9999999.99

It must be a number
by Antonio Linares
Thu Jul 20, 2023 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: numeric get
Replies: 8
Views: 314

Re: numeric get

Dear Detlef,

Please modify FWH\samples\testget.prg this way:

@ 2, 6 GET oGet VAR nNum OF oDlg SIZE 60, 10 PICTURE "9999999.99" RIGHTTOLEFT

it seems to work fine. Please try it
by Antonio Linares
Thu Jul 20, 2023 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: numeric get
Replies: 8
Views: 314

Re: Everything under Fivewin

...                  AS DWORD PASCAL LIB "Everything32.dll"DLL FUNCTION Everything_GetResultFullPathNameW(nNum AS _INT, cBuffer AS LPSTR, nSize AS _INT ) AS VOID PASCAL LIB "Everything32.dll"DLL FUNCTION Everything_GetResultFullPathNameA(nNum ...
by Jimmy
Mon Nov 14, 2022 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1021

Re: NumtoWord (in a payment receipt)

Hi Silvio, this is a function Gl_NumToE( nNum ) to get a italian word from a number #include "FiveWin.ch"FUNCTION MAIN()        LOCAL   nNum1 := 12345.67, nNum2 := 1234567.89        MsgStop( Gl_NumToE( nNum1 ) )  ...
by MaxP
Mon May 11, 2020 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: NumtoWord (in a payment receipt)
Replies: 3
Views: 872

Re: RANGO DE VALORES DE Y EN TGRAH

... de 500 en 500 hasta nMax, ya lo cambie en mi sistema haciendo esto oGraph:nMinVal := 500 y no lo respeta, consegui en TGraph una funcion DetMinVal(nNum) que parece es la que hace dicho calculo (Nueva funcion, para cuando TODOS los valores de la grafica sean mayores a cero (>0)), pero hice cambios ...
by joseluisysturiz
Tue Jul 23, 2019 9:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RANGO DE VALORES DE Y EN TGRAH
Replies: 23
Views: 2943

Encode Base16

... resultado debe ser (segun el ejemplo que ponen): -> D83FF05798D81FFC7426DE08E0C6F3C79884A6A5 Utilizando la funcion de xharbour: NumToHex( <nNum>|<pPointer>, [<nLen>]) el programa se cierra sin dar nungun mensaje ? NumToHex(0001234567890201811151310009990000101010000000100005) ...
by RSalazarU
Fri Jan 25, 2019 6:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Encode Base16
Replies: 8
Views: 1686

Re: several questions about GET class

... libs for test ( copy old libs ) . Changes for numeric gets . ( in test ) https://www.dropbox.com/s/oqwygwfuao1taux/librerias.zip?dl=0 use : local nNum := 0 // nNum -> valtype numeric @ 40, 90 GET oGet1 VAR nNum OF oDlg PICTURE "9999.99" TOOLTIP "a string with cross" SIZE ...
by mastintin
Thu Jul 05, 2018 1:31 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: several questions about GET class
Replies: 14
Views: 5240

Re: funciones de FWH y Harbour en un archivo .txt

... BeforAtNum(<cSearch>,<cString>,[<nCount>],[<nSkipChars>])->cResult Bin2I(<cSignedInt>)->nNumber Bin2L(<cSignedInt>)->nNumber Bin2W(<cUnsignedInt>)->nNumber BitToC(<nInteger>,<cBitPattern>,[<lSpaces>])->cResult ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5627

Re: Abrir navegador dentro de un dialogo

... local oDlg, aGet[4], aBtn[2], oActiveX local cCity := space(100) local cCountry := "CL" local cStreet := space(100) local nNum := 0 If !IsInternet() MsgInfo("Ud. no posee Conección Activa a <INTERNET>, !!! Favor Verificar ¡¡¡ ") Return Nil Endif Define Dialog ...
by Claudio Leiva
Mon Mar 27, 2017 8:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Abrir navegador dentro de un dialogo
Replies: 9
Views: 2319

RBBTN Passing a parameter to popup menu

Is it possible to pass a parameter to the popup menu which is changed dynamically during the run time. See the example below. Changing the value of nNum has no effect. Best regards, #include "FiveWin.ch"#include "Ribbon.ch"function Main()local oDlg, oBtn, nNum:=10   DEFINE ...
by betoncu
Fri Dec 25, 2015 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RBBTN Passing a parameter to popup menu
Replies: 3
Views: 573

Re: CONSULTA URGENTE!!! RANDOM

Ozono, si en vez de nNum := nRandom( nRand ) escribes: nNum := nRandom( nRand )+1 te aseguras de que nunca te va a dar 0 y te quitas de complicaciones

Un saludo. Y suerte...
by antolin
Fri Oct 25, 2013 10:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONSULTA URGENTE!!! RANDOM
Replies: 7
Views: 1693

Re: Archivos FTP con Fecha incorrecta en FW

... y luego a fecha la cual seria invalida dado que no existe el mes 17, retornando una fecha vacia. lo ideal es usar la funcion strzero(nNum,nSize) hb_StoD( "2013" + strzero( 1, 2 ) + StrZero( 7, 2) ) -> "20130107" -> pasado a fecha 07-01-2013, aca estaria correcto. ...
by carlos vargas
Wed Oct 09, 2013 10:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Archivos FTP con Fecha incorrecta en FW
Replies: 5
Views: 1082
Next

Return to advanced search