Search found 206 matches: invoke

Return to advanced search

Re: Fivewin and ADO

... oBrw:lFastEdit is .T. or .F. ) When the user presses Enter Key on a cell or double clicks on a cell, Inline Edit of the cell is automatically invoked. There is nothing the programmer needs to do for this. FASTEDIT. ( oBrw:lFastEdit is .T.) This is the only difference. If the oBrw:lFastEdit ...
by nageswaragunupudi
Sat Jun 10, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3377

Re: XBROWSE Column Question

hi, oBrw:lAutoSort := .t.  // default .f. to invoke autosort feature. We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. WOW, that is nice :D When autosort flag is ON, XBrowse automatically sorts the data on click of header, ...
by Jimmy
Wed May 10, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 857

Re: XBROWSE Column Question

how is the Syntax to use "Header - click" to SET Order / TAG :?: Set oBrw:lAutoSort := .t.  // default .f. to invoke autosort feature. We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. When autosort flag is ON, XBrowse automatically sorts the ...
by nageswaragunupudi
Wed May 10, 2023 12:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 857

Re: ACROPDF

... PTR ) STDCALL dispatch FUNC void GetIDsOfNames( [in] PTR, [in] PTR, [in] unsigned int, [in] unsigned long, [out] PTR ) STDCALL dispatch FUNC void Invoke( [in] int, [in] PTR, [in] unsigned long, [in] unsigned short, [in] PTR, [out] PTR, [out] PTR, [out] PTR ) STDCALL dispatch PROPERTYGET BSTR src() ...
by cnavarro
Mon May 01, 2023 7:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ACROPDF
Replies: 5
Views: 508

Re: FWString() : how to add

hi Antonio, Could we do the translations automatically ? I mean, If the Word translation is not found then it automatically invoke google to translate it and feed the array interesting Idea :idea: i have learn about FW_TransLang() i have to look at it how to get "right" Language ...
by Jimmy
Tue Apr 04, 2023 4:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWString() : how to add "Keywords"
Replies: 14
Views: 704

Re: FWString() : how to add "Keywords"

Dear Jimmy,

Could we do the translations automatically ?

I mean, If the Word translation is not found then it automatically invoke google to translate it and feed the array

Enviado desde mi SM-M325FV mediante Tapatalk
by Antonio Linares
Tue Apr 04, 2023 1:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWString() : how to add "Keywords"
Replies: 14
Views: 704

Re: TWebView:Destroy method does not close the window.

... because the program doesn't enter the message loop. When there is no message loop ICoreWebView2CreateCoreWebView2ControllerCompletedHandler::Invoke() isn't called. If it was called everything is fine, and the webview2 calls Release(). Wow! It can easily be fixed by storing a flag if ICoreWebView2CreateCoreWebView2ControllerCompletedHandler:Invoke() ...
by Antonio Linares
Sat Jul 30, 2022 1:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView:Destroy method does not close the window.
Replies: 46
Views: 2868

Re: New Class TWebView in next FWH build

... me an example that is read from an write to hmtl website. Not sure what you are asking exactly. Using oWebView:Eval( cJavaScriptExpression ) you invoke javascript code from your FWH app and you get the result using a codeblock oWebView:bOnBind. This is very powerful. > When can we test this ...
by Antonio Linares
Mon Jun 06, 2022 6:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Class TWebView in next FWH build
Replies: 23
Views: 2176

Re: Microsoft Visual Studio - small version

... You’ll see a command prompt window entitled Developer Command Prompt for VS 2019. This has the paths, etc. set up for building. From here you can invoke the compiler from the command line. See this link for a brief walkthrough. Later on, to get back to this command prompt, search/run Developer ...
by Antonio Linares
Mon Nov 22, 2021 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Microsoft Visual Studio - small version
Replies: 5
Views: 745

Re: ActiveX - CREATEOBJECT and singleton pattern

hi, Antonio thanks for taking care of my problem .... Yes, i tried this too, but it reports an error o2:Invoke( "TestConnectionDll", "" ) Just today I intended to send a description of what was happening in the meantime. On the forum https://stackoverflow.com/questions/6252334/singleton-com-object-required ...
by metro2
Mon Nov 15, 2021 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1596

Re: ActiveX - CREATEOBJECT and singleton pattern

Please try using:

o2:Invoke( "TestConnectionDll", "" )
by Antonio Linares
Mon Nov 15, 2021 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1596

Re: ActiveX - CREATEOBJECT and singleton pattern

//////////////////////////////////////////// o1 := CreateObject( "PaymentService.BluetoothConnector" ) o2 := TOleAuto():New( o1:Invoke( "GetInstance" ) ) MsgInfo( ValType( o1 ) ) // -> "O" MsgInfo( ValType( o2 ) ) // -> "O" ////////////////////////////////////////////
by metro2
Wed Sep 29, 2021 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1596

Re: ActiveX - CREATEOBJECT and singleton pattern

Please try this:

local o1 := CreateObject( "PaymentService.BluetoothConnector" )
local o2 := TOleAuto():New( o1:Invoke( "GetInstance" ) )
by Antonio Linares
Wed Sep 29, 2021 11:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1596

Re: ActiveX - CREATEOBJECT and singleton pattern

... o1 := CREATEOBJECT("PaymentService.BluetoothConnector") // ok MsgInfo( ValType( o1 ) ) // -> "O" local22 := o1:Invoke( "GetInstance" ) MsgInfo( ValType( local22 ) ) // N MsgInfo( str( local22 ) ) // 244252684 o2 := o1:GetInstance() // error MsgInfo( ...
by metro2
Wed Sep 29, 2021 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1596
Next

Return to advanced search

cron