Search found 54 matches: slot

Return to advanced search

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Antonio,

Codeblock-Slot like these we need, thx
but how is METHOD LButtonUp() called when i click to collaps/enlarge :?:

Request :
also need for DragDrop
Code: Select all  Expand view
METHOD LButtonUp( nRow, nCol )

include DATA lDrag and ::Capture()
by Jimmy
Sat Feb 24, 2024 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 463

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

...   lCollapsed      INIT .F. and it will be assign Value in METHOD LButtonUp(nRow, nCol, nFlags ) CLASS TTaskPanel but there is no Codeblock-Slot like bLButtonUp which will "react" when click on "Collaps" :( i do not understand "when" to call LButtonUp() Question ...
by Jimmy
Sat Feb 24, 2024 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 463

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... to call Method ChekScroll() :?: when "click" there will be WM_LBUTTONDOWN / WM_LBUTTONUP Event fired for this we have Codeblock-Slot like in c:\fwh\samples\testmmd.prg   oWndMOUSE:bLClicked    = { | nRow, nCol, nFlags | oWndMOUSE:Say( 2, 2,  "LButtonDown" ) ...
by Jimmy
Sat Feb 24, 2024 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 463

activate BUTTON ACTION Codeblock via F2 - F9

... my BUTTON have a Caption which can be used as Hotkey using ALT + Key now i like to use F2 - F9 to activate BUTTON i can use o:bKeyDown Codeblock Slot to call a Functrion and use VK:* Key to identify how to EVAL() ACTION Codeblock e.g. for VK_F2 :?:    DEFINE BUTTONBAR oBar SIZE nPart, 48 BOTTOM ...
by Jimmy
Tue May 02, 2023 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: activate BUTTON ACTION Codeblock via F2 - F9
Replies: 2
Views: 135

ZIP / UNZIP under Fivewin

hi, i want to ZIP / UNZIP Files using Fivewin in TWindows i found Codeblock Slot bZip and bUnZip   METHOD Zip( nZipInfo ) INLINE ;                      If( ::bZip != nil, Eval( ::bZip, nZipInfo ),)   METHOD UnZip( nPercent ) INLINE ...
by Jimmy
Tue Mar 21, 2023 1:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ZIP / UNZIP under Fivewin
Replies: 5
Views: 415

Re: CLASS TGrid() for FiveWin

... include *.RC does NOT contain any Resource, it is just a "Dummy" --- Special I have use Combobox with Ownerdraw using Codebock Slot bOwnerDraw It have 4 Parameter between || (pipe Sign) which are Self          itselfnIdCtl        Control IDoStruc        Ownerdraw StructurenPointer ...
by Jimmy
Sun Mar 12, 2023 6:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 3452

Re: SUB-CLASS TFolderEx()

... it will not help when i want to "override" Nethod, here PaintTB() i like to use "Dark-Mode" so also TAB should have a Callback Slot for Background Color. used Color are METHOD SetDefColors( aGradSel, aGradUnSel, aGradOverUnSel, aGradOver, aGradDis ) CLASS TFolderEx...  ...
by Jimmy
Sat Feb 04, 2023 9:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SUB-CLASS TFolderEx()
Replies: 20
Views: 1156

Re: how to get CTRL + LBUTTONDOWN Event ?

hi Antonio,

Code: Select all  Expand view
oWnd:bLClicked = { || If( GetKeyState( VK_CONTROL ), MsgInfo( "Ctrl + left click" ),) }

YES, thx to point me to Codeblock Slot
by Jimmy
Wed Jan 11, 2023 7:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get CTRL + LBUTTONDOWN Event ?
Replies: 2
Views: 236

Re: Hot-Key for BUTTON of BUTTONBAR ?

hi,

aha, using Cargo Slot to stare "Name".
thx for Solution
by Jimmy
Sun Nov 27, 2022 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hot-Key for BUTTON of BUTTONBAR ?
Replies: 2
Views: 218

Re: LISTBOX using ENTER ?

hi Antoni,

aha :idea:

so i have use wrong Callback Slot as WM_KEYDOWN message does not support ALT Key ( Bit 29 )
by Jimmy
Fri Nov 11, 2022 9:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LISTBOX using ENTER ?
Replies: 4
Views: 298

LISTBOX using ENTER ?

hi,

i can use
Code: Select all  Expand view
ON DBLCLICK

but how to "activate" using ENTER Key :?:

do i need to use bKeyDown Codeblock Slot :?:
by Jimmy
Fri Nov 11, 2022 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: LISTBOX using ENTER ?
Replies: 4
Views: 298

Re: Splash Screen for Startup

hi,
nageswaragunupudi wrote:You can ask for anything else.

i like to request :
Progressbar
Codeblock Slot to EVAL() by TIMER
by Jimmy
Tue Oct 25, 2022 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Splash Screen for Startup
Replies: 14
Views: 799

Notify Event for own Control

hi, for my CLASS TGrid i like to receive Notify Event when fired for LVN_GETDISPINFO --- when use CLASS ActiveX i can use Codeblock Slot bOnEvent   ::oControl:bOnEvent := { | cEvent, aParams | ::VLC_Event( cEvent, aParams ) } it is called in METHOD OnEvent() CLASS TActiveX ...
by Jimmy
Mon Oct 17, 2022 5:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Notify Event for own Control
Replies: 4
Views: 375

SysRefresh() ( DO Events) / MsgInfo() and ActiveX()

... Tvlc from carlos vargas https://forums.fivetechsupport.com/viewtopic.php?t=36205 i wrote CLASS FWTVlc which include Codeblock Slot for Events and Menu https://forums.fivetechsupport.com/viewtopic.php?t=42025      // ActiveX have no Property bRClicked so ADD ...
by Jimmy
Thu Oct 13, 2022 9:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SysRefresh() ( DO Events) / MsgInfo() and ActiveX()
Replies: 4
Views: 331

Re: XIMAGE -> CLASS TXImage -> ACTION ?

hi,
nageswaragunupudi wrote:bLDblClick := { || action() }

Thx for Answer.

i begin to understand Concept of FineWin.
i have to look for "bXXXX" DATA which Codeblock Slot a Control have.

than i can search for ":bXXXX" in \Sample and hope find a Demo what can be in Codeblock in that Case
by Jimmy
Thu Aug 04, 2022 4:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XIMAGE -> CLASS TXImage -> ACTION ?
Replies: 4
Views: 612
Next

Return to advanced search