Search found 54 matches: invokes

Return to advanced search

Re: FWErrorsys()

FWH procedure FWErrorSys() is identical to FWH procedure ErrorSys() that it is automatically called by Harbour.

procedure ErrorSys() invokes function ErrorBlock() to replace the default application errorBlock:

ErrorBlock( { | e | ErrorDialog( e ) } )
by Antonio Linares
Wed Apr 03, 2024 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1823

Re: WebView2 Essentials: Guides, Tips & Resources

... Sets the title of the web view window. SetSize(nWidth, nHeight, nHints): Sets the size of the web view window with optional size hints. Print(): Invokes the print function of the web view. SetParent(oWnd): Sets the parent window of the web view. SetUserAgent(cUserAgent): Sets the user agent string ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

Re: Another try for using the FWH debugger - some more questions

Dear Michel,

AltD( 1 ) // Enables the debugger. Press F5 to go

MsgInfo( "debugger enabled" )

AltD() // Invokes the debugger

MsgInfo( "debugger invoked" )
by Antonio Linares
Sat Jul 15, 2023 4:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another try for using the FWH debugger - some more questions
Replies: 7
Views: 433

New FTDN November 2018 (FWH 18.11)

... ToJson( [anRows], [nStart], [aFields] ) * TDATABASE: - New method SetReplicationServer( oServer ) oServer can be a MariaDB connection object. This invokes automatic replication of all changes to the DBF (add,edit,delete) made through the class to a table with the same name, structure and data on ...
by Antonio Linares
Sat Dec 01, 2018 10:46 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November 2018 (FWH 18.11)
Replies: 1
Views: 2156

TDatabase FWH 17.08 : Datas and Methods

... is deleted 24. DeleteIndex( cTag, cFile ) Removes the index tag from the order bag 25. Edit( [cFiedList], [lNew] ) Creates a record object and invokes Edit(). This is a safe way to edit existing or new records. By default Edit() calls native dialog of record object, but user can specify his ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1782

Re: download a file from a https server

... itself available over the internet and uses a standardized XML messaging system. XML is used to encode all communications. For example, a client invokes a web service by sending an XML message, then waits for a corresponding XML response. Login information is sent in XML following your .WSDL ...
by reinaldocrespo
Fri Aug 12, 2016 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: download a file from a https server
Replies: 7
Views: 2049

Re: Fivewin en version antigua (FW24)

... bits. Many thanks to Jorge Mason. * Fixed: Pressing on the "?" icon on a dialog box and then pressing on a control it is working ok now (invokes Method HelpTopic) for 32 bits. * Improved: New methods SaveAsRTF() and LoadAsRTF() for class TRichEdit only for 32 bits apps. You may review ...
by cnavarro
Wed Jun 22, 2016 9:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fivewin en version antigua (FW24 xHarbour)
Replies: 28
Views: 5148

Re: Fivewin en version antigua (FW24)

... bits. Many thanks to Jorge Mason. * Fixed: Pressing on the "?" icon on a dialog box and then pressing on a control it is working ok now (invokes Method HelpTopic) for 32 bits. * Improved: Syntax highlight support for Class TRichEdit only for 32 bits apps. It allows user defined tokens ...
by cnavarro
Wed Jun 22, 2016 9:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fivewin en version antigua (FW24 xHarbour)
Replies: 28
Views: 5148

Re: .pdf to .tif?

... You can automate the whole process by creating a windows service that monitors PDF files as they are dropped in a folder where the service invokes Ghostscript via a batch file with the proper commands where the resulting TIFF/JPGs can then be output to another folder that you application ...
by renep
Mon Mar 14, 2016 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: .pdf to .tif?
Replies: 5
Views: 1161

Re: Ado and MS Sql

Please try oBrw:bLDClickDatas := { || oBrw:EditSource( .f., "FirstName,LastName,PhoneNumber", .f. )} XBrowse internally invokes TDataRow class to edit the contents of the fields and save them properly and update xbrowse. I assume the recordset fieldnames are FirstName, ...
by nageswaragunupudi
Thu Dec 17, 2015 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ado and MS Sql
Replies: 4
Views: 859

Re: Pasar de Browse de Hernan a xBrowse

... to enable edit. oBrw:nEditTypes := EDIT_GET is a short cut for assigining each oCol:nEditType := EDIT_GET. When FASTEDIT is used, pressing any key invokes inline edit. If not, the user can start edit first by pressing ENTER key. The entire process of editing the cell, locking/unlocking of the table, ...
by nageswaragunupudi
Sun Mar 22, 2015 2:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar de Browse de Hernan a xBrowse
Replies: 11
Views: 2406

Re: Cursor position after tget:setfocus()

Hi Ruben,

oGet:Refresh() invokes oGet:GoHome() which always position the cursor to 1.
by fraxzi
Mon Feb 02, 2015 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor position after tget:setfocus()
Replies: 8
Views: 1826

Re: question about xBrowse and EDIT_GET

Even in Excel, single click selects the clicked cell. Either pressing any data key or double-click invokes edit and not single-click. XBrowse with FastEdit behaves exactly the same way. If we also set oBrw:lEnterKey2Edit := .f. oBrw:lF2KeyToEdit := .t. edit behavior is exactly ...
by nageswaragunupudi
Tue Jul 15, 2014 2:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Nages!! question about xBrowse and EDIT_GET [bug issue]
Replies: 15
Views: 2886

Re: Incremental Search

... goes across the entire width of the browser. thanks, Byron ... Byron , Why not a combobox ? I have written a GET , with a ACTION clausule which invokes XBROWSE , and works as a combobox with multiple columns . The source ( +/- 2500 lines) is to big to publish it here. Frank
by Franklin Demont
Fri Mar 28, 2014 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental Search
Replies: 27
Views: 5221

Re: Memoedit

... only. This can be easily implemented in XBrowse. For a memo field, if oCol:nEditType is set to EDIT_BUTTON, then pressing enter or double clicking invokes MemoEdit(). In case of empty data or pure text data, the user is prompted to edit as Text or RTF. If the user chooses to edit as RTF, then the ...
by nageswaragunupudi
Tue Mar 18, 2014 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memoedit
Replies: 29
Views: 6394
Next

Return to advanced search