Search found 31 matches: unlocking

Return to advanced search

Re: Forcing to unlock a record

... there is another way to handle your problem, but it is a bit complicated. Instead of the program locking a record when a user opens it and only unlocking it when the record is saved, the record is only locked for a split second when the record saved. Thus, nobody can walk away leaving a record ...
by James Bott
Thu Dec 01, 2022 1:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Forcing to unlock a record
Replies: 10
Views: 786

Re: no PHP on the APACHE web server

Dear Otto,

DBFs accesses on the web are managed by Harbour (and mod_harbour) the same way as on a LAN (shared access and record locking, unlocking)

So we have the same limitations that we have on a desktop EXE working on a LAN regarding the use of DBFs: almost none :-)
by Antonio Linares
Tue Aug 24, 2021 4:15 pm
 
Forum: mod_harbour
Topic: no PHP on the APACHE web server
Replies: 6
Views: 709

Re: Backup - switchable hub

... if there is a USB HUB where you need a password to unlock the port. ykushcmd.exe -d 3 PW xxxtest Without knowing the PW or the serial number, unlocking should not be possible. To copy ykushcmd.exe and start on the PC should not be enough. From Yepkit Technical Support: That can be implemented ...
by Otto
Tue Jul 02, 2019 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Backup - switchable hub
Replies: 6
Views: 1162

Re: To Nages : Explain me how I must make this tdatabase

... keep confusing the issue of converting to multi-user with using database objects. Database objects do handle opening in shared mode, locking and unlocking records with automatic-retrys, etc. that are needed for multi-user apps. But there are other issues, such as reindexing, zapping, and packing ...
by James Bott
Wed Mar 06, 2019 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Explain me how I must make this tdatabase
Replies: 18
Views: 3313

Re: A problem with TDatabase using copy() / Past()

... Where is the need to write the unnecessary code to Lock, Save and Unlock()? How do you think FWH releases methods without inbuilt locking and unlocking? FWH methods are simple to use. It is simpler and safer to use the methods as they are provided. Kindly do not complicate them with such unnecessay ...
by nageswaragunupudi
Thu Jan 31, 2019 2:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem with TDatabase using copy() / Past() ?
Replies: 7
Views: 1167

Re: questions manage dbf

Silvio,

As I mentioned in my post in another thread of yours, you really need to start using database objects. All of these problems will go away.

No more dealing with workareas, locking/unlocking, committing, opening and closing files, etc.

James
by James Bott
Thu Oct 04, 2018 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions manage dbf
Replies: 17
Views: 3833

New FTDN February/Febrero 2017 (FWH 17.02)

... is changed or not and accordingly decides to refresh browse or row. So now it is enough to call RefreshCurrent() after editing. - Now, locking and unlocking actions of browse do not disturb any file or record locks ( flock() / dbrlock(nrec) ) already placed by the programmer. Also, now internal ...
by Antonio Linares
Fri Feb 24, 2017 12:37 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2017 (FWH 17.02)
Replies: 2
Views: 2107

Re: Looking for cliparse.zip / Buscando cliparse.zip

... static variables. The CVM uses two different Clipper arrays for this purpose. f.. The memory: Responsible for allocating, reallocating, locking, unlocking and freeing memory. It also organizes garbage collection. It directly connects to the Windows API memory management functions. This subsystem ...
by Antonio Linares
Mon Oct 24, 2016 7:50 am
 
Forum: Off Topic / Otros temas
Topic: Looking for cliparse.zip / Buscando cliparse.zip
Replies: 6
Views: 2297

Re: How to convert snippet for TCBrowse into XBrowse

... to Edit. We just indicate to xbrowse which columns we want to edit. XBrowse automatically handles editing, saving to database (include locking and unlocking) and refresh the current row. In case we modify a sorted column, xbrowse decides that a full refresh is required. If we are displaying totals ...
by nageswaragunupudi
Thu Jun 30, 2016 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to convert snippet for TCBrowse into XBrowse
Replies: 1
Views: 482

Re: Insertar registro dentro xBrowse...

... If no record identifier is passed to the function, DbRUnlock() bahaves like DbUnlock() since all active record locks are released. Locking and unlocking one or more records for shared write access is the task of DbRlock() and DbRUnlock(), while RLock() works with the current record and DbUnlock() ...
by ACC69
Thu Apr 07, 2016 5:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar registro dentro xBrowse...
Replies: 16
Views: 6192

Re: Insertar registro dentro xBrowse...

... If no record identifier is passed to the function, DbRUnlock() bahaves like DbUnlock() since all active record locks are released. Locking and unlocking one or more records for shared write access is the task of DbRlock() and DbRUnlock(), while RLock() works with the current record and DbUnlock() ...
by RSalazarU
Sat Mar 05, 2016 3:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar registro dentro xBrowse...
Replies: 16
Views: 6192

Re: Pasar de Browse de Hernan a xBrowse

... pressing any key invokes inline edit. If not, the user can start edit first by pressing ENTER key. The entire process of editing the cell, locking/unlocking of the table, saving data and refreshing the browse is all automatic. After testing this sample, you may then extend this sample to your DBFs ...
by nageswaragunupudi
Sun Mar 22, 2015 2:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pasar de Browse de Hernan a xBrowse
Replies: 11
Views: 2406

Re: use FLOCK()

... ago. I can't find it in my notes, but as I remember it the way was to record the file and user in a DBF when locking and remove the record when unlocking. The problem comes if there is a crash when it is marked locked--it will remain marked as locked when the app is restarted. By "marked ...
by James Bott
Thu Jan 29, 2015 3:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: use FLOCK()
Replies: 24
Views: 6097

Re: Copy or paste one record

... way: DBGOTO( 100 )h := FW_RecToHash()DBGOTO( 200)FW_HashToRec( h )  The function takes care of locking and unlocking automatically. We can also copy selected fields DBGOTO( 100 )h := FW_RecToHash( "FIRST,CITY,SALARY" )DBGOTO( ...
by nageswaragunupudi
Fri Jan 16, 2015 2:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy or paste one record
Replies: 12
Views: 5476

Re: A Solution of Software-protection still needed ?

... The customer then sends me their serial number. At that time I am enter the serial number in another program that I developed and it creates an unlocking code which is sent back to the user. They enter it in the space provided and then they get unlimited use of the program. The programing was ...
by hag
Tue Sep 16, 2014 8:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A Solution of Software-protection still needed ?
Replies: 5
Views: 1739
Next

Return to advanced search