Search found 251 matches: associated

Return to advanced search

Re: Are there any Treeview samples with associated edit boxes?

D. F11 and F12 implemented this way: SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } ) SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } ) Updated EXE and PRG: https://github.com/FiveTechSoft/FWH_too...
by bpd2000
Wed Dec 09, 2020 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

D. F11 and F12 implemented this way: SetKey( VK_F12, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 2 ]:SetFocus(),) } ) SetKey( VK_F11, { || If( oWnd:oWndActive != nil, oWnd:oWndActive:aControls[ 1 ]:SetFocus(),) } ) Updated EXE and PRG: https://github.com/FiveTechSoft/FWH_tool...
by Antonio Linares
Sat Dec 05, 2020 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

I was pleasantly surprised to see that we already defined a key (tab) to switch back & forth between the tree and the text area. However - Go ahead and pick a node, and then Tab back & forth, several times. Each time the pointer moves into the Text area, it will generate a new tab inside the...
by FWExplorer
Fri Dec 04, 2020 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

That works, thanks cnavarro.

Inline looks good, Antonio.
by FWExplorer
Fri Dec 04, 2020 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

Use this file richedi5.ch #ifndef _RICHEDIT5_CH#define _RICHEDIT5_CH#ifndef SF_RTF#define SF_RTF                   2#endif#ifndef SFF_SELECTION#define SFF_SELECTION            32768#endif#ifndef EM_GETSEL#define EM_GETSEL &nb...
by cnavarro
Fri Dec 04, 2020 1:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

Thanks Antonio, I got the libs. But it's a compiler error, not a link error. ompiling... Harbour 3.2.0dev (r2008190002) Copyright (c) 1999-2020, https://harbour.github.io/ Compiling 'pim.prg' and generating preprocessed output to 'pim.ppo'... 1 error No code generated. pim.prg(206) Error E0030 Synta...
by FWExplorer
Fri Dec 04, 2020 1:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

D.

A new FWH build is required to build pim.exe

I am sending you an email
by Antonio Linares
Fri Dec 04, 2020 8:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

Can't build the latest pim. Compiling 'pim.prg' and generating preprocessed output to 'pim.ppo'... 1 error No code generated. pim.prg(206) Error E0030 Syntax error "syntax error at '@'" * Compile errors * [C:\fwh\samples] I downloaded fwh.exe from ftdn today, and it's the same fwh.exe exec...
by FWExplorer
Fri Dec 04, 2020 1:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

Updated version:

TreeView inline editing support:
https://github.com/FiveTechSoft/FWH_tools/blob/master/pim.zip

Move the mouse over the top part of the richedit to show the buttonbar
by Antonio Linares
Thu Dec 03, 2020 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

FWExplorer wrote:It doesn't matter what key we give it, explicitly. It only works for the numberic keypad 43.


oTree:bKeyChar = { | nKey, nFlags | MsgInfo( nKey, "key" ), MsgInfo( nFlags ), If( nKey == 224, TreeAddItem( oTree ),) }


We are going to check it, thanks
by Antonio Linares
Wed Dec 02, 2020 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

Enhanced version with RichEdit button bar support: https://github.com/FiveTechSoft/screenshots/blob/master/pim_20201202.JPG?raw=true There is a position bug in the RichEdit buttonbar, when some text is written into the RichEdit. We are working to solve it. Please download pim.zip again f...
by Antonio Linares
Wed Dec 02, 2020 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

It doesn't matter what key we give it, explicitly. It only works for the numberic keypad 43.


oTree:bKeyChar = { | nKey, nFlags | MsgInfo( nKey, "key" ), MsgInfo( nFlags ), If( nKey == 224, TreeAddItem( oTree ),) }
by FWExplorer
Tue Dec 01, 2020 9:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

D. Yes, feedback is welcome and appreciated :-) > Can the edit of a mode be done in place, rather than in a popup? We are working to implement it for FWH itself Please try it this way: oTree:bKeyChar = { | nKey, nFlags | MsgInfo( nKey, "key" ), MsgInfo( nFlags ), If( nKey == 43, TreeAdd...
by Antonio Linares
Tue Dec 01, 2020 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916

Re: Are there any Treeview samples with associated edit boxes?

Antonio, Are you looking for feedback, regarding the pim? Not sure if I should keep adding my two cents. Coupla of things. Can the edit of a mode be done in place, rather than in a popup? Also, I'm not clear on how keystrokes are processed. Is it based on the scancode in ctscan.ch? I tried changing ...
by FWExplorer
Tue Dec 01, 2020 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Are there any Treeview samples with associated edit boxes?
Replies: 44
Views: 4916
PreviousNext

Return to advanced search