Search found 97 matches: validation

Return to advanced search

Re: Question about xBrowse

Now how do I know the new value after editing the cell? oCol:Value Notes: Do not use this for validation. This is called when the modified data is already written and also if the old data is different from the new data written. This codeblock is meant for taking consequential ...
by nageswaragunupudi
Mon Aug 21, 2023 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xBrowse
Replies: 6
Views: 283

IF ! EDITVARS "check" Type "L"

hi i have use EDITVARS which work fine with Type "C" and "N" now i have add a Type "L" and "validation" fail if it is .F. but Type "L" can´t be "empty" as it have only .T- and .F. so it is always VALID --- is it possible to use ...
by Jimmy
Mon Jul 24, 2023 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IF ! EDITVARS "check" Type "L"
Replies: 2
Views: 249

Filling Excel Sheet Via OLE

I am filling out an Excel document provided to me from a Government entity. This sheet performs many validations and calculations upon entering the data. When I fill out the sheet via OLE it does not seem to trigger the validation or calculations, but if I open it and type ...
by byron.hopp
Thu Feb 02, 2023 12:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filling Excel Sheet Via OLE
Replies: 2
Views: 247

Re: Leer Excel grande a un array o DBF

... of code, reads data from the open excel file and write to the dbf. In the above case it took about 35 seconds. This function also does some basic validation of data types and suitable data type conversions. https://imagizer.imageshack.com/v2/xq90/924/Wk3TKm.png
by nageswaragunupudi
Thu Feb 10, 2022 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Leer Excel grande a un array o DBF
Replies: 9
Views: 756

Re: Campos empaquetados en archivo de texto

... { intermediate = hi + carry; hi = intermediate & 0xffffffff; carry = intermediate >> 32; // carry should never be non-zero. Back up with validation } } } return new Decimal((int)lo, (int)mid, (int)hi, isNegative, (byte)scale); } private int nibble(byte[] inp, int nibbleNo) { int b = inp[inp.Length ...
by El Loco
Wed Oct 13, 2021 3:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Campos empaquetados en archivo de texto
Replies: 47
Views: 3006

Re: OT : Problem with this forum?

... length (in days): = 0 Number of days after which persistent login keys are removed or zero to disable. Validate browser: = Yes Enables browser validation for each session improving security. if all these are turned on and you still have problems then it is a security setting in/on your computer ...
by Marc Venken
Wed Apr 07, 2021 8:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT : Problem with this forum?
Replies: 65
Views: 4898

Re: Manual Mercury - Listo !

damianodec,

In order to use Mercury use this version of modharbour -> https://modharbour.app/compass/bin/modharbour.zip

The latest version is pending validation.

Thank you.
C.
by Carles
Wed Jul 08, 2020 7:25 am
 
Forum: mod_harbour
Topic: Manual Mercury - Listo !
Replies: 26
Views: 4511

Re: TWeb for mod Harbour is ready

Taavi,

Html has the onchange event that allows you to execute a javascript function. That function you could easily test your validation and if it does not meet the condition put the focus again in the field. I'll look at simulating it ...
by Carles
Tue May 26, 2020 10:48 am
 
Forum: mod_harbour
Topic: TWeb for mod Harbour is ready
Replies: 17
Views: 2749

Re: Facial recognition

... fingerprint data or the data obtained by the camera for facial recognition, and a second application called server , which is what performs the validation. They recommend that obviously both applications are on different computers, but it is true that you can have both applications on the same ...
by cnavarro
Thu Oct 10, 2019 6:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Facial recognition
Replies: 4
Views: 857

Re: In xbrowse valid is Executed twice

... = .T. and bEditValid suppose the item code column is unique, we can paste the same code data in each row. Then how can we control the data validation of line 2 or the next (from the last paste) so that the same data cannot enter because it has been registered in xbrowse using bEditValid ...
by Mulyadi
Fri Jun 14, 2019 1:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: In xbrowse valid is Executed twice
Replies: 6
Views: 1182

Re: Folderex not refresh sometimes

to avoid the bad behavior you mentioned, I do not use WHEN .F. or DISABLE (). I do all the validation in the button action.
by MGA
Mon Jan 07, 2019 12:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Folderex not refresh sometimes
Replies: 3
Views: 898

Re: Example Business Object (Customer)

... => 'Jurídica',            'F' => 'Física',        ];    }}  $Fillable are the fields the app is able to change, rules are the validation rules to apply in creating or editing, and then bancos, solicitudes and agrupacion are the relations among entities, so given a Client $client, ...
by Carlos Mora
Wed Nov 21, 2018 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Example Business Object (Customer)
Replies: 32
Views: 8526

Re: MariaDB RS AppendBlank

... and you need not do this check again at server-level. You may also consider using stored procedures to handle data updates and inserts with data validation. Primarily, you better use table design itself to implement as many integrity checks as possible. You are using MariaDB, which supports CHECK ...
by nageswaragunupudi
Wed Sep 12, 2018 3:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB RS AppendBlank (SOLVED)
Replies: 12
Views: 1664

Re: Update FWH programs via SQL-database?

... the app. And renaming is allowed in case the exe is being executed, but deleting is not always an option. If possible, add some kind of binary validation to the download, like checking the md5 on the new file. Security is never enough! KR
by Carlos Mora
Tue Aug 21, 2018 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Update FWH programs via SQL-database?
Replies: 15
Views: 2756

Re: Update FWH programs via SQL-database?

... At this point we need to call a third program, Updater.exe that will do: - First, check that NewVersion.exe Exists. If posible, do a checksum validation if possible. - Rename Current.exe to something else like OldExe+CurDate() - Rename NewVersion.exe to Current.exe - Launch Current.exe and ...
by Carlos Mora
Mon Aug 20, 2018 10:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Update FWH programs via SQL-database?
Replies: 15
Views: 2756
Next

Return to advanced search