Search found 40 matches: commonly

Return to advanced search

Re: Compiler with MSVC y HARBOUR

... for. Best regards, Otto The files libssl-1_1-x64.dll, libcrypto-1_1-x64.dll, and libcurl-x64.dll are essential dynamic link library (DLL) files commonly used in Windows environments to provide SSL/TLS, cryptographic functions, and URL transfer capabilities respectively. Here's a breakdown of ...
by Otto
Sat Apr 20, 2024 6:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 135

file ID in the Windows file system

... a new File ID. - **File System Behavior**: Specific behaviors can vary slightly between different file systems (e.g., NTFS, FAT32, exFAT). NTFS, commonly used in Windows, supports stable File IDs across the same volume. - **No Direct Impact on Functionality**: For most users and applications, ...
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: 628

Re: Help splitting up a character address string

... function or similar string manipulation functions. The approach depends on the programming language you're using. I'll provide an example in a commonly used language, Python, which should give you a good idea of how to implement it in your specific language. In Python, you can use the split() ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: Web programming with Mod Harbour

... need to deploy it on a web server that supports Mod Harbour or the chosen web framework. Frontend Integration (Optional): While Mod Harbour is not commonly used for frontend development, you can integrate it with other frontend technologies like HTML, CSS, and JavaScript. For instance, you can ...
by sumit234
Sat Jul 29, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web programming with Mod Harbour
Replies: 1
Views: 327

Re: questions about xbrowse to understand better

... the rows of the table does not arrive at the end of the xbrowse control, but it is possible see a vertical scroll bar that is commonly unusable because it is not possible to provide information on video.
by Silvio.Falconi
Thu Oct 20, 2022 7:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions about xbrowse to understand better
Replies: 4
Views: 284

UPC lookup

... question: Has anyone tried working with a decoding option for UPC codes that looks up the item, and returns the descriptive data ? I know this is commonly available in many apps, so I assume there may be some existing API to do this. Perhaps someone has already found a solution for this with FWH. ...
by TimStone
Mon Apr 11, 2022 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UPC lookup
Replies: 4
Views: 242

New FTDN February/Febrero 2021 (FWH 21.02)

... also the first column has totals. Fixed. * XBrowse: - Method ReArrangeCols() now includes Refresh() also and returns Self instead of nil. - Many commonly used methods now return Self instead of nil, making it easy to call multiple methods in a single line of code. - New Method SetMultiSelectCol( ...
by Antonio Linares
Wed Mar 24, 2021 8:56 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 1463

FWH Graphs

I have been using a very old graphics class made for FWH in about 2004. Because it was commonly distributed as G_SERVER and G_GRAPH, others may have used it also. This is the code for creating a graph. FUNCTION Chart1( )   LOCAL byear, eyear  ...
by TimStone
Tue Oct 22, 2019 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Graphs
Replies: 9
Views: 2158

Re: What does this syntax mean? hHead := {=>}

... are only a few items long. I wonder how much of a speed increase that could provide. Not a noticeable amount I would think. Where might they be commonly used with advantage over other methods?
by James Bott
Wed Jul 03, 2019 3:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: What does this syntax mean? hHead := {=>}
Replies: 11
Views: 1344

xPlanner

Hello, for my new project xPlanner I remembered a class we developed commonly at the forum 10 years ago . http://forums.fivetechsupport.com/viewtopic.php?f=3&t=12150&hilit=pickdate This is the first time that I use TdatePicker in one of our applications. ...
by Otto
Wed Oct 24, 2018 8:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xPlanner
Replies: 3
Views: 589

Re: Busqueda SQL

... everytime. Note: Requery() puts lot of strain on server and network traffic. Good programming practice is to avoid requery() unless essential. One commonly used method is: oRs:AddNew()// assign field valuesoRs:Update()  Better method is: oRs:AddNew( ArrayOfFieldNamesOrNumbers, ...
by nageswaragunupudi
Sat Jul 14, 2018 10:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda SQL
Replies: 15
Views: 3082

Re: Can TGraph do X,Y plots?

I should clarify, in the beginning of this thread I was talking about making an x,y chart with just data points. This is also commonly called a scatter chart. For this type of chart the data points can be in any order. You can see a sample scatter chart here: https://www.highcharts.com/docs/chart-and-series-types/scatter-chart ...
by alvaro533
Wed Mar 07, 2018 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 5505

Re: Can TGraph do X,Y plots?

I should clarify, in the beginning of this thread I was talking about making an x,y chart with just data points. This is also commonly called a scatter chart. For this type of chart the data points can be in any order. You can see a sample scatter chart here: https://www.highcharts.com/docs/chart-and-series-types/scatter-chart ...
by James Bott
Wed Mar 07, 2018 1:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can TGraph do X,Y plots?
Replies: 18
Views: 5505

Re: Need sample that display default browser as an icon on butto

Instead of reading the web browser's icon from the exe itself I took the approach of preparing in advance the icons of commonly used browser and select which one to use after determining what is current default browser. Anyone knows what is the tried and tested method to include alpha ...
by hua
Thu Jun 08, 2017 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need sample that display default browser as an icon on butto
Replies: 1
Views: 498

Re: Methods of a variable

... by this Scalar Class. Some of them would be methods you may be interested in. Actually, to the best of my knowledge, AsString() is a method commonly available in all Scalar classes and except for Arrays and Hashes, there are no other useful methods. Even for array or hash, I do not think ...
by nageswaragunupudi
Sun May 22, 2016 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Methods of a variable
Replies: 3
Views: 670
Next

Return to advanced search