Search found 1384 matches: methods

Return to advanced search

Re: DateTime calculation

... unixTimestampMilliseconds will be in the format you can use in your URL. Make sure to adjust the code based on your actual Harbour date handling methods, as it may vary depending on the context of your project.
by Antonio Linares
Sat Jan 27, 2024 7:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DateTime calculation
Replies: 6
Views: 714

Re: Nages, 2 diferent Db's update

... UPDATE, MySql provides UPSERT: To insert if the primary key is not found and update if the primary is found, We can do UPSERT using either of the methods: oCn:Upsert( table, [aFieldNames], aValues)// oroCn:Insert( table, [aFieldNames], aValues, .T. )  // .T. indicates ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 735

Re: nYoffset and nXoffset

nXoffset and nYoffset are only used in the methods: New - Sets nXoffset and nYoffset based on printer settings. Cmtr2Pix - Uses nXoffset and nYoffset to convert centimeters to pixels. Mmtr2Pix - Uses nXoffset and nYoffset to convert millimeters ...
by Silvio.Falconi
Mon Jan 15, 2024 7:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 854

Re: nYoffset and nXoffset

nXoffset and nYoffset are only used in the methods: New - Sets nXoffset and nYoffset based on printer settings. Cmtr2Pix - Uses nXoffset and nYoffset to convert centimeters to pixels. Mmtr2Pix - Uses nXoffset and nYoffset to convert millimeters ...
by Otto
Sun Jan 14, 2024 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 854

WEBVIEW2 oPrn:PrintTable() alternative

Hello friends, WebView2 now opens up great possibilities for us. HTML printing, offers several advantages over traditional desktop printing methods (like using desktop publishing software). With HTML and JavaScript, you can create highly dynamic and customizable print documents. I now have a ...
by Otto
Fri Jan 12, 2024 6:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WEBVIEW2 oPrn:PrintTable() alternative
Replies: 0
Views: 654

Re: WebView2 Essentials: Guides, Tips & Resources

... The class seems to be written in a language that resembles Harbour, a Clipper-compatible programming language. Let's break down the class and its methods: Class: TWebView This class appears to manage a web view control within a desktop application. Data Members: hWebView: Handle to the web view ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 496

Re: WebView2 Essentials: Guides, Tips & Resources

... class provides web-specific functionalities such as networking, navigation, script handling, and HTML parsing and rendering. It includes methods like PostWebMessageAsJson, PostWebMessageAsString, and events like WebMessageReceived for interaction between the WebView2 control and the host ...
by Otto
Wed Jan 10, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 496

file ID in the Windows file system

... to certain file systems like NTFS. Ensure that the file system of the volume on which your file resides supports these features. By using these methods, you can retrieve the unique identifier for files in Windows, which is particularly useful for scripting, programming, or tracking files in ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 651

Re: Strange behavior of xBrowse

... xBbrowse always works fine.In this case, it's my mistake . I just wanted to find the reason by looking (via Override) at the work of the xBrowse methods. I am interested in the method that is executed when a cell is clicked
by Natter
Sun Nov 26, 2023 6:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange behavior of xBrowse
Replies: 8
Views: 780

Re: OVERRIDE

... ) sample: OVERRIDE METHOD BuildButtonBar IN CLASS TPreview WITH PreviewBuildButtonBar I not found the #command to add data or add methods EXTEND CLASS TPreview WITH DATA aDefaultCols not run
by Silvio.Falconi
Mon Nov 13, 2023 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OVERRIDE
Replies: 8
Views: 669

OVERRIDE

I saw that I can modify a method of a class directly with the OVERRIDE command without having to modify the class.
Can I add Data or new methods with the same technique? and how ?
by Silvio.Falconi
Mon Nov 13, 2023 11:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OVERRIDE
Replies: 8
Views: 669

Re: Xlsxlibhb_ver2

If you set
Code: Select all  Expand view
UseXLSXLIB(  .T.  )

All toExcel methods will use this lib instead of Using Excel
by nageswaragunupudi
Sat Nov 04, 2023 1:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9227

Re: Xlsxlibhb_ver2

METHODS METHOD AddSheet( cNewSheetName )METHOD Address( nRow, nCol, nRow2, nCol2 ) // Adddress( 1,1 ) -> "B2"METHOD RowHeight( nRow, nHeight, oFormat, lPixel ) METHOD SetColumnSize( ...
by nageswaragunupudi
Sat Nov 04, 2023 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9227

Re: App Termination and Relaunch.

... to gracefully terminate your application. 2. Relaunch the Application: After terminating the current instance, you can use one of the following methods to relaunch your application: a. `ShellExecute`: ```cpp #include <Windows.h> int main() { // Terminate the current instance // Relaunch ...
by Antonio Linares
Fri Oct 06, 2023 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 431

Re: who use PostgreSQL with Fivewin ?

... using FWH's TDataRow. Also totally avoid using any functions of FWPGSUPPORT.PRG for reading, saving and primary keys. Instead you may directly use methods of TPQquery and TPQrow classes of Harbour's hbpgsql.lib. This is very simple. This is the way to go:   oQry  := oServer:Query( ...
by nageswaragunupudi
Thu Sep 28, 2023 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1101
PreviousNext

Return to advanced search