Search found 744 matches: null

Return to advanced search

Re: App Termination and Relaunch.

... a. `ShellExecute`: ```cpp #include <Windows.h> int main() { // Terminate the current instance // Relaunch the application ShellExecute(NULL, L"open", L"your_app.exe", NULL, NULL, SW_SHOWNORMAL); return 0; } ``` In this example, replace `"your_app.exe"` ...
by Antonio Linares
Fri Oct 06, 2023 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 455

Consultando una api

... NACIONAL DE ADUANAS Y DE ADMINISTRACION TRIBUTARIA - SUNAT","nombreComercial":null,"telefonos":[],"tipo":null,"estado":"ACTIVO","condicion":"HABIDO","direccion":"AV. ...
by lubin
Thu Oct 05, 2023 6:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consultando una api
Replies: 1
Views: 293

Re: eMail with html

... the body of the e-mail (and not include the attachment). --- Officially, Simple MAPI does not support HTML. If you however set the message body to NULL (not just an empty string), and the very first attachment is an HTML file, the outgoing message will be HTML populated from the atttachment data. ...
by Jimmy
Sun Sep 24, 2023 9:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMail with html
Replies: 2
Views: 275

Re: Convert

...  ? Eval( b )  But, this works with xHarbour but not with Harbour. With Harbour, no errors but HB_Serialize() returns a NULL string.
by nageswaragunupudi
Wed Sep 06, 2023 1:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert
Replies: 7
Views: 605

Re: Execute php or vbs code

Enrico Maria Giordano wrote:Right. Try libcurl.lib from FWH lib directory.


Good, no error, but in execution gives: Unrecoverable error 9011 - hb_xfree called with null pointer
Thank you!
by wartiaga
Sat Sep 02, 2023 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1239

Re: Incluyendo el SQLRDD

... before dbUseArea() or dbCreate(). This function is also very useful when we want to open tables not created by SQLRDD, but we can use another not null character column for that purpose.
by carlos vargas
Fri Aug 25, 2023 1:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2954

Re: XBROWSE ERROR

... Yes..! there is wrong in the code , I am passing GET Control as oBrw:oSeek = oGet something like and the variable of GET in some cases its becomes NULL that's why the error is coming. By the way XBROWSE Seeking RECORD operations prevents letters to type to make properly need to press backspace ...
by shrifw
Tue Aug 08, 2023 7:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE ERROR
Replies: 5
Views: 428

Peticion POST a xHarbour

... "UTF-8") + "&numregion=" + URLEncoder.encode("52", "UTF-8"); URL url; HttpsURLConnection conexion = null; try { //-----------------------CREAR CONEXION---------------------------- url = new URL(urlRequest); conexion = (HttpsURLConnection)url.openConnection(); ...
by servicomver
Mon Jun 05, 2023 11:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Peticion POST a xHarbour
Replies: 3
Views: 442

Re: Problem with xBrowse

Mr. Rao:

Could you please add the HDR_SUC column and with LEFT JOIN access the BRANCHES table to obtain the name of the branch
and display it in the BROWSE?

In an input movement the HDR_SUC column must be null

With best regards
by Armando
Wed May 31, 2023 12:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2435

Re: Problem with xBrowse

... contains the number of the destination branch, it is not the In the case of entries, there is no destination branch, for this reason the field is Null The funny thing is that just reversing the order in which the records are written, output first and after input, everything works fine. Also, if ...
by Armando
Sun May 28, 2023 2:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2435

Re: Antonio, tu ayuda por favor

Jesús: Gracias, el problema sigue igual, grabando o no el Null. Quitando el LEFT JOIN a la tabla sucursales, el problema se soluciona, peroooo necesito mostrar el nombre de la sucursal en el Browse. Empiezo a pensar que puede ser un pequeño bug en la ...
by Armando
Fri May 26, 2023 9:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio, tu ayuda por favor
Replies: 5
Views: 434

Re: Antonio, tu ayuda por favor

... HDR_SUC que contiene el número de la sucursal destino, no es el caso de las entradas, ahí no hay sucursal destino, por esta razón el campo es Null https://i.postimg.cc/Dz3zWj02/Clip1.jpg Lo curioso es que con solo invertir el orden en que se graban los registros, primero la ...
by Armando
Fri May 26, 2023 4:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio, tu ayuda por favor
Replies: 5
Views: 434

Re: ChatGPT

... \r\n4. S52.532A - Fracture of shaft of right ulna, initial encounter for closed fracture", "index": 0, "logprobs": null, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 417, "completion_tokens": 113, "total_tokens": ...
by reinaldocrespo
Tue May 09, 2023 9:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ChatGPT
Replies: 19
Views: 1380

a cuestas con sql server

Estimados compañeros buenos dias molesto su atencion con un tema que me esta produciendo dolores de cabeza tengo una instalacion con ads server y tablas DBF en esta instalacion debo cargar cada noche miles de registros a una base de datos sql server ( ese sql esta en el mismo server ) el caso es que...
by wilsongamboa
Tue Apr 11, 2023 11:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: a cuestas con sql server
Replies: 4
Views: 433

Re: Sending HTML using MAIL

... by applications that do not handle interpersonal messages. If your application handles interpersonal messages, set the lpszMessageType member to NULL or set it to point to an empty string. I have asked to chatGPT and got this: lpszMessageType is a string parameter that specifies the message type ...
by Antonio Linares
Wed Apr 05, 2023 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending HTML using MAIL
Replies: 10
Views: 777
PreviousNext

Return to advanced search