Search found 1384 matches: methods

Return to advanced search

CLASS modification

... Here is the answer, and I would like to try a solution. Thank you for providing the second part of the TScrollPanel class definition. The methods in this part of the class definition are primarily involved with the vertical scrolling behavior of the panel, such as moving up and down, going ...
by Otto
Tue May 23, 2023 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 2020

Re: Reading QRCodes

Yes, sure. I wrote methods to send texts and make phone calls but not to send via WhatsApp although it wouldn't be too hard to add. Keep in mind you will need a web hook set up to catch any incoming texts. Here is that class: #define ...
by reinaldocrespo
Thu May 18, 2023 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reading QRCodes
Replies: 8
Views: 599

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

Good idea. We will try to protect some more methods/datas.
Still we can not do it for all because some methods/datas are used both by the browse object and column object.

There are lots of examples of xbrowse in the forums and lastly we are always here to support you in every way.
by nageswaragunupudi
Mon May 08, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 373

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

... write highly portable code. He can use exactly the same code with any of these datasources. We highly recommend not to use any of these internal methods like rddincrseek(), etc. in the application program. Just select what we want: // incremental seek is always on by default// from FWH2212 onwards, ...
by nageswaragunupudi
Sat May 06, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 373

New FTDN April/Abril 2023 (FWH 23.04)

... shows how to keep a context when using OpenAI and also implements a Class TOpenAI that you can use from your FWH apps. * New: Class TWindow METHODs RegisterDragDrop() and RevokeDragDrop(). They allow you to drop images and text from the Web browser and other apps. Please review samples\imgdrop.prg ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 1820

Re: problem wth SetMultiSelectCol

... modify the class in this way to ensure compatibility with older developments. The best way to do it would be to add the lRefresh parameter in both methods METHOD Del( nPos, lRefresh ) CLASS TBar   local n   local lGroup:= ::aControls[ nPos ]:lGroup     ...
by cnavarro
Sun Apr 30, 2023 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem wth SetMultiSelectCol
Replies: 11
Views: 768

Re: Can I get object from handle?

... do is to control the TWebView class, which works as a client in a window, from another application. In this case, I need to be able to access all methods. Maybe I should consider the advice of reinaldocrespo instead of direct access like this. Thanks.
by Horizon
Mon Apr 17, 2023 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can I get object from handle?
Replies: 15
Views: 1492

Re: XBROWSE : BookMark what is it for ?

... Same way oBrw:KeyNo is same is OrdKeyNo() for DBF, AbsolutePosition of ADO, etc XBrowse can handle many types of datasources, which use different methods, functions and datas. We talk to XBrowse is one language and XBrowse talks to the underlying datasource in its corresponding language. So, it ...
by nageswaragunupudi
Sun Apr 16, 2023 10:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : BookMark what is it for ?
Replies: 1
Views: 206

Re: GDIP Application crash tBitmap

I had problems using Bitmaps with GDIPLUS for the following cause.


You do not need to use special GDIPLUS functions to use GDI+ for bitmaps, etc.
Most of the GDI+ functionality is built into normal looking functions and methods depending on the need and choice.
by nageswaragunupudi
Wed Apr 12, 2023 10:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GDIP Application crash tBitmap
Replies: 12
Views: 907

Re: Agradecimiento Público a Cristóbal Navarro y FivEdit

... acceso rápido ( tengo incluso la pantalla hecha ), a ver si lo retomo y le doy carpetazo también En cuanto a los objetos y que muestre sus datas y methods he avanzado bastante en ese tema ( incluso cuando están dentro de un WITH OBJECT ..... END ), échale un ojo, aunque soy consciente que he de ...
by cnavarro
Sun Mar 19, 2023 9:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Agradecimiento Público a Cristóbal Navarro y FivEdit
Replies: 16
Views: 1891

Re: FTP Best Options ?

... was supposed to be the simplified tInternet class with tFTP. It works for obtaining a directory. HOWEVER, that class has no UPLOAD or DOWNLOAD methods. SO ... I'm still hoping for more clarification or an answer to my question. We are so dependent on the internet for conducting business that ...
by TimStone
Sun Mar 05, 2023 7:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP Best Options ?
Replies: 8
Views: 795

xbrowse custom myBrowse

... but I don't know how to do it, every time I have an update I have to rewrite everything I need, in particular I have to add some DATA and some Methods, modify a method of xbrowse (with ovverride) . I would like to create it so that I can use it in the future without modifying the original class ...
by Silvio.Falconi
Sat Feb 25, 2023 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse custom myBrowse
Replies: 2
Views: 227

Re: SUB-CLASS TFolderEx()

... Instead of creating a new Class TFolderDXE inherited from TFolderEx, you could dynamically modify Class TFolderEx to add the extra DATAs and/or Methods that you may need using the functions __objAddData( oObject, cSymbol ) and __objAddMethod( oObject, cSymbol, nFuncPtr ), __objModMethod( oObject, ...
by Jimmy
Sat Feb 04, 2023 9:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SUB-CLASS TFolderEx()
Replies: 20
Views: 1381

Re: SUB-CLASS TFolderEx()

... Instead of creating a new Class TFolderDXE inherited from TFolderEx, you could dynamically modify Class TFolderEx to add the extra DATAs and/or Methods that you may need using the functions __objAddData( oObject, cSymbol ) and __objAddMethod( oObject, cSymbol, nFuncPtr ), __objModMethod( oObject, ...
by Antonio Linares
Sat Feb 04, 2023 7:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SUB-CLASS TFolderEx()
Replies: 20
Views: 1381

Re: Changing the bitmap in the bookmark

Natter wrote:Not suitable. I need to interactively change pictures in bookmarks. I tried the methods SetBitmap and SetBrightBMP, but it didn't work out :(

Sorry, this not run ok ?
Code: Select all  Expand view

oFld:SetBitMap( "modif", oFld:nOption )   // "modif" -> resource of bitmap
 
by cnavarro
Mon Jan 30, 2023 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing the bitmap in the bookmark
Replies: 7
Views: 400
PreviousNext

Return to advanced search