Search found 1493 matches: might

Return to advanced search

Re: Update data showed in xBrowse

... column that records "modified datetime" Though it is very easy to create that kind of column using our library, I am sure most of users might not have created such column. oRowSet:Resync() // --? lChanged This method reads the current record only from the server and updates. ...
by nageswaragunupudi
Thu Sep 12, 2024 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Update data showed in xBrowse
Replies: 13
Views: 750

Re: ms teams or similar

... response: It's not directly possible to "install" a Fivewin application (with .exe and .dbf files) on MS Teams or Dropbox in the way you might install it on a local computer. These platforms are not designed to run executable files or manage local databases. However, you can use these ...
by Antonio Linares
Thu Sep 12, 2024 7:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ms teams or similar
Replies: 2
Views: 199

Re: pass parameters from bat to pgm

... -v cvalue=%cValue% ``` 3. In your .pgm file (mio.pgm), you can now access this value using the `:cvalue` syntax. Here's an example of how you might use it: ```sql -- mio.pgm SELECT :cvalue AS imported_value; ``` This will create a query that selects the value passed from the .bat file.
by Antonio Linares
Tue Sep 03, 2024 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: pass parameters from bat to pgm
Replies: 1
Views: 378

Re: Looking for links in tables

... we can use a graph traversal algorithm like Breadth-First Search (BFS) or Depth-First Search (DFS). Given the nature of your problem, BFS might be more suitable as it explores connections level by level. This solution offers several advantages: Efficiency: It uses BFS, which is optimal ...
by Antonio Linares
Mon Sep 02, 2024 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Looking for links in tables
Replies: 2
Views: 577

How to Work with FIVEWIN and Web Side by Side - An Easy Way

... record number. The PHP program itself also has a timer (JavaScript interval) that checks and updates the view. The big advantage here, even if you might lose some speed, is that you pass the data to FIVEWIN and are sure that it arrives. Even when there is a lot of work, you should take some time ...
by Otto
Tue Aug 27, 2024 9:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Work with FIVEWIN and Web Side by Side - An Easy Way
Replies: 9
Views: 1569

Re: Implementing ItsMe in a FWH-application

... involves several steps, given that ItsMe is a mobile-based authentication and digital identity service. Here's a general outline of how you might approach this integration: Understand ItsMe API: First, you need to understand how the ItsMe API works. ItsMe provides APIs for authentication, ...
by Antonio Linares
Wed Aug 07, 2024 8:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Implementing ItsMe in a FWH-application
Replies: 2
Views: 869

Database format of the future - an analogy

... the Apple Macintosh and later Microsoft Windows that the mouse became the standard input device. A hypothetical system like ChatGPT at that time might not have predicted that the mouse would revolutionize operation due to the available information and trends of the time. This is because such ...
by Otto
Fri Aug 02, 2024 8:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Database format of the future - an analogy
Replies: 1
Views: 394

Re: Problema de Xbrowse()

Looks fine.

You might have already tried. but for my sake please try once again
Code: Select all  Expand view
oRs2:MoveFirst()
XBROWSER oRs2
by nageswaragunupudi
Tue Jul 30, 2024 2:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema de Xbrowse()
Replies: 23
Views: 3053

Re: To Antonio: a begging letter

... taken over other products I use(d) and ruined every one of them. Because they are based in Europe ( Germany ), perhaps someone in that continent might have better results. Reinaldo was well know to the group in Idaho when they built the product, but is probably of no interest to the SAAS people ...
by TimStone
Mon Jul 29, 2024 8:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: a begging letter
Replies: 4
Views: 521

Re: To Antonio: a begging letter

Dear Tim,

> Perhaps someone could reach out to them to see how we might get it into Open Source

Thats a great idea. Maybe Reinaldo Crespo is the right one to try it.

I just sent him an email! :-)
by Antonio Linares
Mon Jul 29, 2024 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: a begging letter
Replies: 4
Views: 521

Re: To Antonio: a begging letter

... They do not have any form of alternative, so it would not compete with anything they offer. Perhaps someone could reach out to them to see how we might get it into Open Source. Wouldn't it be a great addition to Harbour or FWH ? It is incredibly well documented. It would not cost them anything ...
by TimStone
Mon Jul 29, 2024 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Antonio: a begging letter
Replies: 4
Views: 521

Re: Switching from memo fields to files -

... than the other methodology. I use memo fields for storing text, which includes detailed descriptions. I never use them for storing data that I might want to search. As an example, for service related invoices, I use many files: A master workorder file to track dates, totals, and other universal ...
by TimStone
Mon Jul 29, 2024 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching from memo fields to files -
Replies: 8
Views: 800

Re: Dbf/cdx to sql changing

... the SQL server provided by FIVETECH to run some tests. Am I doing something wrong here, or does accessing SQL really take that long? The server might be weak. Accessing SQL from here takes 1.12 seconds. Creating a "web xbrowser" is difficult here because navigating with over a second ...
by Otto
Wed Jul 17, 2024 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dbf/cdx to sql changing
Replies: 53
Views: 3813

Replace jQuery with JavaScript

Replace jQuery with Vanilla JavaScript Due to a modern trend of replacing jQuery with native JavaScript, you might consider this to modernize your application and reduce dependencies. Steps to Remove jQuery Analyze the Use of jQuery: Search your code for $ and jQuery to identify ...
by Otto
Tue Jul 16, 2024 7:30 am
 
Forum: mod_harbour
Topic: Replace jQuery with JavaScript
Replies: 2
Views: 3701

Re: Question about Memo Field Storage Strategy?

... rlock() and flock() seem a bit unstable on the web. It is also dangerous if the indexes are not 100% synchronized because a wrong record might be updated or deleted. I think that the file system is underutilized as a database structure. It is difficult for us older folks to rethink. I ...
by Otto
Tue Jul 02, 2024 8:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Memo Field Storage Strategy?
Replies: 3
Views: 339
PreviousNext

Return to advanced search