Search found 29 matches: erroneous

Return to advanced search

Re: Interesting discussion with ChtGPT

... current programming "languages" with Clipper, a DOS compiler. Because it doesn't have the accurate information in its data, it gives an erroneous conclusion. Let's assume you are a new programmer, and are looking for a programming option to build an application for a client. A friend ...
by TimStone
Mon Nov 06, 2023 10:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1241

Re: Preguntas frecuentes mod_harbour

... compiled against a newer library (OpenSSL 1.1.1l 24 Aug 2021, version currently loaded is OpenSSL 1.1.1g 21 Apr 2020) - may result in undefined or erroneous behavior [Tue Oct 05 09:17:31.201842 2021] [ssl:warn] [pid 7376:tid 364] AH01909: http://www.example.com:443:0 server certificate does NOT ...
by EBM
Tue Oct 05, 2021 2:26 pm
 
Forum: mod_harbour
Topic: Preguntas frecuentes mod_harbour
Replies: 26
Views: 6424

Re: Problem with Tplan : Cargo Error

... would have the window of the program open and at the same time open the tplan . Obviously, using tdatabase in share, you may perhaps not create erroneous reading files https://i.postimg.cc/NjWBsK5V/hhh.jpg
by Silvio.Falconi
Tue Jul 02, 2019 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Tplan : Cargo Error
Replies: 26
Views: 2827

Harbour OLE/ADO Backward Compatibility Issue

... Harbour and use ADO/Excel Ole, directly or indirectly using these methods, need to be concerned about this issue. Upgrading Harbour will produce erroneous results unless the application code is carefully modified. Obviously, FWH team is working on this issue of making the library compatible with ...
by nageswaragunupudi
Tue Jan 30, 2018 3:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour OLE/ADO Backward Compatibility Issue
Replies: 6
Views: 2651

Re: FWH 17.04 : Group Labels on ButtonBars

... leaving the normal dialog background exposed. This is clearly in the calculation of the LABEL because commenting out BTNRIGHT does not change the erroneous length. 3) The 2nd line goes directly below the buttons to which it applies. However, If I use the command to send one or more buttons to ...
by TimStone
Tue May 02, 2017 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 17.04 : Group Labels on ButtonBars
Replies: 13
Views: 3956

Re: xBrowse cell edit

... available are either to lose the changes (default) or save the changes when Get loses focus. Former option is safe and second option can lead to erroneous input. This is the present behavior. And I may inform you that changing this behavior is not going to be easy.
by nageswaragunupudi
Thu Dec 22, 2016 3:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse cell edit
Replies: 13
Views: 2140

To Rick Lipkin for problem with ADO and BCC582

... have any solution to the problem of dates "T" time, when consulting with ADO to MSSQL server. My problem is that I do a query returns erroneous data types. For example:        ? oRs:Fields("FechaEmision"):Value               ==>  return blank fields  from  BD   ...
by jcaro
Wed Apr 04, 2012 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Rick Lipkin for problem with ADO and BCC582
Replies: 4
Views: 763

Acceso al ERP Infor (BaaN / LN) mediante OLE Automation

...      MsgBox("The return value is " + Baan4Obj.ReturnValue) Note:       1.The property Timeout is used to prevent blocking on erroneous calls.       2.Note that arguments to automation methods (ParseExecFunction) are not surrounded by brackets.          Note also how arguments ...
by Baxajaun
Mon Mar 26, 2012 8:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Acceso al ERP Infor (BaaN / LN) mediante OLE Automation
Replies: 0
Views: 1263

Re: XBrowse with SQLRDD

... by XBrowse while evaluating the bSeek codeblock, is the buffer including the present key stroke. Adding this buffer to the previous buffer gives erroneous results. Instead just the DbSeek( c ) should be used. While using special RDDs like SQLRDD, the following points need to be kept in mind: ...
by nageswaragunupudi
Wed Feb 10, 2010 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with SQLRDD
Replies: 3
Views: 856

xHarbour en Ubuntu 8.10

... aviso: declaración implícita de la función ‘COLOR_PAIR’ ../../gtcrs.c:2080: error: asignación de la ubicación de sólo lectura ‘<erroneous-expression>[i]’ ../../gtcrs.c:2080: aviso: declaración sin efecto ../../gtcrs.c:2082: error: ‘InOutBase’ no tiene un miembro llamado ‘attr_map’ ...
by Armando Picon
Fri Jan 15, 2010 5:36 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: xHarbour en Ubuntu 8.10
Replies: 2
Views: 1234

Re: Erroneous conversion type ADO->boolean to xBrowse->logical

Julio: Dear Armando, This is really very beautiful! Now it's work perfectly!! GREAT ! I don't use TIMESTAMP field, instead I use two fields "PRO_FDC DATE NOT NULL COMMENT 'Fecha de actualización'," +; "PRO_HRA TIME NOT NULL COMMENT 'Hora de actualización'," +; And I udpate them a...
by Armando
Mon Feb 09, 2009 9:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erroneous conversion type ADO->boolean to xBrowse->logical
Replies: 15
Views: 2730

Re: Erroneous conversion type ADO->boolean to xBrowse->logical

Armando, I have another doubt! With fields type timestamp, the xHarbour returns DATE type field... CREATE TABLE test( date_recognize timestamp not null default current_timestamp ); I resolve this using like this: SELECT date_recognize FROM test; R=2009-12-24 SELECT CAST( date_recognize AS CHARACTER ...
by JC
Mon Feb 09, 2009 7:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erroneous conversion type ADO->boolean to xBrowse->logical
Replies: 15
Views: 2730

Re: Erroneous conversion type ADO->boolean to xBrowse->logical

Armando wrote:Julio:

Please try this way

Code: Select all  Expand view
CREATE TABLE test(
   active_register bit NOT NULL default 0  //  .F.
);


Regards


Dear Armando,

This is really very beautiful!
Now it's work perfectly!!

The field must be BIT and no boolean(tinyint)

Thank you for your attention with my problem! ;)
by JC
Mon Feb 09, 2009 7:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erroneous conversion type ADO->boolean to xBrowse->logical
Replies: 15
Views: 2730

Re: Erroneous conversion type ADO->boolean to xBrowse->logical

Julio:

Please try this way

Code: Select all  Expand view
CREATE TABLE test(
   active_register bit NOT NULL default 0  //  .F.
);


Regards
by Armando
Mon Feb 09, 2009 6:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erroneous conversion type ADO->boolean to xBrowse->logical
Replies: 15
Views: 2730

Re: Erroneous conversion type ADO->boolean to xBrowse->logical

In MySQL definition:
Code: Select all  Expand view
CREATE TABLE test(
   active_register tinyint(1) NOT NULL default 0
);

If you put in this format, the MySQL convert to tinyint again :(
Code: Select all  Expand view
CREATE TABLE test(
   active_register boolean NOT NULL default 0
);


When we get this value from ADO, it's is numeric!!
by JC
Mon Feb 09, 2009 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erroneous conversion type ADO->boolean to xBrowse->logical
Replies: 15
Views: 2730
Next

Return to advanced search