Search found 396 matches: loaded

Return to advanced search

Re: cloud or not cloud

... string. * - php4dbf_readHeader: Reads header information from a file pointer. * - php4dbf_extractFields: Extracts field descriptions from the loaded DBF file data. * - php4dbf_readRecordByIndex: Reads a record based on the specified index. * - php4dbf_closeDbfFile: Closes an open DBF file ...
by Otto
Fri Nov 15, 2024 9:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 1120

Re: xBrowse: A Vision for a Simpler, More Flexible Future

... native JavaScript and DOM manipulation. Pagination for improved user experience and more efficient display. Dynamic Data Loading: Data will be loaded using fetch() in JSON format, which allows flexibility and independence from the data source. Avoiding Additional Libraries: Aside from Bootstrap, ...
by Otto
Wed Nov 06, 2024 9:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 237

Re: RDS (Remote Desktop) and FW programming

... 4. RAM and CPU Optimization Monitor RAM Allocation: The article inventory program might use significant RAM, depending on the amount of data loaded and processed. Regularly monitor RAM usage and ensure there’s enough free memory to keep the program running smoothly. Set Processor Affinity ...
by Marc Venken
Thu Oct 31, 2024 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RDS (Remote Desktop) and FW programming
Replies: 10
Views: 424

Re: Preview of the invoice in advance

... the data are all embedded in this HTML. There is an event handler, window.onload , to automatically call sendData when the HTML document is fully loaded. The data is sent via the local web browser to the endpoint using fetch. In the HTML, we also have an interval that queries the endpoint check_response.php, ...
by Otto
Thu Oct 31, 2024 11:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preview of the invoice in advance
Replies: 14
Views: 700

Re: TWebView vs. TWebView2

... in the same way as bOnEval is evaluated for Method Eval( cJavascript ) There is also a bOnNavigationCompleted when a URL has been completely loaded.
by Antonio Linares
Thu Oct 10, 2024 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView vs. TWebView2
Replies: 7
Views: 351

Re: Video Migration from DBF to SQL (MySQL/MariaDB) Mr. Rao

To All I know I have said this many times in this forum ... \samples\AdoRick.prg is a loaded SQL Sample on what you can do with ado sql and I created a very simple Sql backend with MS Access and use just like dbf .. I put in this sample how you can create a Sql Ms ...
by Rick Lipkin
Fri Sep 20, 2024 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Video Migration from DBF to SQL (MySQL/MariaDB) Mr. Rao
Replies: 5
Views: 329

Re: Need Help giide for my program

... program is created by us as application programmers, for example, as follows: #include "fivewin.ch" function main return How is FiveWin loaded or what is that called? Please take a look at the answer. https://mybergland.com/fwforum/fivewin.html Best regards, Otto
by Otto
Sat Jul 20, 2024 9:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need Help guide for my program.
Replies: 38
Views: 2434

PWA - Live Preview

... to install the PWA on a mobile device. Open this link with Google Chrome: https://www.modharbour.club//v2order/index.html Once the page has loaded, add it to the home screen. In the Google Chrome menu bar (button to the right of the address bar) Click on the three dots Add to Home Screen ...
by Otto
Thu Jun 06, 2024 12:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PWA - Live Preview
Replies: 1
Views: 231

PWA - Live Preview

... to install the PWA on a mobile device. Open this link with Google Chrome: https://www.modharbour.club//v2order/index.html Once the page has loaded, add it to the home screen. In the Google Chrome menu bar (button to the right of the address bar) Click on the three dots Add to Home Screen ...
by Otto
Thu Jun 06, 2024 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PWA - Live Preview
Replies: 2
Views: 449

Re: New txbrowse

... to return back i.e. to display xbrowse with the previous columns, obviously the state is saved. xbrowse's setcolumns() method has been changed and loaded at the beginning of the procedure in override mode. by doing this way I don't need to go and modify the original xbrowse class every time, so ...
by Silvio.Falconi
Mon Apr 22, 2024 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 1037

Re: Runner XBase (RX)

... _SET_DBCODEPAGE, 'EN' )            endcase  If u need a codepage, I can put it in without problems. At the moment there are only these loaded. Regards. C.
by Carles
Thu Apr 11, 2024 5:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Runner XBase (RX)
Replies: 10
Views: 1930

Re: DNS

... Unloads Winsock DLLs: When called, WSACleanup() typically unloads any protocol-specific helper DLLs (Dynamic Link Libraries) that were loaded during the initialization process using WSAStartup(). These DLLs provide support for specific network protocols like TCP/IP. Cancels Pending ...
by Antonio Linares
Fri Mar 29, 2024 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DNS
Replies: 5
Views: 1924

Re: Using Microsoft AI Phi-2 from FWH

Dear Anser,

Unfortunately this only works on 64 bits due to memory requirements as 32 bits is not able to manage memory as efficiently as 64 bits does.

The entire AI model has to be loaded in memory and 32 bits is not able to do it.
by Antonio Linares
Tue Dec 19, 2023 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 12368

Re: Saving OuterHTML using Await Implementation with TWebView

... synchronous calls using the TWebView control, typically used in an asynchronous manner. - This class allows waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in other programming ...
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: 3314

Re: Saving OuterHTML using Await Implementation with TWebView

... synchronous calls using the TWebView control, typically used in an asynchronous manner. - This class allows waiting for specific elements to be loaded on the web page, ensuring the content is available for extraction. - The idea is to simulate the 'await' functionality seen in other programming ...
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: 3314
Next

Return to advanced search