Search found 85 matches: conflicts

Return to advanced search

Re: phpBB to LLM

... 0.11.2 is not installable because there are no viable options ├─ torchvision 0.11.2 would require │ └─ python >=3.6,<3.7.0a0 , which conflicts with any installable versions previously reported; ├─ torchvision 0.11.2 would require │ └─ cudatoolkit >=11.3,<11.4 , which requires ...
by alerchster
Mon Dec 25, 2023 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4696

Re: hash for storing variables

... programming, although it does not encompass all aspects of OOP. Centralizing style definitions and avoiding redundancies are important to minimize conflicts and maintenance issues.
by Otto
Tue Nov 28, 2023 8:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hash for storing variables
Replies: 7
Views: 527

Re: Transaction security with DBF

If you allow me, the logic could be improved to avoid conflicts in multi-user environments. I would add a semaphore to prevent two users from performing a transaction at the same time. The semaphore can be a file on disk, a record in a dbf table, an ...
by VictorCasajuana
Wed Aug 31, 2022 9:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transaction security with DBF
Replies: 9
Views: 726

Re: MS Visual Studio

... the program in Visual Studio which is also open on my desktop. This is very quick, and of course immediately detects any errors or conflicts. Once it is built, it automatically executes the program, and I can test the changes. I can then immediately fix them in the code and rebuild ...
by TimStone
Wed Jul 06, 2022 6:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MS Visual Studio
Replies: 23
Views: 1487

Re: HARU PDF

... 15.10" #define FWDESCRIPTION "FiveWin for Harbour 64" #endif #endif #xtranslate SetCursor( => WSetCursor( // to avoid conflicts with Harbour functions #xtranslate __Keyboard( => ___Keyboard( // to avoid conflicts with Harbour functions #xtranslate LastKey( => ...
by byron.hopp
Mon Mar 28, 2022 7:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HARU PDF
Replies: 8
Views: 616

Re: Conversion from ca-clipper ( not found a variable)

... in every routine that uses them or you will get compiler warnings. Of course, since they are visible everywhere, you always run the risk of conflicts with locals and fieldnames. Note that here we are using a static variable oUser (an object). A static variable retains its value as long as ...
by James Bott
Thu Mar 10, 2022 7:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Conversion from ca-clipper ( not found a variable)
Replies: 30
Views: 4377

Re: Problem with tdatabase

Hello everybody. I use tAds that I authored, which has the same logic as tDataBase. The best way I found to resolve these types of conflicts were: 1- For sequential numbers never to be chosen by the user. 2- Auto increment or any sequential number always after rLock() In practice I use ...
by Giovany Vecchi
Sun Dec 19, 2021 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tdatabase
Replies: 14
Views: 1858

Re: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file

> library machine type 'x86' conflicts with target machine type 'x64'

Estas intentando construir un ejecutable de 64 bits usando librerías de 32 bits

Revisa samples\buildh64.bat
by Antonio Linares
Wed Jun 30, 2021 9:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file
Replies: 61
Views: 4142

Re: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file

... __cdecl __scrt_common_main_seh(void)" (?__scrt_common_main_seh@@YAHXZ) c:\fwh\lib\FiveH32.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64' c:\fwh\lib\FiveHC32.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64' ...
by Compuin
Wed Jun 30, 2021 9:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file
Replies: 61
Views: 4142

Re: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file

... __cdecl __scrt_common_main_seh(void)" (?__scrt_common_main_seh@@YAHXZ) c:\fwh\lib\FiveH32.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64' c:\fwh\lib\FiveHC32.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64' ...
by Compuin
Wed Jun 30, 2021 9:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Issue with FWH64/Harbour64/BCC7164 and Mysql.h file
Replies: 61
Views: 4142

Re: Insertar/Modificar registros en ACCESS

... before calling oRs:Close() Note: We advise you use the default mode (i.e., adLockOptimistic) till you master ADO and learn to handle resolution of conflicts while calling oRs:UpdateBatch(). This is after you gain mastery over ADO.
by nageswaragunupudi
Wed Dec 04, 2019 5:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar/Modificar registros en ACCESS
Replies: 5
Views: 869

Re: clarification respect a recordset

... users on the network. When some of the records are already modified by other users, they can not be written and the programmer has to handle these conflicts. When we open recordset in batch mode, it is not necessary to keep the connection open. We can reopen the connection while saving the changes ...
by nageswaragunupudi
Sat Aug 31, 2019 4:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: clarification respect a recordset
Replies: 14
Views: 3319

Re: Multiple languages

... my web sites (php) I use daily Poedit ( wordpress, Woocommerce,Prestashop) I would like to use this procedure in fivewin but I don't know if it conflicts with the system that Antonio Linares did. Now however many sources have the functions of antonio Fw_string () and it will be difficult to ...
by Silvio.Falconi
Thu Jul 04, 2019 8:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple languages
Replies: 5
Views: 817

Re: to Nages: test for tdatabase

Tim,

Also, one word of caution: We often use :: to reference the object but this can sometimes result in conflicts with other classes.


Hmm, I have never experienced this. Can you provide an example?

James
by James Bott
Fri May 10, 2019 6:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5707

Re: to Nages: test for tdatabase

... it will always work wherever it is applied. Also, one word of caution:  We often use :: to reference the object but this can sometimes result in conflicts with other classes.   A simple code:   ::InvoiceNo:WorkDatewithin a method would be better as: LOCAL oOrder := self oOrder:InvoiceNo:WorkDate  ...
by TimStone
Fri May 10, 2019 6:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5707
Next

Return to advanced search