Search found 89 matches: nresult

Return to advanced search

Re: To Nages Problem with Tdatabase and new DAtepick

... '@ €99,999.99' RIGHT FONT oFont UPDATE ... ACTIVATE DIALOG oDlgMod ; ON INIT (DlgCenter( oDlgMod, oGrid ), aGet[5]:aItems[2]:disable()) If oDlgMod:nresult == IDOK if msgYesNo( i18n("¿ save ?") ) oTariffa:costo := nCosto oTariffa:sconto := nSconto oTariffa:totale := nTotale oTariffa:save() ...
by Silvio.Falconi
Tue May 11, 2021 10:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages Problem with Tdatabase and new DAtepick
Replies: 13
Views: 1831

Re: Funciones C en Harbour

... de elevar a un exponente n el numero 2 : #pragma BEGINDUMP #include <hbapi.h> #include <math.h> HB_FUNC( C_2EXP ) { long long n, nResult; n = hb_parnll(1); nResult = pow(2,n); hb_retnll(nResult); } #pragma ENDDUMP Desde tu programa la llamaria asi: n2 := C_2EXP(4) ? "n2", ...
by George
Mon Feb 08, 2021 4:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funciones C en Harbour
Replies: 19
Views: 1740

Re: Retorno de chamada DLL

... <cDllFile>|<nDllHandle>, ; [<nCallingConvention>] , ; <cFuncName>|<nOrdinal> , ; [<xParams,...>] ) --> nResult Arguments <cDllFile> A character string holding the name of the DLL file where the function is located. This is an external DLL, not created ...
by carlos vargas
Fri Sep 27, 2019 8:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Retorno de chamada DLL
Replies: 4
Views: 1005

FWH1905: FW_StrICmp(): Case Insensitive Comparison

... last parameter. In all cases, the results are identical to normal comparison with case conversion. Syntax-2: FW_STRICMP( c1, c2, [lExact] ) --> nResult, which can be -1, 0, 1 meaning less than, equal to, greater than. FW_STRICMP( "aaa", "AAA" ) //--> 0 
by nageswaragunupudi
Wed Jun 26, 2019 4:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH1905: FW_StrICmp(): Case Insensitive Comparison
Replies: 0
Views: 416

Re: XBrowse & Edit Dialogs: Writing Portable code (Recommended)

... oBold @ 10, 36 GET aGet[1] VAR cCli OF oDlg SIZE 25, 10 PIXEL READONLY then when I must save I check if cCli is the same of the last code IF oDlg:nresult == IDOK IF nMode == 1 cCodeCliente:=CreaCodiceClienti(oClienti) If cCodeCliente==cCli Else Msginfo("The customer was saved with the account ...
by Silvio.Falconi
Sun Mar 31, 2019 4:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse & Edit Dialogs: Writing Portable code (Recommended)
Replies: 17
Views: 3742

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

... DllCall(<cDllFile>|<nDllHandle>,[<nCallingConvention>],<cFuncName>|<nOrdinal>,[<xParams,...>])->nResult DllExecuteCall(<pCallTemplate>,[<xParams,...>])->nResult DllLoad(<cDLLFileName>)->nDllHandle DllPrepareCall(<cDllFile>|<nDllHandle>,[<nCallingConvention>],<cFuncName>|<nOrdinal>)->pCallTemplate ...
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: 5814

Re: how lpressed works?

You can also check oDlg:nResult:

activate dialog oDlg centered

MsgInfo( oDlg:nResult )

and you can also disable Esc to close dialogs:

SetDialogEsc( .F. )
by Antonio Linares
Fri May 26, 2017 7:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how lpressed works?
Replies: 6
Views: 991

How to use "Event" when DLL used by "win_OleCreateObject" ?

... But, there is "Event" related with this DLL object. In API manual written in C#, there are two sample as followings. EventLogin (int nResult) EventConnect (int nResult) What is the sample of using Event in FWH/ Harbour declared in relation to Object win_OleCreateObject() ? Thanks. ...
by kim yong woo
Sat Jul 25, 2015 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use "Event" when DLL used by "win_OleCreateObject" ?
Replies: 1
Views: 422

Re: Number Of Complete Months

... the readily available function ADDMONTH() in ct.lib. Actually this function was avaialable even during 16-bit Clipper days in CA-Tools library. nResult := ADDMONTH( dDate, (plus or minus ) nMths ) nResult := ADDMONTH( dDate, (plus or minus ) 12 * nYears ) There is one issue: ADDMONTH() function ...
by nageswaragunupudi
Sun Jan 04, 2015 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number Of Complete Months
Replies: 9
Views: 2209

Tengo un mensqje de error en bcc582

... } } return fResult; } ISOLATION_AWARE_INLINE INT_PTR WINAPI IsolationAwarePropertySheetA(LPCPROPSHEETHEADERA unnamed1) { INT_PTR nResult = -1; typedef INT_PTR (WINAPI* PFN)(LPCPROPSHEETHEADERA unnamed1); static PFN s_pfn; ULONG_PTR ulpCookie = 0; const BOOL fActivateActCtxSuccess ...
by Armando Picon
Thu Aug 14, 2014 12:08 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: Tengo un mensqje de error en bcc582
Replies: 2
Views: 1576

Running a program with mixed parameters

... + dffile + '"' + dfxtnd    oDcf:close( )   // Now execute the transmission  MsgInfo( dffull )  nResult := WaitRun( dffull )    MsgInfo( nResult )RETURN NIL  dffull displays what appears to be a proper formatted string. ...
by TimStone
Thu Jul 03, 2014 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Running a program with mixed parameters
Replies: 3
Views: 671

Re: "Snap" for Clipper

... 1848 NPTRWORD()             (function  in ?)    WINDOW.PRG     1410 NRES                    WINDOW.PRG      896   896   897   901   901   902 NRESULT                WINDOW.PRG      443  1219  2574  2574  2574 NRGBCOLOR              WINDOW.PRG      591   592 NRIGHT                  WINDOW.PRG ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6772

Re: DIALOG ON DIALOG

... 40, 10 ACTION ( SuboDlg:end( IDOK ) )//,lSave:=.t. ) oGetNum:nHeight:=21.4 if the user press OK the procedure must make a calculation : if SuboDlg:nresult == IDOK DO CASE CASE Tipo == 1 Display := ( nMemo ) * ( PorCien / 100 ) CASE Tipo == 2 Display := (nMemo ) * ( 1 + ( PorCien / 100 ) ) CASE ...
by Silvio.Falconi
Tue May 07, 2013 9:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DIALOG ON DIALOG
Replies: 8
Views: 3062

Re: DIALOG ON DIALOG

... ; SETPARENT( SuboDlg:hWnd , oDlg:hWnd ),; SuboDlg:Move( 10 , 260 , 250, 215 , .T. )) because I must make a control on End if SuboDlg:nresult == IDOK ..... endif But it not run because let me error on if SuboDlg:nresult == IDOK
by Silvio.Falconi
Tue May 07, 2013 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DIALOG ON DIALOG
Replies: 8
Views: 3062

call Harbour from c++

... to monitor a secure SSL socket. i wish for my harbour program to use the callback function below, and it will happen with the precursor call here: nResult = HttpRegisterEvent(hClient, 0xFFFF, MyEventHandler, 0); Here is the actual event handler where I need to execute Harbour code, namely a function ...
by don lowenstein
Tue Apr 02, 2013 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: call Harbour from c++
Replies: 3
Views: 1049
PreviousNext

Return to advanced search