Search found 57 matches: workareas

Return to advanced search

FWAddLanguage(), FWMissingStrings(), FWSaveStrings()

... open", }, ; { "Recent ODBC connections", }, ; { "Recent ODBC connections strings", }, ; { "Sets", }, ; { "Workareas", } ; } ) it is from FiveDBU.EXE. what does it mean :?: FWAddLanguage() how does it work :?:
by Jimmy
Tue May 16, 2023 4:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWAddLanguage(), FWMissingStrings(), FWSaveStrings()
Replies: 0
Views: 165

Re: View deleted records in xBrowse

Though SET DELETED ON/OFF is a global setting effecting all WorkAreas, it is still possible to do what you want. There are several ways. I will be posting a few samples soon. Please wait.
by nageswaragunupudi
Wed Dec 14, 2022 6:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: View deleted records in xBrowse
Replies: 8
Views: 703

DBF: ROLLBACK (built-in feature)

... more than one record in the same workarea. If we want to modify more than one record in the same dbf, we need to open the same dbf in different workareas This is not difficult. I successfully used transaction tracking with DBFs.
by nageswaragunupudi
Sat Sep 10, 2022 4:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF: ROLLBACK (built-in feature)
Replies: 1
Views: 350

Re: Speedtest DBF vs. LetoDB and mySQL

... this - several instances are opened. To test this, I opened the opendbf-test.exe several times. Each program opens the database 2000 times in 2000 workareas. There are 10,000 open workareas in total. Access via the Internet remains as fast as ever. I think it will remain the same if you consume ...
by Otto
Mon Oct 18, 2021 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Speedtest DBF vs. LetoDB and mySQL
Replies: 22
Views: 1779

Re: Installation of mod_harbour as module or fastcgi handler

... only ONE virtual machine for ALL requests. It is built using "multi-threading" so it can attend lots of customers but they ALL share the workareas, the public variables, the global symbol table, etc. This can be very "weak" for security reasons and messy to be properly coded: ...
by Antonio Linares
Fri May 28, 2021 5:04 pm
 
Forum: mod_harbour
Topic: Installation of mod_harbour as module or fastcgi handler
Replies: 27
Views: 2888

Re: TDatabase Class

... create a new method OrdSetFocus() that works like you want but using OrdScope() to accomplish this. Note that you don't need to use any aliases or workareas with database objects. That is all handled automatically by the object.
by James Bott
Wed May 19, 2021 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2077

Re: TDatabase Class

... ) // where fieldname is an actual fieldname. Does that work? Also try: MsgInfo(oDBF:nArea) Note that TDatabase creates it's own unique workareas which is not going to be 9 in this case. With database objects you never deal with workareas. Your error message: Error description: Error ...
by James Bott
Wed May 19, 2021 4:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2077

Re: TDatabase Class

... have taken old code and reduced the number of lines by more than 50% using OOP. I could go on and on and on... Oh, and you never have to deal with workareas again! Tim Stone is using OOP with ADO so he may jump in with some relevant comments.
by James Bott
Wed May 19, 2021 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Class
Replies: 18
Views: 2077

Re: Marc : Conversion process and questions about it

... as a variable of the invoice class. Note also that the database objects handle finding and using a unique workarea so you never have to deal with workareas again. oInvoice:= TInvoice():new(cInvoice:ID) MsgInfo( oInvoice:oCustomer:name ) To do this the invoice object opens a copy of the oCustomers ...
by James Bott
Mon Mar 15, 2021 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Marc : Conversion process and questions about it
Replies: 30
Views: 3501

Re: Marc : Conversion process and questions about it

... ? You can use all options of the database when it is an object. One of the great things when you use an object is that you don't have to deal with workareas at all. You can even have multiple copies of the same database open at the same time, even in the function. This allows you to open a database ...
by James Bott
Sat Jan 02, 2021 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Marc : Conversion process and questions about it
Replies: 30
Views: 3501

Re: XBrowse and nomodal dialogs

You can also avoid these kinds of problems by using database objects. Every database object creates its own unique workarea and handles it internally. Thus you never have to deal with workareas.
by James Bott
Mon Oct 12, 2020 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse and nomodal dialogs
Replies: 23
Views: 1693

Re: XBrowse and nomodal dialogs

There is no need to switch workareas.
XBrowse has nothing to do with currently selected workarea.

If you still have any problem, please provide a small sample.
by nageswaragunupudi
Fri Oct 09, 2020 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse and nomodal dialogs
Replies: 23
Views: 1693

Re: XBrowse and nomodal dialogs

Yes, I'm using different workareas. But the browses are dinamically created so I can't use any alias, I need that the current workarea is the one of the browse with the focus.

Can it be done?

EMG
by Enrico Maria Giordano
Fri Oct 09, 2020 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse and nomodal dialogs
Replies: 23
Views: 1693

Re: XBrowse and nomodal dialogs

I assume you are using different workareas for different browses. We can not use same workarea in different xbrowses. Switching the xbrowses does not switch workareas (does not change the selected workarea). XBrowse is also not affected by ...
by nageswaragunupudi
Fri Oct 09, 2020 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse and nomodal dialogs
Replies: 23
Views: 1693

Re: memvar

... built into the database object. oCustomer:Name Is actually a buffer that contains a copy of the data in the NAME field. Also you never need to use workareas or aliases with database objects. Here is an example of how to build a database object for a customer database: CLASS TCustomers from TDatabase  ...
by James Bott
Fri Jul 17, 2020 10:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: memvar
Replies: 12
Views: 1328
Next

Return to advanced search

cron