Search found 2166 matches: uses

Return to advanced search

Re: Help splitting up a character address string

... =", aAddressParts[3] ? "CZip =", aAddressParts[4] This function first finds the positions of the commas in the address, then uses SubStr() to extract the different parts based on those positions. The result is stored in an array, but you can modify this to suit your needs, ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 603

Re: Interesting discussion with ChtGPT

... not new. It pre-dates Clipper ( an old, DOS, compiler ) in many languages. Harbour frees us from that restriction Syntax: Swift ( Apple ) uses ? print statements. Harbour, and FWH, are far more sophisticated Libraries: What functionality is NOT covered in Harbour/FWH Integration: Again ...
by TimStone
Mon Nov 06, 2023 10:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1244

Interesting discussion with ChtGPT

... (e.g., int, float, string), while in Clipper, using LOCAL or other keywords without a specific data type is common. Syntax: For example, Clipper uses ? for print statements, which is uncommon in modern languages. Standard libraries: Modern languages often offer more extensive standard libraries ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1244

Re: The Future of Developer Forums

... For general questions, an AI can answer just as well and faster. I see it as disruptive for forums - I see the "Phone Book Effect". Who uses phone books anymore?" We urge all developers to actively engage in discussions, be open to diverse opinions, and value the contributions of ...
by Otto
Thu Nov 02, 2023 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: The Future of Developer Forums
Replies: 5
Views: 311

New FTDN October/Octubre 2023 (FWH 23.10)

... is nil. fixed. * New: samples\diskexpl.prg shows how to build a tree with a drive folders using recursion * Improved: FW_CopyToClipBoard(): Uses gdi++ to copy images to clipboard, enabling the contents to be pasted in word,excel,whatsapp, etc. Usage: FW_CopyToClipboard( hBitmap/imagebuffer ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3906

Re: The Future of Developer Forums

as far as I know, Windows Copilot (based on bing) uses chatgpt 4 and Dall-e and both for free :-)

Lately I have found Windows Copilot writting exceptional good code that I have been able to copy and use on first try
by Antonio Linares
Thu Nov 02, 2023 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: The Future of Developer Forums
Replies: 5
Views: 311

Re: MySql embebido

... vez lo mejor es que porgas el servidor y el cliente en el mismo ordenador. Si aún así quieres un sistema con base de datos embebido te recomiendo uses SQLite. HDO soporta el sistema embebido de MySQL... :roll:
by xmanuel
Sat Oct 07, 2023 7:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql embebido
Replies: 8
Views: 682

Re: Xlsxlibhb_ver2

... Eval( bRow ) ) } )   oBook:Close()   ? "Exported to " + cFileXlsxreturn cFileXlsx  In turn this function uses a small class I started making now. Right now, this class uses minimal features of this library
by nageswaragunupudi
Thu Oct 05, 2023 10:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9023

Re: uso de make de bcc al crear una libreria

Estimado Ruben,

Lo más sencillo es que uses hbmk2.exe especificando -hblib en el fichero hbp y las lista de los nombres de los ficheros
by Antonio Linares
Wed Oct 04, 2023 4:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: uso de make de bcc al crear una libreria
Replies: 4
Views: 557

Re: xHarbour.org updated!

Arteaga, I don't have an example that uses SSL with HTTPS, do you have anything to send me? Arteaga, no tengo un ejemplo que use SSL con HTTPS, ¿tienes algo para enviarme? Regards, saludos. Karinha, try this sample: #Include "Fivewin.ch" ...
by wartiaga
Tue Sep 19, 2023 7:57 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37776

Re: xHarbour.org updated!

Arteaga, I don't have an example that uses SSL with HTTPS, do you have anything to send me?

Arteaga, no tengo un ejemplo que use SSL con HTTPS, ¿tienes algo para enviarme?

Regards, saludos.
by karinha
Tue Sep 19, 2023 7:08 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37776

Re: not ISOEM(), ISANSI() or IsUTF8()

... you do not need to any utf8 conversions on your own. FWH will do this conversion while using DrXlsx. This is the program I used and this program uses the new interface with DrXlsx.   PreferDrXlsx( .t. )   DEFINE FONT oFixed NAME "CONSOLAS" SIZE 0,-20   XBROWSER ...
by nageswaragunupudi
Sun Sep 03, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2099

Re: Cuantas columnas tiene una tabla?

Hola con el nativo de Fivewin creo que es: oRs:Fields:Count Da lo mismo que uses MariaDb que MySql También googleando aseguran que está consulta devuelve el número de campos de una tabla Mysql. OCn:execute("SELECT TABLE_NAME, count( COLUMN_NAME ) FROM INFORMATION_SCHEMA.COLUMNS ...
by jvtecheto
Sat Sep 02, 2023 6:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cuantas columnas tiene una tabla? (SOLUCIONADO)
Replies: 6
Views: 452

Re: Xbrowser() setting not found

Code: Select all  Expand view
oBrw:lToolbar := .f.,; // not ok


There is no such setting in XBrowse.
XBrowser uses bottonbar and we did not provide an option to hide the buttonbar.
You may need to write your own function or modify the xbrowser.prg
by nageswaragunupudi
Thu Aug 31, 2023 2:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowser() setting not found
Replies: 1
Views: 186

Re: Listview Unicode for CLASS TGrid()

Question : is fw_parWide() the same as AnsiToWide() :?: No. if the parameter is UTF8 it uses "MultiByteToWideChar()", Windows API function and if not, then it is ANSI and uses AnsiToWide() See: https://learn.microsoft.com/en-us/windows/win32/api/stringapiset/nf-stringapiset-multibytetowidechar ...
by nageswaragunupudi
Wed Aug 30, 2023 2:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 411
PreviousNext

Return to advanced search