Search found 735 matches: provides

Return to advanced search

Re: Editar celdas en xbrowse

... ADO with MSSQL (Microsoft SQL). Right? We can not say why are you not able to save, unless we test your program at our end. For this purpose, FWH provides an MSSQL server in the Cloud. You can connect to this server by calling oCn := FW_MSSQLDB You can upload or create small sample tables of your ...
by nageswaragunupudi
Fri Sep 01, 2023 9:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Editar celdas en xbrowse
Replies: 7
Views: 561

FWH2308: ShowXLSX( cfileXLSX )

FWH provides a new function FW_ShowXLSX( cXlsxFile ) to read and display an XLSX file, on any PC, without installing Excel() or downloading and installing any additional OLEDB providers like ACE or any other software ...
by nageswaragunupudi
Fri Aug 25, 2023 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH2308: ShowXLSX( cfileXLSX )
Replies: 7
Views: 738

Re: Mr. Rao, more about xBrowse

... uOldVal| VerSaldo(uOldVal) }      oCol:bEditValid := { | oGet | Valida(oGet:VarGet())}next oCol XBrowse provides a much easier way. No need for using "for each oCol in :aCols" or "AEval( :aCols.", etc. WITH OBJECT oBrw      :bOnPreEdits ...
by nageswaragunupudi
Tue Aug 22, 2023 12:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 558

Re: Saving OuterHTML using Await Implementation with TWebView

... to capture results, the program achieves synchronous-like behavior by waiting for specific results before proceeding. In summary, this program provides a way for developers familiar with synchronous programming to interact with the inherently asynchronous TWebView control by emulating synchronous ...
by CharlesKwon
Thu Aug 17, 2023 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1659

Re: Saving OuterHTML using Await Implementation with TWebView

... to capture results, the program achieves synchronous-like behavior by waiting for specific results before proceeding. In summary, this program provides a way for developers familiar with synchronous programming to interact with the inherently asynchronous TWebView control by emulating synchronous ...
by Otto
Thu Aug 17, 2023 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Saving OuterHTML using Await Implementation with TWebView
Replies: 24
Views: 1659

Re: XBROWSE ERROR

So if you want to use Get, define Get properly. What XBrowse natively provides is incremental Seek/Filter. That means, as and when the user presses a key, the seek/filter is performed. Many users like this feature, But if you reject this feature and use a Get ...
by nageswaragunupudi
Tue Aug 08, 2023 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE ERROR
Replies: 5
Views: 390

Re: xHarbour Commercial and latest FWH

Dear Randal, xHarbour provides a function LoadLibrary() that returns a pointer, thats why we modified dll.ch to check if a pointer is returned and then we turn it into a number. When you link FWH dll.c then you are using FWH LoadLibrary() ...
by Antonio Linares
Tue Aug 08, 2023 4:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour Commercial and latest FWH
Replies: 3
Views: 359

Re: Error p/generar EXE usando UHTTPD2 en Windows

... their first clients to sell their solutions. They are happy with the speed (which does not mean lack of effort) of having achieved their goal. UT provides a quick solution with minimal programming that at the same time allows you to gradually assimilate, if you need it, all the other languages. ...
by Carles
Mon Aug 07, 2023 7:57 am
 
Forum: mod_harbour
Topic: Error p/generar EXE usando UHTTPD2 en Windows
Replies: 12
Views: 1936

Re: Create help system with F1

... of your help file. 7. Customize appearance: You can customize the appearance of your help file by modifying the style and layout. Help Workshop provides options to change fonts, colors, and other visual elements. Use the "Project" menu to access these customization options. 8. Compile ...
by Antonio Linares
Tue Jul 11, 2023 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 871

Re: Create solid color bitmap array

... BMP editor that will allow me to simply change the existing color to the value I need. I have a few tools but none of them want to cooperate. FWH provides the best tool, i.e., the function FW_MakeYourBitmap(...) function ColorBmps()   local aColors  := { CLR_HRED, CLR_HGREEN, CLR_HBLUE ...
by nageswaragunupudi
Tue Jul 11, 2023 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create solid color bitmap array
Replies: 6
Views: 325

Re: Webview question

Dear Otto,

> I believe that WebView2 provides me with more flexibility to work on the desktop. With it, we can develop screens using HTML/JS without the need for a web server

web and desktop working in better harmony :-)
by Antonio Linares
Tue Jul 04, 2023 3:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webview question
Replies: 36
Views: 2932

Re: Webview question

... | hb_jsondecode(cJson, @hPost), xbrowse(hPost), oWebView:Return(cCalls, 0, "{ 'result': 'Hello from PRG' }") }. I believe that WebView2 provides me with more flexibility to work on the desktop. With it, we can develop screens using HTML/JS without the need for a web server. Best regards, ...
by Otto
Mon Jul 03, 2023 9:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webview question
Replies: 36
Views: 2932

Re: use Result of SQL Query like "ADODB.Recordset"

... we always connect to MySql servers with ODBC drivers only with the above syntax: Still if you want to use ODBC directly and not through ADO, FWH provides enough classes and they did work for me with Oracle longtime ago. Note: I never tried 64 bit ODBC driver
by nageswaragunupudi
Sat Jul 01, 2023 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: use Result of SQL Query like "ADODB.Recordset"
Replies: 4
Views: 348

Re: use Result of SQL Query like "ADODB.Recordset"

Do you mean you want to connect using ODBC driver natively and not through ADO? You can do it, though it is a thing of the past. FWH provides todbc.prg and todbcrdd.prg and more You can also test TOdbcDirect class in tdbodbcd.prg To be honest, I tested TOdbc class of FWH some decades back ...
by nageswaragunupudi
Fri Jun 30, 2023 12:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: use Result of SQL Query like "ADODB.Recordset"
Replies: 4
Views: 348

Re: FiveDBU ODBC and PostgreSQL

your ODBC Driver begin with "Provider" but psqlODBC Driver begin with "Driver" Micorsoft provides a Provider "MADASQL" for using ODBC drivers with ADO. If we want to use an ODBC driver with ADO, we SHOULD prefix "Provider=MADASQL;" before ...
by nageswaragunupudi
Wed Jun 28, 2023 8:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveDBU ODBC and PostgreSQL
Replies: 8
Views: 514
PreviousNext

Return to advanced search