Search found 742 matches: event

Return to advanced search

Re: xbrowse problem with :bLClicked

... we can ensure that the Edit_Comuni() function is executed after the selection has been toggled, rather than immediately after the double-click event. This can help prevent issues with the selection state and the editing process. If you want to avoid using a keyboard shortcut, you could also ...
by Silvio.Falconi
Mon Apr 22, 2024 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 104

Re: xbrowse problem with :bLClicked

... we can ensure that the Edit_Comuni() function is executed after the selection has been toggled, rather than immediately after the double-click event. This can help prevent issues with the selection state and the editing process. If you want to avoid using a keyboard shortcut, you could also ...
by Antonio Linares
Mon Apr 22, 2024 5:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 104

Re: DNS

... blocking or asynchronous Winsock calls issued by any thread in your application. This cancellation happens without notification messages or event object signaling, which could potentially lead to unexpected behavior if not handled carefully.
by Antonio Linares
Fri Mar 29, 2024 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DNS
Replies: 5
Views: 1023

Re: Window transition event

Thank you, Antonio! I'll try.
by Natter
Fri Mar 15, 2024 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window transition event
Replies: 2
Views: 503

Re: Window transition event

Dear Yuri, Use the WM_ACTIVATE message in the application's main window procedure. This message indicates window activation changes (activating/deactivating). Combine with the LOWORD of wParam to check the activation state (e.g., WA_INACTIVE for background). You may need to inherit a Class TMyWindow...
by Antonio Linares
Fri Mar 15, 2024 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window transition event
Replies: 2
Views: 503

Window transition event

Hi,

Is it possible to intercept the window transition event to the background/foreground ?
by Natter
Fri Mar 15, 2024 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Window transition event
Replies: 2
Views: 503

Re: WebView resize

Dear Otto, You are creating a new TWebView object on each PAINT event! You have to modify your code this way: function webshow(console,hWnd, nlink)   local hPost := {}   local cHtmlOrUrl :=  "C:\fwh2023\samples\address.html"  ...
by Antonio Linares
Sat Mar 09, 2024 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2101

New FTDN February 2024 (FWH 24.02)

... implemented and it is evaluated from its method LButtonUp( nRow, nCol, nFlags ), so each panel can use its own DATA bOnCollapse for the collapse event. * New: Example samles\booking.prg shows how to implement a booking system using XBrowse. A great implementation developed by Mr. Rao. * Fix: ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 210

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

hi Silvio, you are Right that Original CLASS TTaskPanel() Layout are   DATA   nTopMargin      INIT 16 but i just show Technic how to get Event, when Collaps, and "move" Panels to new Position where i start from TOP = 0 in my Layout it is up to you to change Layout like SPACE between ...
by Jimmy
Wed Feb 28, 2024 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

Re: MAPI Outlook HTML TEXT

... = C   hakan@objekt.com.trStack Calls===========   Called from: ..\contrib\hbwin\oleauto.prg => TOLEAUTO:_FROM( 0 ) I have found this event but I could not know how to implement. https://learn.microsoft.com/en-us/office/vba/api/outlook.mailitem.sendusingaccount ...
by Horizon
Wed Feb 28, 2024 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MAPI Outlook HTML TEXT
Replies: 10
Views: 514

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

hi Silvio, a question yPos := 0 this is no good because the first panel can init from 18 and not from 0 row I not found the exact variable perhaps ::nTop ? as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel() yes but the first position of First TaskPanel...
by Silvio.Falconi
Wed Feb 28, 2024 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

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

hi Silvio,
Silvio.Falconi wrote:a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?

as i can say it is 1st Position of "Body" from TExplorerBar() where i oExBar:AddPanel()
by Jimmy
Tue Feb 27, 2024 10:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

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

a question

yPos := 0

this is no good because the first panel can init from 18 and not from 0 row

I not found the exact variable perhaps ::nTop ?
by Silvio.Falconi
Tue Feb 27, 2024 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

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

hi, i got bOnCollapse working :D   oPanel1:bOnCollapse :=  { | | CheckCollapse(oPanel1,cMsg,1) }   oPanel2:bOnCollapse :=  { | | CheckCollapse(oPanel2,cMsg,2) }   oPanel3:bOnCollapse :=  { | | CheckCollapse(oPanel3,cMsg,3) } i don´t know how but ...
by Jimmy
Mon Feb 26, 2024 1:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 478

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: 478
Next

Return to advanced search