Ha, ha!
Yep, that works, thanks.
Search found 11 matches
- Sat Oct 21, 2023 7:13 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
- Sat Oct 21, 2023 2:01 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Ok, thanks. I don't know what's going on. The executable hbide.exe in
https://github.com/FiveTechSoft/hbide/archive/refs/heads/master.zip
has 1,804,288 bytes.
When I run it and Alt-F, I don't know if the Event runs, but it doesn't appear to do anything.
I'll recompile it without modification ...
https://github.com/FiveTechSoft/hbide/archive/refs/heads/master.zip
has 1,804,288 bytes.
When I run it and Alt-F, I don't know if the Event runs, but it doesn't appear to do anything.
I'll recompile it without modification ...
- Fri Oct 20, 2023 11:48 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Hi Antonio,
Although the code that you offered above
if nKey >= K_ALT_Q .and. nKey <= K_ALT_M
::oMenu:ProcessKey( nKey )
endif
is inserted into hbide.prg, the Alt keys don't work.
Can you test the executable, and see if Alt F works on your side?
There is an updated version already ...
Although the code that you offered above
if nKey >= K_ALT_Q .and. nKey <= K_ALT_M
::oMenu:ProcessKey( nKey )
endif
is inserted into hbide.prg, the Alt keys don't work.
Can you test the executable, and see if Alt F works on your side?
There is an updated version already ...
- Fri Oct 20, 2023 1:22 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Thanks Antonio,
I'll take a look this weekend.
I'll take a look this weekend.
Antonio Linares wrote:There is an updated version already available:
git clone https://github.com/FiveTechSoft/hbide
or simply:
git pull
- Tue Oct 17, 2023 3:05 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
I haven't forgotten about this, Antonio. Just haven't had the time, with everything going on in the office right now before end of year.
But I am interested, and will continue playing with it.
But I am interested, and will continue playing with it.
- Wed Sep 06, 2023 12:40 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Hi paquitohm,
Kresin's HBEdit editor is my favorite. It's the one that I use the most, along with his embedded file manager Hb Commander. I still use Total Commander and Ultra Edit part of the time.
But I'd like to also see a full-fledged text-mode Harbour IDE in the style of Turbo Vision, as you ...
Kresin's HBEdit editor is my favorite. It's the one that I use the most, along with his embedded file manager Hb Commander. I still use Total Commander and Ultra Edit part of the time.
But I'd like to also see a full-fledged text-mode Harbour IDE in the style of Turbo Vision, as you ...
- Tue Sep 05, 2023 6:18 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Antonio,
If you have a chance and are inclined, take a look at Autumn Lamonte's Jexer text-mode library, and her Java IDE. It's all designed to mimic Turbo Vision, and is stunning to look at.
https://jexer.sourceforge.io/about.html
If you have a chance and are inclined, take a look at Autumn Lamonte's Jexer text-mode library, and her Java IDE. It's all designed to mimic Turbo Vision, and is stunning to look at.
https://jexer.sourceforge.io/about.html
- Tue Sep 05, 2023 3:02 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Keyboard works good now, thank you sir.
- Tue Sep 05, 2023 2:19 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Will do, thanks.
Antonio Linares wrote:Already implemented and pushed to the repo
Please do a "git pull" or a clean "git clone https://github.com/fivetechsoft/hbide"
and run go.bat
anyhow still there are bugs and it needs more feedback...
- Tue Sep 05, 2023 12:39 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
Re: HBIDE - Will there be any further development?
Ok, I'll try that, thanks Antonio.
Trying to implement Alt+... support:
while ! ::lEnd
nKey = InKey( 0, INKEY_ALL + HB_INKEY_GTEVENT )
if nKey >= K_ALT_Q .and. nKey <= K_ALT_M
::oMenu:ProcessKey( __dbgAltToKey( nKey ) )
endif
It seems as we have to modify the redefined CLASS HbMenu ...
Trying to implement Alt+... support:
while ! ::lEnd
nKey = InKey( 0, INKEY_ALL + HB_INKEY_GTEVENT )
if nKey >= K_ALT_Q .and. nKey <= K_ALT_M
::oMenu:ProcessKey( __dbgAltToKey( nKey ) )
endif
It seems as we have to modify the redefined CLASS HbMenu ...
- Mon Sep 04, 2023 10:05 pm
- Forum: To do - WishList / Por hacer - Peticiones
- Topic: HBIDE - Will there be any further development?
- Replies: 18
- Views: 24983
HBIDE - Will there be any further development?
Hi,
I played with
https://github.com/FiveTechSoft/hbide
a few years ago, and just recompiled it now.
It still doesn't have any keyboard menu support. You can open the File/Edit/Run/Options/Help menu with the mouse, but the Alt keys won't bring up any menu.
Also, you only open files within the ...
I played with
https://github.com/FiveTechSoft/hbide
a few years ago, and just recompiled it now.
It still doesn't have any keyboard menu support. You can open the File/Edit/Run/Options/Help menu with the mouse, but the Alt keys won't bring up any menu.
Also, you only open files within the ...