Search found 157 matches: notify

Return to advanced search

Re: xbrowser no muestra el scroll

Modifica esta línea:

CONTROL "", 112, "ListBox", LBS_SORT|LBS_NOTIFY|WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159

asi:

CONTROL "", 112, "TXBrowse", WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159
by Antonio Linares
Wed Dec 13, 2023 10:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 947

Re: Listview Unicode for CLASS TGrid()

... )      ::bDisplay := { | nPtrNMHDR | ::OnDISPINFO( nPtrNMHDR ) } when set FW_SetUnicode( .T. ) it does "block" notify Event LVN_GETDISPINFO METHOD Notify( nIdCtrl, nPtrNMHDR ) CLASS TGridLOCAL nCode := GetNMHDRCode( nPtrNMHDR )LOCAL nItem := GETNMHEAITEM( ...
by Jimmy
Mon Sep 04, 2023 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listview Unicode for CLASS TGrid()
Replies: 7
Views: 670

Re: build Import LIB from LibPQ.DLL

... .F. ) --- my "native" LibPQ.DLL Version, using TGrid() work also with FW_SetUnicode( .T. ) but TGrid() fail to "send" Notify Event and "Input" is wrong when use FW_SetUnicode( .T. ) --- is FW_SetUnicode() for hole App of for each Thread :?:
by Jimmy
Sat Jul 22, 2023 11:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: build Import LIB from LibPQ.DLL
Replies: 37
Views: 4722

Re: CLASS modification

... with datepick styles but not refresh the button https://i.postimg.cc/3xG0q9Yd/gg.png when you "close" Datepicker than Notify Event DTN_CLOSEUP is send METHOD Notify(...)     ...      case nCode == DTN_CLOSEUP           ::lClosed = .T. Datepicker have VALID where ...
by Silvio.Falconi
Fri May 26, 2023 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 3590

Re: CLASS modification

... with datepick styles but not refresh the button https://i.postimg.cc/3xG0q9Yd/gg.png when you "close" Datepicker than Notify Event DTN_CLOSEUP is send METHOD Notify(...)     ...      case nCode == DTN_CLOSEUP           ::lClosed = .T. Datepicker have VALID where ...
by Jimmy
Fri May 26, 2023 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 3590

Re: WC_LISTVIEW / "SysListView32" -> Unicode ?

... automatic when oTGrid:End() or do i have to do it manual :?: ... i have try this Way while i had Problem with FW_SetUnicode( .T. ) to get Notify Event LVN_GETDISPINFO but also using HB_FUNC() on this the Way Result is same : No LVN_GETDISPINFO btw "where" is FW_SetUnicode() :?:
by Jimmy
Mon Jan 16, 2023 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WC_LISTVIEW / "SysListView32" -> Unicode ?
Replies: 7
Views: 632

how to get CTRL + LBUTTONDOWN Event ?

... + left Mouse Button down" how to get that Event :?: --- i need it for my CLASS TGrid where i get "Keyboard" Input in Method Notify   CASE nCode == LVN_KEYDOWN      nKey := LV_GETGRIDVKEY( nPtrNMHDR )      IF nKey = 13         IF ::bClick != nil            EVAL( ...
by Jimmy
Wed Jan 11, 2023 5:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get CTRL + LBUTTONDOWN Event ?
Replies: 2
Views: 338

Re: CLASS TGrid() for FiveWin

... GRID ( Property.PRG ) it can handle up-to 100.000.000 Array Element "on-fly" Listview can use Style LVS_OWNERDATA and Notify Event LVN_GETDISPINFO to "paint" Data "on-Fly"   ::nview := LVS_REPORT   ::nStyle := nOR( LVS_SHAREIMAGELISTS, WS_CHILD, ...
by Jimmy
Sun Jan 08, 2023 4:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 5549

FW_SetUnicode(.T.) "block" Notify Event LVN_GETDISPINFO

hi, i want to use LVN_GETDISPINFO Notify Event but it does not work :shock: other Notify Event like LVN_KEYDOWN or LVN_ITEMCHANGED does work ... hm now i found out that FW_SetUnicode(.T.) made the "Problem" ... is there a Workaround ...
by Jimmy
Thu Jan 05, 2023 8:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SetUnicode(.T.) "block" Notify Event LVN_GETDISPINFO
Replies: 0
Views: 239

Re: CLASS TGrid() for FiveWin

hi, for "quick" TGrid i want to use LVN_GETDISPINFO Notify Event for this i have take HMG HB_FUNC() to use with Fivewin which are for Unicode / ANSI it does compile for ANSI without Warning but for Unicode i got Warning W8065 .\\HB_FUNC.PRG 1090: ...
by Jimmy
Wed Jan 04, 2023 1:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 5549

Re: updating an archive

... drawings in Italy are drawn every week and precisely on Tuesdays, Thursdays and Saturdays when the application is opened, the procedure must notify the end user that the archive is updated or not to do this I had thought of checking the date of the last extraction in the archive and comparing ...
by Silvio.Falconi
Mon Nov 14, 2022 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: updating an archive
Replies: 9
Views: 912

Re: "Pause" for Notify Event ?

... i do not like that User "must set" METHOD FillGrid() CLASS TExplorer   ::oGrid:lAllowed = .F.                         // disable Notify   // Code to fill   ::oGrid:lAllowed = .T.                         // enable Notify --- under Xbase++ i can use CLEAR TYPEAHEAD or KEYBOARD  "" ...
by Jimmy
Wed Nov 09, 2022 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Pause" for Notify Event ?
Replies: 4
Views: 378

Re: "Pause" for Notify Event ?

You may use a logical DATA to enable or disable it, I guess
by Antonio Linares
Wed Nov 09, 2022 8:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Pause" for Notify Event ?
Replies: 4
Views: 378

Re: "Pause" for Notify Event ?

hi Antonio, Please provide a small and self contained PRG to test it i use Method Notify in my CLASS TGrid() it is use by CLASS TExplorer() from Main i call n-Times CLASS TExplorer() so "smallest" Sample have about 3000 Lines ... --- it is a General Question ...
by Jimmy
Wed Nov 09, 2022 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Pause" for Notify Event ?
Replies: 4
Views: 378

Re: "Pause" for Notify Event ?

Dear Jimmy,

Please provide a small and self contained PRG to test it

many thanks
by Antonio Linares
Wed Nov 09, 2022 7:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Pause" for Notify Event ?
Replies: 4
Views: 378
Next

Return to advanced search