Search found 399 matches: care

Return to advanced search

Re: A picture on top of the text

... A selected small image that position as a layover in a cell in the top right or top left position in order to show that these cells need extra care. This can be done with colors, but the png could also be like (DISCOUNT) image
by Marc Venken
Tue Mar 05, 2024 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A picture on top of the text
Replies: 3
Views: 168

Data exchange between PC and Android device on the same loca

... separated from the Back-End. I do not require the server-side PRG-CGI module to generate anything from the front-end (HTML), the Client will take care of that. 2.- I do not require SSL or MultiThreads since it is a TRIVIAL local website between a PC and one or two Android Devices. 3.- The Client ...
by Arturo Lopesoria
Tue Feb 20, 2024 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 540

Re: How to convert a Date to an Unix TimeStamp?

... ) FROM_UNIXTIM( nUnixTime ) Please note that in this case unix timestamp or in Seconds. Not milli seconds. We need to take care of conversions. Please note that FWH functions deal with the UnixTime in millliseconds whereas MySql functions deal with Seconds. Examples: ? oCn:QueryResult( ...
by nageswaragunupudi
Mon Jan 29, 2024 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to convert a Date to an Unix TimeStamp?
Replies: 8
Views: 487

Re: MySql vs Oracle

... Not that I am against data web access like you mentin Web on-line banking ... If you don't have to put your app on the internet .. and I do not care how diligent or you pay a hi-powered security person .. you will be a target sooner or later ... Rick Lipkin
by Rick Lipkin
Fri Jan 26, 2024 8:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql vs Oracle
Replies: 33
Views: 1428

Re: add a line in the print report

... long run, people identify and shun those who behave badly, those who are ready to trample on others for their own interests and those who do not care about other people's feelings. an advice It is easier to convey a new idea than to eliminate a deep-rooted belief. If you directly attack the deep-rooted ...
by Silvio.Falconi
Tue Dec 12, 2023 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: add a line in the print report
Replies: 8
Views: 399

Re: not ISOEM(), ISANSI() or IsUTF8()

... to set oBrw:lOemAnsi := .t. or oCol:lOemAnsi := .t. for the required columns and then export to Excel. All conversions will be automatically taken care by the FWH interface to DrXlsx. Hope we can not make it easier than this. Sample which i used have > 350000 Records but only 0,02 % have "Umlaute" ...
by nageswaragunupudi
Sat Sep 02, 2023 3:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 1923

Re: not ISOEM(), ISANSI() or IsUTF8()

Next point, in the next Version, FWH will be providing DBFTOXLSX using DrXlsx. This function will automatically take care of ANSI to UTF8 conversion.
by nageswaragunupudi
Wed Aug 30, 2023 7:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 1923

Re: Desactivar Botones en xBrowse

Thanks a Lot Mr. Rao .

take care.
by JoseAlvarez
Sat Aug 19, 2023 1:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Desactivar Botones en xBrowse
Replies: 16
Views: 703

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

... ( NOT currval() ) is used when INSERT new Record As I said in my earlier post, it is always good to have a SERIAL primary key. RDMS will take care of nextval() or currval() and it is not other botheration. RDMS will safely append even hundreds of records per second. No worries. i wonder how ...
by nageswaragunupudi
Sat Aug 05, 2023 9:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 705

Re: Compiling Harbour from source code

Dear Antonio,

I'm compiling Harbour from source code. So win-make should take care of copying all the Harbour's include directory to the HB_INSTALL_PREFIX directory. It does except some files. Anyway, Harbour is working fine at the end. I only wonder why some files are missing.
by Enrico Maria Giordano
Sat Aug 05, 2023 3:21 pm
 
Forum: Off Topic / Otros temas
Topic: Compiling Harbour from source code
Replies: 9
Views: 761

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

This a small tip about using fwlog.
No need to use var2char()

Just write
Code: Select all  Expand view
fwlog aSave

fwlog function takes care of converting the array as string.
This also works for small arrays
Code: Select all  Expand view
? aSave


I will look into the main issue and get back.
Please tell me how to find the encoding of a specific table?
by nageswaragunupudi
Thu Aug 03, 2023 7:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 705

Re: Acceder a dbf mediante ado

... be installed for using DBFs without FPT files. The default Jet OLEDB provider that comes bundled with Windows OS is enough. FWH ADO functions take care of everything for you Establishing a connection. oCn := FW_OpenAdoConnection( foldername ) Now all DBF tables (not dbfcdx tables having ...
by nageswaragunupudi
Thu Jul 27, 2023 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Acceder a dbf mediante ado
Replies: 6
Views: 370

Re: "id" for PRIMARY KEY ?

... .. if you use auto increment an attacker could force an table append or "Inject" records into your tables and the database doesn't care .. the primary keys are generated automatically .. for me I create ALL my primary keys programmatically to is someone infiltrates my database security ...
by nageswaragunupudi
Tue Jul 25, 2023 2:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "id" for PRIMARY KEY ?
Replies: 9
Views: 472

Re: "id" for PRIMARY KEY ?

... .. if you use auto increment an attacker could force an table append or "Inject" records into your tables and the database doesn't care .. the primary keys are generated automatically .. for me I create ALL my primary keys programmatically to is someone infiltrates my database security ...
by Rick Lipkin
Tue Jul 25, 2023 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "id" for PRIMARY KEY ?
Replies: 9
Views: 472

Re: PICTURE for DATE() ?

hi,
nageswaragunupudi wrote:For editing array of values with known Field Structure, please try something like this:

All picture clauses are taken care of

ok thx for the Tip
by Jimmy
Thu Jul 20, 2023 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 385
Next

Return to advanced search