Search found 744 matches: null

Return to advanced search

Problema con xBrowse (RESUELTO)

... por lo tanto no se da la relación con las respectivas tablas y el xBrowse me tira un error Intente definiendo los campos UNIDAD y OPERADOR como NULL pero aún así me tira error. Alguna idea o solución? Saludos
by Armando
Mon Apr 18, 2022 5:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse (RESUELTO)
Replies: 4
Views: 581

Re: Picture para campo Time()

... do not assign any colors or other attribs to oBrw// just keep the code to the minimum.  There seems to be only one record. May be the value is NULL.
by nageswaragunupudi
Sat Mar 12, 2022 5:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Picture para campo Time() (Resuelto)
Replies: 14
Views: 1459

Re: Using WebView with Borland !!!

... Dear Silvio, Then it means that webview.dll has been properly loaded as the pointer is not null Enviado desde mi px5 mediante Tapatalk
by Antonio Linares
Fri Feb 18, 2022 5:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using WebView with Borland !!!
Replies: 91
Views: 8263

Re: Cerrar conexión MySql con TDolphin

en tdolphin, static HB_GARBAGE_FUNC( MYSQL_release ) { void ** ph = (void **) Cargo; /* Check if pointer is not NULL to avoid multiple freeing */ if( ph && * ph ) { /* Destroy the object */ mysql_close( (MYSQL *) * ph ); /* set pointer to NULL to avoid multiple freeing ...
by carlos vargas
Wed Nov 03, 2021 4:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar conexión MySql con TDolphin (Solucionado)
Replies: 8
Views: 698

Xbrowse complex export to dbf challenge...

... null,"externalQuantity":"0","quantityStep":"1","trackQuantity":"1"} Xbrowse will show that ...
by Marc Venken
Sat Oct 30, 2021 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse complex export to dbf challenge...
Replies: 4
Views: 602

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

antonio Enlace las librerias que me dices de tu distribucion y la cosa empeoro :( Embarcadero C++ 7.00 for Win32 Copyright (c) 1993-2015 Embarcadero Technologies, Inc. .\OBJ\winfacel.hrb: c:\bcc7\bin\ilink32.exe -Gn -aa -Tpe -s -I.\OBJ @make.tmp Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Em...
by rterraz
Fri Sep 17, 2021 6:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 5358

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

... #include <openssl/cms.h> HB_FUNC( HB_CMS_SIGNFILE_PFX ) { // HB_SignFile( Archivo a firmar, Archivo .pfx, clave, Archivo Firmado) BIO *in = NULL, *out = NULL; CMS_ContentInfo *cms = NULL; CMS_SignerInfo *si; int flags = CMS_PARTIAL; X509 *x509; EVP_PKEY *priKey; este es parte del codigo ...
by rterraz
Fri Sep 17, 2021 12:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 5358

Re: Facturas con consecutivos con acceso a varias terminales

... ) )   ENDIF   oQryTmp:End()RETURN nCount  CREATE TABLE `control` ( `cont_usua` BIGINT(10) UNSIGNED NOT NULL DEFAULT '0', `cont_ruta` BIGINT(10) UNSIGNED NOT NULL DEFAULT '0', `cont_cobr` BIGINT(10) UNSIGNED NOT NULL DEFAULT '0', `cont_clie` BIGINT(10) ...
by carlos vargas
Thu Aug 26, 2021 5:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Facturas con consecutivos con acceso a varias terminales
Replies: 18
Views: 1907

Re: *** Curso de C para programadores Harbour.

... either create a printer device context using the CreateDC API call: Code: Select all HDC hDC = CreateDC( _T( "winspool" ), szPrinter, NULL, lpDevMode ); Or make this configuration as the default for this printer and for all applications using this printer. DWORD dw; PRINTER_INFO_2 ...
by Otto
Mon Jul 12, 2021 8:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: *** Curso de C para programadores Harbour.
Replies: 141
Views: 19126

Re: FW_DbfSqlQuery TOP y ORDER BY ASC no funciona

Please try adding WHRE NOMBRE IS NOT NULL This code work's fine: cQuery := 'SELECT TOP 10 CODIGO,NOMBRE FROM ARTICULO WHERE NOMBRE IS NOT NULL ORDER BY NOMBRE ASC'oRs := FW_DbfSqlQuery( '.\DBF\', cQuery,,.t.)xBrowse( oRs, 'RecCount:' + ...
by VictorCasajuana
Mon Jun 28, 2021 5:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW_DbfSqlQuery TOP y ORDER BY ASC no funciona
Replies: 2
Views: 350

Re: FW_DbfSqlQuery TOP y ORDER BY ASC no funciona

Please try adding WHRE NOMBRE IS NOT NULL
by nageswaragunupudi
Mon Jun 28, 2021 4:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW_DbfSqlQuery TOP y ORDER BY ASC no funciona
Replies: 2
Views: 350

Re: Write NULL value

Mr. Rao:

Thank you very much, It Works fine.

Regards
by Armando
Wed Jun 23, 2021 5:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Write NULL value
Replies: 2
Views: 524

Re: Write NULL value

Use FWH function AdoNull()
Code: Select all  Expand view
oRs:Fields( "datefield" ):Value := AdoNull()

This works.

When a NULL value is read, oRs:Fields( xx ):Value returns NIL.
But assigning NIL does not work. Assigning AdoNull() and then calling oRs:Update() works.
by nageswaragunupudi
Wed Jun 23, 2021 5:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Write NULL value
Replies: 2
Views: 524

Write NULL value

Hello Friends. In a MySQL table I have a date type field that accepts null value, when registering the record a date type value is saved in this field, example 20210623, now how can I re-record NULL ? BTW, I write all fields with this source code STATIC FUNCTION ...
by Armando
Wed Jun 23, 2021 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Write NULL value
Replies: 2
Views: 524

Re: Una de fechas (SOLUCIONADO)

... de cabeza. Tenia yo definida la estructura de una factura en el campo D02_FECPAG de la siguiente manera "D02_FECPAG DATE             NOT  NULL  DEFAULT '0000-00-00'  COMMENT 'Fecha del pago'," +;  Obviamente cuando registraba yo la factura aún no existía una fecha de pago, el valor ...
by Armando
Wed Jun 16, 2021 8:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una de fechas (SOLUCIONADO)
Replies: 5
Views: 866
PreviousNext

Return to advanced search

cron