Search found 518 matches: lock

Return to advanced search

Re: Data exchange between PC and Android device on the same loca

... { echo "filename:" . $filename . "csv" . "<br>"; if (file_exists( $filename . "tx" )) { echo "lock file exists" . "<br>"; } else { echo "break:" . $filename . "<br>"; $link = true; break; } } echo ...
by Arturo Lopesoria
Fri Feb 23, 2024 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 793

Re: MySql vs Oracle

... internet "Hack" Rick Lipkin Rick as always, your reflections are interesting, but you must also keep in mind that this vision makes you lock yourself in your local environment. I completely agree that the cloud, the web, ... are very dangerous scenarios, but it is for this reason that ...
by Carles
Fri Jan 26, 2024 12:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql vs Oracle
Replies: 33
Views: 1666

Re: copy a row of xbrowse

... ```harbour // Inside PopMenu Function - Modify the "Paste" Menu Item MENUITEM "Paste" WHEN !Empty( aCopy ) ACTION ( oBrw:Lock(), FOR EACH aRow IN aCopy aRow[1] := codsep, // Set new codsep aRow[8] := 0, // Reset record number or assign a new unique ID aAdd( oBrw:aArrayData, ...
by Otto
Tue Dec 05, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5787

Re: copy a row of xbrowse

... I copy insert on acopy the row I selected ( all field) change acopy[1] with new codsep MENUITEM "Paste" WHEN acopy!=NIL ACTION ( ; oBrw:Lock(), ; aCopy[ 1 ] := codsep ,; aCopy[ 8 ] := 0 ,; //recno aadd( oBrw:aArrayData, aCopy ),; oBrw:Unlock( .t. ), ; acopy:=NIL ,; oBrw:RefreshCurrent(), ...
by Silvio.Falconi
Tue Dec 05, 2023 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5787

Re: DBF . Commit

Enrico, but if you try like Mr. Rao said your sample is working for me. APPEND BLANK dbRLock() REPLACE FIELD ->test WITH "TEST" DbUnlock() Best regards, Otto #include "fivewin.ch"REQUEST DBFCDXREQUEST DBFFPTFUNCTION MAIN()    LOCAL cDbf := "MYTEST.DBF"  ...
by Enrico Maria Giordano
Sun Oct 22, 2023 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2338

Re: Parameter for Timeout

... open (stateless). But it does require extra effort and a change in thinking. I believe that in the future you won't be able to simply use a record lock or even a file lock. It would be beneficial, especially considering mod harbour, to have a standardized function: buffer and then check before ...
by Otto
Thu Sep 21, 2023 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameter for Timeout
Replies: 17
Views: 787

Re: Lost connection to MySQL server during query

... screen time out setting and or if there is a screensaver trying to kick in W10 ... right click on the desktop left click on personalize Click on Lock Screen .. scroll down to the bottom and check "screen timeout settings" then click on screen saver settings Go to the Control panel Power ...
by Rick Lipkin
Fri Aug 04, 2023 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 37
Views: 12379

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi, i wonder why not :aModiData is used for aSave *        AADD( aSave, { ::aStructPG[ nFld, 8 ], uVal } ) // wrong for UTF8 Table ???        AADD( aSave, { ::aModiData[n][1], ::aModiData[n][2] } ) --- i have "dump"...
by Jimmy
Thu Aug 03, 2023 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 718

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi,, forgot to say ; it happens when PostgreSQL Table is UTF8 it work when Table use WIN1252 wrong using UTF8 Table TDATAROW:SAVEPQQ( 1787 ) var2char(::aStructPG[1]) = "{artnr, C, 5, 0, 16820, 1, artikel, __lock_owner, NIL, NIL}" TDATAROW:SAVEPQQ( 1848 ) cSql = "UPDATE public.artikel ...
by Jimmy
Wed Aug 02, 2023 11:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 718

METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi, when try to use "existing" PostgreSQL Table i have Problem with METHOD SavePQQ() it seems to work when use FWPG_ImportFromDBF() to create a "new" SQL Table --- in METHOD SavePQQ() it is "WHERE"   FOR n := 1 TO LEN( aKey )      IF n == 1         cSql += "...
by Jimmy
Wed Aug 02, 2023 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 718

"close" FW_OpenADOExcelSheet()

... := FW_OpenAdoExcelBook( @cFile, lHeaders ) ) == nil i can "close"   objRS:Close() but *.XLSx Files seems to be "Lock" after use FW_OpenADOExcelSheet() how about "ADODB.Connection" which was called when use FW_OpenAdoExcelBook() :?:
by Jimmy
Mon Jun 12, 2023 4:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: "close" FW_OpenADOExcelSheet()
Replies: 2
Views: 171

Re: RTF Spell Checker

The other feature I would really appreciate is for the ability to lock the button bar in place at the top of the edit box. In showing a client how to use this feature they found the need to mouse to the top to activate the bar, then perform an action, was ...
by cnavarro
Wed May 24, 2023 7:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF Spell Checker
Replies: 7
Views: 408

Re: RTF Spell Checker

The other feature I would really appreciate is for the ability to lock the button bar in place at the top of the edit box. In showing a client how to use this feature they found the need to mouse to the top to activate the bar, then perform an action, was ...
by TimStone
Tue May 23, 2023 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF Spell Checker
Replies: 7
Views: 408

Re: calendar not run ( DBLCLICK)

Jimmy, if i use datepick instead of calendar then i don't get empty date. why do i need the date to be empty? because I have to lock the btnbmp control in fact the btnbmp control is active only when the data field is not empty. Do you understand now why I have to use a control other than ...
by Silvio.Falconi
Sun May 21, 2023 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: calendar not run ( DBLCLICK)
Replies: 20
Views: 1919

Re: RTF : Fully functional

Sorry, when you say "lock" the button bar, do you mean to make it always visible?
by cnavarro
Fri May 12, 2023 1:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF : Fully functional
Replies: 2
Views: 194
Next

Return to advanced search