Search found 470 matches: global

Return to advanced search

Re: Propuesta para que hagan un curso virtual FW

... El patrón Singleton garantiza que una clase tenga una sola instancia. Esto es útil cuando solo necesitas un único objeto para gestionar un recurso global. CLASS Singleton CLASSDATA oInstance METHOD getInstance() ENDCLASS METHOD getInstance() CLASS Singleton IF ::oInstance == NIL ::oInstance := ...
by xmanuel
Tue Sep 10, 2024 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Propuesta para que hagan un curso virtual FW
Replies: 302
Views: 35128

chilkat windows 7 (SOLUCIONADO)

... el dll ChilkatAx-9.5.0-win32.dll correctamente pero me da el error TOleAuto/65535 : TOLEAUTO:NEW al crear el objeto CreateObject('Chilkat_9_5_O.Global') en win10 y 11 sin problemas, alguien lo tiene corriendo en win7? gracias saludos Marcelo
by Marcelo Via Giglio
Tue Sep 03, 2024 5:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: chilkat windows 7 (SOLUCIONADO)
Replies: 5
Views: 631

chilkat windows 7

... el dll ChilkatAx-9.5.0-win32.dll correctamente pero me da el error TOleAuto/65535 : TOLEAUTO:NEW al crear el objeto CreateObject('Chilkat_9_5_O.Global') en win10 y 11 sin problemas, alguien lo tiene corriendo en win7? gracias saludos Marcelo
by Marcelo Via Giglio
Tue Sep 03, 2024 5:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: chilkat windows 7
Replies: 3
Views: 530

Re: How to Curl for text messaging

curl_global_init() and curl_global_cleanup() should be called only once in the program. Throw them away from the function. Have a main function as an entry point. For example: Main(). And from that Main() entry point call curl_global_init.... then call your function as many times as needed. Then bef...
by reinaldocrespo
Tue Jul 16, 2024 9:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 23
Views: 3974

Re: How to Curl for text messaging

Here is my code, modified yours a little. Had to use my logging function. Using the Twilio API seems to work great, it the crashing of the program I can't figure out. Thanks, in advance. Line number in the hb_out.log file leads me to the "Return nil" statement. Error 6005: Exception error:...
by byron.hopp
Tue Jul 16, 2024 8:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 23
Views: 3974

Re: Contraste de colores?

... el ejemplo de Mr. Rao. Y he ahí mi problema, son como 100 diálogos y cada dialogo tiene en promedio 20 Says pensé que podría haber una solución global como se le da color a los GETS. Si no hay otra alternativa, tendré que ponerme a talachar (Picar piedra) Saludos
by Armando
Thu Jun 27, 2024 7:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1738

Re: Contraste de colores?

Mr. Rao:

It's an excellent sample, but I have several dialogs with several SAY (text) and I looking for
a global solution as Tget():nClrFocus := RGB( 168, 211, 255 ) for GET controls, if it's possible

With best regards
by Armando
Thu Jun 27, 2024 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1738

Contraste de colores?

... En este último caso debería definir los textos en color blanco, y ahí viene mi duda y pregunta al foro ¿Cómo defino el color del texto de forma global?. son muchos textos como para definirles el color uno a uno. Espero haberme explicado. Gracias de antemano
by Armando
Sun Jun 23, 2024 8:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1738

Re: Recuperar conexión ADO mysql

... Ajusta las configuraciones wait_timeout e interactive_timeout en la configuración del servidor MySQL (my.cnf o my.ini). sql Copiar código SET GLOBAL wait_timeout = 28800; SET GLOBAL interactive_timeout = 28800; Aumentar max_allowed_packet: Modifica la configuración max_allowed_packet a un ...
by Antonio Linares
Thu Jun 13, 2024 5:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recuperar conexión ADO mysql
Replies: 5
Views: 491

Re: Chilkat's ActiveX

... will automatically unload them if they do not have memory links. oHttp := Nil oReq := Nil To terminate the Chilkat control Handle initiated by the GLOBAL Resource use Method FinalizeThreadPool() The prg below is used for initializing and closing the dll. #Include "FiveWin.ch"STATIC st_lChilkatOk, ...
by Giovany Vecchi
Fri May 10, 2024 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Chilkat's ActiveX
Replies: 3
Views: 550

Re: Classe TGif

... screen. The logical screen descriptor should be seven bytes long and contain the following fields: logical screen width, logical screen height, global color table flag, color resolution, sort flag, size of global color table, background color index, and pixel aspect ratio It should have a global ...
by Antonio Linares
Fri Dec 08, 2023 8:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Classe TGif
Replies: 9
Views: 2282

Re: Execute php or vbs code

Can you send me a very little PRG example to test it here? Enrico, Antonios example: #include "c:\harbour\contrib\hbcurl\hbcurl.ch" function Main() curl_global_init() ? "Hello world" ? callPHP( "www.fivetechsoft.com/getip.php" ) curl_global_cleanup() return nil functio...
by wartiaga
Sun Sep 03, 2023 2:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1821

Re: Execute php or vbs code

Here it is: https://wormhole.app/6lE98#DrUiOoCwc3x7kgJ2O-EDDA Enrico, using Antonio's example, I have several errors. Need some other lib? Error: Unresolved external 'WSAIoctl' referenced from D:\LANG\FWH1105\XH1.2.1\LIB\HBCURL.LIB|hbcurl Error: Unresolved external '_curl_global_init_mem' r...
by wartiaga
Sat Sep 02, 2023 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute php or vbs code
Replies: 18
Views: 1821

Re: Incluyendo el SQLRDD

Joaquim buenos dias yo intentaba abrircon todo el camino y ellos tenian una funcion global que usaba ejemplo use \sistemas\empre001\ventas\cliente se transformaba en una tabla en la base de datos asi _sistemas_empre001_ventas_cliente con eso cliente en cualquier empresa ...
by wilsongamboa
Fri Aug 25, 2023 3:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 5744

Re: Readonly and/or disable GETs background color

Enrico

Hope this is what you are looking for ...

SetGetColorFocus( rgb(209,224,252) ) // global color for gets

Rick Lipkin
by Rick Lipkin
Fri Aug 11, 2023 8:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Readonly and/or disable GETs background color
Replies: 15
Views: 1391
Next

Return to advanced search