Search found 72 matches: safer

Return to advanced search

Re: FWMARIA TOEXCEL ERROR FREEZEPANES

It appears you are using
Code: Select all  Expand view
oRowSet:ToExcel()

of FWMaria lib.
We will now include this code in TRY/CATCH block for future.

But we advise you to use oBrw:ToExcel() which is safer.
by nageswaragunupudi
Sat Apr 06, 2024 2:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWMARIA TOEXCEL ERROR FREEZEPANES
Replies: 3
Views: 3256

Re: Listview Unicode for CLASS TGrid()

... https://learn.microsoft.com/en-us/windows/win32/api/stringapiset/nf-stringapiset-widechartomultibyte It is safer to use FWH built-in functions to make properly working Unicode library.
by nageswaragunupudi
Wed Aug 30, 2023 2:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 410

Re: Sql Filter between two dates - ADO

... If you are working with Microsoft SQL oRs:Filter := "LDATE >= '2023-01-01' AND HDATE < '2023-02-01'" Note: It is safer to use "HDATE < (date + 1 )" than "HDATE <= (date)", because many RDBMS use datetime fields. How to easily generate ...
by nageswaragunupudi
Sun Jun 25, 2023 3:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sql Filter between two dates - ADO
Replies: 3
Views: 345

Re: HASH vs single variables

Hello friends, I have been using a static hash variable for some time now to partially replace local variables. It somehow feels safer to me when making changes to old source code. I don't need to declare the variables. I simply assign a value to the key, and then I have access to it throughout ...
by Otto
Wed Jun 07, 2023 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HASH vs single variables
Replies: 15
Views: 1095

Re: to Excel : using Array and "paste" it

... works with some languege installations of Excel, we need to write as "A1;D9" for some other language installations. So, it is safer to write it as : oRange := oShee:Range( oSheet:Cells( 1,1 ), oSheet:Cells( nLastRow, nLastCol ) ) 
by nageswaragunupudi
Sun Apr 23, 2023 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Excel : using Array and "paste" it
Replies: 3
Views: 271

Re: (DOS Error -2147418111) WINOLE/1009 No exported method: LAN

Mr. Rao any news about this.

nageswaragunupudi wrote:
This error comes randomly

Surprising.

Anyway, we will try to make the function ExcelLangID() in olefuncs.prg safer.
We will get back on this subject.
by artu01
Wed Dec 07, 2022 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: (DOS Error -2147418111) WINOLE/1009 No exported method: LAN
Replies: 10
Views: 813

Re: ¿Qué tan seguro es un .EXE Harbour?

karinha wrote:Master Enrico, I respect your opinion. Mine is that PECOMPACT even in older versions is much safer than UPX.exe.


What do you mean with "much safer". Much safer in what?
by Enrico Maria Giordano
Tue Nov 22, 2022 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Qué tan seguro es un .EXE Harbour?
Replies: 14
Views: 1227

Re: ¿Qué tan seguro es un .EXE Harbour?

... don't see any reason to use PECOMPACT instead of UPX. Master Enrico, I respect your opinion. Mine is that PECOMPACT even in older versions is much safer than UPX.exe. Only my opinion. I'm very happy with it, and I won't go back to UPX.exe at all. hahahahahaha. Maestro Enrico, respeto su opinión. ...
by karinha
Tue Nov 22, 2022 1:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Qué tan seguro es un .EXE Harbour?
Replies: 14
Views: 1227

Re: (DOS Error -2147418111) WINOLE/1009 No exported method: LAN

This error comes randomly

Surprising.

Anyway, we will try to make the function ExcelLangID() in olefuncs.prg safer.
We will get back on this subject.
by nageswaragunupudi
Tue Nov 01, 2022 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: (DOS Error -2147418111) WINOLE/1009 No exported method: LAN
Replies: 10
Views: 813

Re: Number of Fields

Hi,
I think DBF is not the future .

It is safer to use SQL with Access or MySQL or MS SQL

SQL is very very faster than DBF .

Have a good day ,

Philippe from Belgium
by Jack
Thu Oct 07, 2021 10:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number of Fields
Replies: 9
Views: 886

Re: patternlock

Dear Otto,

I think that 4 x 4 dots would be safer

Android uses it (I would say it is 4x4 also)
by Antonio Linares
Sun Aug 22, 2021 10:32 am
 
Forum: mod_harbour
Topic: patternlock
Replies: 3
Views: 561

Re: Question about WinExec()

... I want to make my WINHOTEL extensions in the future with mod harbour since we can access the same databases. Thanks again. The call is much safer now. No bat-file - which you can change - in between. Best regards, Otto https://mybergland.com/fwforum/fwhandmh1.gif
by Otto
Wed Apr 21, 2021 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about WinExec()
Replies: 10
Views: 781

Re: Set Filter in Tdatabase/tdata

... If you do it the right way, you get the right results. At least now discontinue the unsafe practice of using ctod(). Change to STOD() which is safer or use {^ dd/mm/yyyy }. You will save a lot of your time.
by nageswaragunupudi
Mon Apr 19, 2021 12:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Set Filter in Tdatabase/tdata
Replies: 6
Views: 679

security through obfuscation

Hello friends,
Is it possible to setup APACHE that only prg files are executed?
I think a web server would be safer this way, because relatively few people know how to create prg pages.
Best regards,
Otto
by Otto
Mon Nov 30, 2020 9:13 am
 
Forum: mod_harbour
Topic: security through obfuscation
Replies: 0
Views: 201

Re: multi-dimensional array

aEval would be safer. Think of aArray := { 1, 2, { 1, 2, 3 }, 4}
by ADutheil
Mon May 11, 2020 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: multi-dimensional array
Replies: 3
Views: 445
Next

Return to advanced search

cron