Search found 3569 matches: instead

Return to advanced search

Re: Interesting discussion with ChtGPT

... obsolete and not usable. Where tech people are ignorant, they simply make negative assertions about whatever it is they do not know or understand, instead of expanding their own knowledge base.
by TimStone
Mon Nov 06, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1273

Interesting discussion with ChtGPT

... Education and Learning: As AI tools become more accessible and simplify code creation, it could also change how programming is taught and learned. Instead of focusing on complex syntax or frameworks, curriculums might place more emphasis on concepts, logic, and problem-solving. Tools and Environments: ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1273

Re: Xlsxlibhb_ver2

If you set
Code: Select all  Expand view
UseXLSXLIB(  .T.  )

All toExcel methods will use this lib instead of Using Excel
by nageswaragunupudi
Sat Nov 04, 2023 1:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9226

Re: Advantage Database Server

... a database engine developed by Alaska Software to emulate ISAM style functionality for xBase++. It looks like people are considering using PgDBE instead of ADS (Advantage Database Server), but they are having performance issues. You mentioned that PgDBE creates an internal field for each xBase ...
by ferilmagic
Fri Nov 03, 2023 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3785

New FTDN October/Octubre 2023 (FWH 23.10)

... this function is returning NIL, where as return value is expected to be always a character value. Now fixed to return "" in such cases instead of nil This fixes runtime error in FW_ReadImage() * TImageList Class: (source\classes\timaglst.prg) - New Method AddImage( cImage ) To add any ...
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: 3934

Re: Get real date from the Internet

... yyyy" ) Result: https://imagizer.imageshack.com/v2/xq70/923/4qyZqS.png Note: If you are using xHarbour, use DateTime() instead of HB_DateTime()
by nageswaragunupudi
Tue Oct 17, 2023 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get real date from the Internet
Replies: 55
Views: 4693

Re: Sending whatsapp message via web-based app

... )   CreateObject( "WScript.Shell" ):SendKeys( "~" )return nil   Alternatively you can use the whatsapp app instead of the web based whatsapp: https://fivetechsupport.com/forums/viewtopic.php?p=264367&sid=ef96896e428d02d9a4e04210e8ee8fe2#p264367
by Antonio Linares
Tue Oct 17, 2023 5:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending whatsapp message via web-based app
Replies: 6
Views: 643

Re: enviar mensajes a whatsapp, ¿posible solucion?

... 1 )   CreateObject( "WScript.Shell" ):SendKeys( "~" )return nil To send msgs to a whatsapp group instead of a phone number use this: whatsapp://send?text=encoded_message&phone=group_id Find out the group ID of the group you want to send the ...
by Antonio Linares
Fri Oct 13, 2023 6:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 4676

Re: xBrowser click

... to that cell. We feel assigning a different action to single left click may be inconsistent with normal behaviour and confusing to users. Instead better to use right-click or double-click. Anyway, the decision is yours. another question is about the SetDlgGradient command, when dividing ...
by nageswaragunupudi
Wed Oct 11, 2023 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser click
Replies: 16
Views: 1006

Re: abort aeval()

Dear Yuri,

Use AScan() instead of AEval()
by Antonio Linares
Mon Oct 09, 2023 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: abort aeval()
Replies: 2
Views: 315

Re: who use PostgreSQL with Fivewin ?

... of FWH. That is the reason, why we advised not to use TDataRow and other FWH functions for reading, editing and modifying the PostGre records and instead directly use TPQquery and TPQrow classes of Harbour's hbpgsql.lib. This helps us to close any further discussion on SavePQQ(). this CODE is ...
by nageswaragunupudi
Fri Sep 29, 2023 2:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1101

Re: who use PostgreSQL with Fivewin ?

... please totally avoid using FWH's TDataRow. Also totally avoid using any functions of FWPGSUPPORT.PRG for reading, saving and primary keys. Instead you may directly use methods of TPQquery and TPQrow classes of Harbour's hbpgsql.lib. This is very simple. This is the way to go:   oQry ...
by nageswaragunupudi
Thu Sep 28, 2023 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1101

Re: SetDlgGradient

Try like this:
Code: Select all  Expand view
SetDlgGradient( { { 0.6, CLR_BLUE, CLR_WHITE }, { 0.4, CLR_WHITE, CLR_BLUE }, .F. } )

If the last element of the gradient array is .F., instead of an array, the gradient is horizontal.
by nageswaragunupudi
Thu Sep 28, 2023 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetDlgGradient
Replies: 10
Views: 882

Re: Consulta sobre la clase folderEx

Use Pages, instead of Folder or FolderEx.
by nageswaragunupudi
Tue Sep 26, 2023 5:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre la clase folderEx
Replies: 5
Views: 397

Re: Request : function GetSerialCol()

... in your program and make the changes you need. i can use your Sample with XBROWSE and :bLDblClick for "save" ok, i will try that Way --- instead of XBROWSER i have try   oRs := oPGU:Query( "select * from " + cTable )*   XBROWSER oRs TITLE cTable AUTOSORT FASTEDIT   @ ...
by Jimmy
Tue Sep 26, 2023 6:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : function GetSerialCol()
Replies: 8
Views: 625
PreviousNext

Return to advanced search