Search found 735 matches: provides

Return to advanced search

Re: Compiler with MSVC y HARBOUR

... and URL transfer capabilities respectively. Here's a breakdown of each: 1. libssl-1_1-x64.dll Purpose: This library is part of OpenSSL and provides the SSL/TLS protocol support necessary for secure communications over networks. It's used to encrypt data transmitted over network connections, ...
by Otto
Sat Apr 20, 2024 6:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compiler with MSVC y HARBOUR
Replies: 3
Views: 145

Re: Digital signing a document

Dear Michel, Asking chatgpt: you can utilize a C library that provides PDF parsing capabilities. One such library is Poppler, which is widely used for working with PDF files in C You can download the pre-built Poppler library for Windows from the Poppler ...
by Antonio Linares
Sat Apr 13, 2024 6:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Digitally signing a document
Replies: 14
Views: 426

Re: Problema super raro

Ok. This can be done in different ways. Let us now try the 1st method. FWH provides a cloud server for our testing. Let us use this server for our tests. Creating temporary table with data from the permanent table: oCn:Execute( "SELECT * INTO [TBL_TEMP] ...
by nageswaragunupudi
Sun Mar 24, 2024 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2128

Re: New function ADiff( aArray1, aArray2 )

FWH provides the function FW_ValToExp( uVal )
Where is the function Fw_ValToExp_Mia() from?
In what way it is different from the original FW_ValtoExp() function?
by nageswaragunupudi
Thu Feb 15, 2024 6:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New function ADiff( aArray1, aArray2 )
Replies: 5
Views: 302

Re: RC to PRG generator

vilian wrote:Where could i find file windows.h ?


The C compiler provides it
by Antonio Linares
Thu Feb 15, 2024 1:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1204

Re: Mr. Rao, refresh a Tree

This improved sample provides ADD, EDIT and DELETE #include "fivewin.ch"#include "dbcombo.ch"REQUEST DBFCDXstatic oMarcas, oModelosfunction Main()   local oCn, oRs, cSql   local oDlg, ...
by nageswaragunupudi
Tue Feb 13, 2024 12:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, refresh a Tree
Replies: 21
Views: 729

Re: Switching my setup program to webview2

Dear Antonio, I send the image to ChatGPT and ask if ChatGPT recognizes any text in the picture. Then, when ChatGPT provides the answer, I ask it to create an HTML program with a dialog for me. It's actually hard to believe that there are no converters like rcToHtml, but I couldn't ...
by Otto
Sat Feb 10, 2024 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 411

Re: IS IT POSSIBLE TO MAKE THIS CONTROL

Dear Tim,

I fully agree with you

WebView is opening new possibilities but users should not be forced to use it

FWH provides a Class TSwitch that includes a ::lOvalStyle
by Antonio Linares
Fri Feb 09, 2024 7:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IS IT POSSIBLE TO MAKE THIS CONTROL
Replies: 16
Views: 816

Re: RAO advice on using Mysql

... the last 100 records. If the user wants oRs:GoTo( 123040 ), then it reads 100 records around the row number 123040. As a result the class always provides the record the programmer wants without unnecessarily occupying the total memory
by nageswaragunupudi
Wed Feb 07, 2024 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 979

Re: RAO advice on using Mysql

... Anyway, the usual practice is not to open the full table but to open only the required part of a table using where clause. Still FWH RecSet class provides a fast way to open very large tables.
by nageswaragunupudi
Tue Jan 30, 2024 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 979

Re: link between PRG and RC

Dear Ruth, FiveWin provides a high level of freedom to developers so it is quite usual to find FiveWin developers organizing their work in different ways. As a general rule, the better you organize and structure your project, the easier ...
by Antonio Linares
Mon Jan 29, 2024 9:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: link between PRG and RC
Replies: 20
Views: 1706

Re: HarbourWave - leaked information

... about a project called 'HarbourWave.' It seems that this project is in development, but little was known about it so far. The leaked information provides some insights into the goals and potential applications of HarbourWave, but much remains in the dark. I plan to further explore this information ...
by Silvio.Falconi
Sun Jan 28, 2024 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HarbourWave - leaked information
Replies: 7
Views: 907

HarbourWave - leaked information

... about a project called 'HarbourWave.' It seems that this project is in development, but little was known about it so far. The leaked information provides some insights into the goals and potential applications of HarbourWave, but much remains in the dark. I plan to further explore this information ...
by Otto
Sat Jan 27, 2024 8:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HarbourWave - leaked information
Replies: 7
Views: 907

Re: Consuta sobre MariaDB/MySql

FW provides 2 cloud servers for use and testing by our users and our own development team. 1) Bluehost: oCn := maria_Connect( "208.91.198.197:3306,fwhdemo,gnraofwh,Bharat@1950" ) 2) Vulter.com oCn := maria_Connect( ...
by nageswaragunupudi
Wed Jan 24, 2024 12:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consuta sobre MariaDB/MySql
Replies: 8
Views: 470

Re: Nages, 2 diferent Db's update

... [where <cond>]" // returns array of values)oRemoteServer:Upsert( cTable, nil, aData ) In addition to INSERT and 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( ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 723
Next

Return to advanced search