Pritpal, HBIDE developer, assists us to use it with FWH
- MdaSolution
- Posts: 401
- Joined: Tue Jan 05, 2010 2:33 pm
Re: Pritpal, HBIDE developer, assists us to use it with FWH
I tried it but
I worked with xmate from many years and I work good with xmate
your Ide is not compatible with xmate : I cannot converte my xhp files (xmate) into yours Ide , Itry to compile a simply application ( 5 files) and it not run ok
I think fivewin for harbour need a own Ide no extern application
I worked with xmate from many years and I work good with xmate
your Ide is not compatible with xmate : I cannot converte my xhp files (xmate) into yours Ide , Itry to compile a simply application ( 5 files) and it not run ok
I think fivewin for harbour need a own Ide no extern application
FWH .. BC582.. xharbour
-
- Posts: 20
- Joined: Tue Feb 02, 2010 10:32 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
HBIDE GOOD WORK BY ME
BUT IF U DONT LIKE U CAN WRITE U OWN BETTER IDE WITH OFFICE PREVIEW
Tx u Pritpal nice work
But the searchbutton in the second panel dont work
BUT IF U DONT LIKE U CAN WRITE U OWN BETTER IDE WITH OFFICE PREVIEW
Tx u Pritpal nice work
But the searchbutton in the second panel dont work
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Pritpal,
thanks a lot !!!!
Regards,
Felix
thanks a lot !!!!
Regards,
Felix
-
- Posts: 1
- Joined: Wed Jun 30, 2010 11:30 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Nice Work
Great
Tx
Great
Tx
- MdaSolution
- Posts: 401
- Joined: Tue Jan 05, 2010 2:33 pm
Re: Pritpal, HBIDE developer, assists us to use it with FWH
The Real Fasi wrote:HBIDE GOOD WORK BY ME
BUT IF U DONT LIKE U CAN WRITE U OWN BETTER IDE WITH OFFICE PREVIEW
Tx u Pritpal nice work
But the searchbutton in the second panel dont work
Dear Fasi,
I not understood what you wrote " BUT IF U DONT LIKE U CAN WRITE U OWN BETTER IDE WITH OFFICE PREVIEW"
Can U explain me please ?
What do you want by me ?
For the HbIDe I mean...
Perhaps Fivewin for harbour need a own Ide and not 3 Part Ide ....
This to have the same support on the same package...
I had experience with many people ,
I pay many money to have his classes or his application but then these men are gone away ....and now I cannot have his support...
do you think about ? it is Right ?
Do you Remember of VIsualFivewin of Mercado ?
or ... VisualIde of Linares ?
or... VisualIde of Patrickfan ?
and Vcode of P aco ....do you remember also it ?
I love fivewin for Harbour and I hope a day on future to have all ( function classes, Ides, .report designer..) into FIVETECH SOFT PACKAGE !!
FWH .. BC582.. xharbour
Re: Pritpal, HBIDE developer, assists us to use it with FWH
afaik can confert xmate to hbmk2 (svn)
HOW CONVERT PROJECT FILE FROM XMATE,HBMAKE,XPBUILD ?
1) Download hbide and hbmk2 v2.1 or compile from cvs
2)convert from hbmake,xmate,xpbuild xhp to hbp
( hbmake to hbp)
hbmk2 test.bc -hbmake=test.hbp
(xmate to hbp)
hbmk2 test.hbp -xhp=test.xhp
(xbpuild to hbp)
hbmk2 test.hbp -hbmake=test.hbp
i suggest analyse resultcommand line of hbmk2 -help
to undestrand what is test.hbp is a collect of command line
each command contained in command line of "hbmk2 -help" may be used as row in hbp
......
xhp=<file> convert .xhp (xMate) project file to .hbp file
-hbmake=<file> convert hbmake project file to .hbp file
-xbp=<file> convert .xbp (xbuild) project file to .hbp file
.....
3) open with notepad hbp project created in prev step
add follow row if you use xharbour
-3rd=hbide_xhb=YES
add follow row if yoy use xbase++
-3rd=hbide_xpp=YES
add follow row if yoy use clipper
-3rd=hbide_clp=YES
4) addlib missing from your env that nor are standard like
with -l and name of lib or better refer to hbc is present
-lfivehx
-lFivehc.
-lhbzip.lib
-lct.lib
5) add your harbour flag in test.hbp
as you can read from http://harbourlanguage.blogspot.com/
2010-07-07 12:52 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbide/idemisc.prg
* contrib/hbide/ideprojmanager.prg
+ Using hbmk2 to do xMate conversion.
It's now also possible to convert from hbmake (I don't
its standard extension), and xbuild projects (I didn't
add it to the UI though).
Please fix me: I'm still having a hard-time telling
hbide where hbmk2 is. Plus I used hb_processRun(), pls
replace it with any method is fit for hbide.
- Deleted redundant copy-pasted (and outdated) code from
hbmk2 hbide source into hbide. (BTW their licence
was also incompatible, pls don't put it back there)
HOW CONVERT PROJECT FILE FROM XMATE,HBMAKE,XPBUILD ?
1) Download hbide and hbmk2 v2.1 or compile from cvs
2)convert from hbmake,xmate,xpbuild xhp to hbp
( hbmake to hbp)
hbmk2 test.bc -hbmake=test.hbp
(xmate to hbp)
hbmk2 test.hbp -xhp=test.xhp
(xbpuild to hbp)
hbmk2 test.hbp -hbmake=test.hbp
i suggest analyse resultcommand line of hbmk2 -help
to undestrand what is test.hbp is a collect of command line
each command contained in command line of "hbmk2 -help" may be used as row in hbp
......
xhp=<file> convert .xhp (xMate) project file to .hbp file
-hbmake=<file> convert hbmake project file to .hbp file
-xbp=<file> convert .xbp (xbuild) project file to .hbp file
.....
3) open with notepad hbp project created in prev step
add follow row if you use xharbour
-3rd=hbide_xhb=YES
add follow row if yoy use xbase++
-3rd=hbide_xpp=YES
add follow row if yoy use clipper
-3rd=hbide_clp=YES
4) addlib missing from your env that nor are standard like
with -l and name of lib or better refer to hbc is present
-lfivehx
-lFivehc.
-lhbzip.lib
-lct.lib
5) add your harbour flag in test.hbp
as you can read from http://harbourlanguage.blogspot.com/
2010-07-07 12:52 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbide/idemisc.prg
* contrib/hbide/ideprojmanager.prg
+ Using hbmk2 to do xMate conversion.
It's now also possible to convert from hbmake (I don't
its standard extension), and xbuild projects (I didn't
add it to the UI though).
Please fix me: I'm still having a hard-time telling
hbide where hbmk2 is. Plus I used hb_processRun(), pls
replace it with any method is fit for hbide.
- Deleted redundant copy-pasted (and outdated) code from
hbmk2 hbide source into hbide. (BTW their licence
was also incompatible, pls don't put it back there)
MdaSolution wrote:I tried it but
I worked with xmate from many years and I work good with xmate
your Ide is not compatible with xmate : I cannot converte my xhp files (xmate) into yours Ide , Itry to compile a simply application ( 5 files) and it not run ok
I think fivewin for harbour need a own Ide no extern application
- Pritpal Bedi
- Posts: 154
- Joined: Thu Jun 03, 2010 6:27 am
- Contact:
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Hello FiveWin...nians
Here is the latest upload at http://hbide.vouch.info/
This is a huge beautification effort, you will like it.
Also it empowers you with many features to manage ideDBU area.
This include some last minute optimizations to following ChangeLog yet
not posted to SNV, though cosmetic one,
2010-08-07 15:35 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/dbf_p1.png
+ contrib/hbide/resources/dbf_p10.png
+ contrib/hbide/resources/dbf_p2.png
+ contrib/hbide/resources/dbf_p3.png
+ contrib/hbide/resources/dbf_p4.png
+ contrib/hbide/resources/dbf_p5.png
+ contrib/hbide/resources/dbf_p6.png
+ contrib/hbide/resources/dbf_p7.png
+ contrib/hbide/resources/dbf_p8.png
+ contrib/hbide/resources/dbf_p9.png
* contrib/hbide/resources/formview.png
* contrib/hbide/resources/home3.png
* contrib/hbide/resources/new.png
* contrib/hbide/resources/print.png
* contrib/hbide/resources/statistics.png
* contrib/hbide/resources/view_organized.png
* contrib/hbide/resources/view_tiled.png
* contrib/hbide/resources/view_vertstacked.png
* contrib/hbide/resources/view_zoomin.png
* contrib/hbide/resources/view_zoomout.png
+ contrib/hbide/resources/zoomin3.png
+ contrib/hbide/resources/zoomout3.png
* contrib/hbide/hbide.qrc
+ Added and refined above images.
* contrib/hbide/idedocks.prg
+ Assigned: "statistics" icon to "Welcome" tab.
! Reworked: many artifacts.
* contrib/hbide/idebrowse.prg
+ Implemented: Edits MDI area icons equivilent functionality
in ideDBU panels also. Now you can view browsers in
organized, cascaded, tiled, maximized, vertically tiled,
horizontally tiled, mode. Verically|Horizontally tiled
modes can be zoomed to fit the user requirements.
However the last close mode is not retained. Next run
always open the "Main" panel with "Organized" view.
+ Assigned: color-differentiated icons to every open browser
window. Now the view is more attractive and allows one to
memorize a browser by color.
With this commit, rounds of beutification for this session ends.
Now concentrating on a really-useful implementation you will
know by the end of next-week.
2010-08-07 15:28 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/xbp.ch
+ Added: few more constants with HBP* prefix to be used
for upcoming HbpMdiArea() class to manage MDI areas containing
sub-windows.
* contrib/hbxbp/xbpwindow.prg
+ Implemented: ERROR HANDLER OnError( ... ) method.
Now it is possible to call Qt object methods directly
with Xbp* objects. For example,
oXbp:oWidget:setLayout( ... )
=>
oXbp:setLayout( ... )
It is a very useful extension and empowers the developer
more freedom.
2010-08-06 18:46 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/exit3.png
+ contrib/hbide/resources/gotoline3.png
+ contrib/hbide/resources/home3.png
* contrib/hbide/resources/save3.png
* contrib/hbide/hbide.qrc
+ Added: three more icons.
* contrib/hbide/ideactions.prg
* contrib/hbide/idebrowse.prg
* contrib/hbide/idedocks.prg
* contrib/hbide/idemisc.prg
! 2nd round of reforms in icons arrangement and colors.
A work-in-progress, please remain patient.
2010-08-06 09:32 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/resources/blockindentl.png
* contrib/hbide/resources/blockindentr.png
+ contrib/hbide/resources/bookmark.png
+ contrib/hbide/resources/close3.png
* contrib/hbide/resources/curlinehilight.png
* contrib/hbide/resources/fullscreen.png
* contrib/hbide/resources/help1.png
* contrib/hbide/resources/horzruler.png
+ contrib/hbide/resources/indent-less.png
+ contrib/hbide/resources/indent-more.png
+ contrib/hbide/resources/open3.png
+ contrib/hbide/resources/save3.png
* contrib/hbide/resources/stream.png
* contrib/hbide/resources/togglelinenumber.png
* contrib/hbide/resources/view_cascaded.png
* contrib/hbide/resources/view_horzstacked.png
* contrib/hbide/resources/view_organized.png
* contrib/hbide/resources/view_tabbed.png
* contrib/hbide/resources/view_tiled.png
* contrib/hbide/resources/view_vertstacked.png
* contrib/hbide/hbide.qrc
+ Added: few more icons.
% Changed: few existing.
* contrib/hbide/ideactions.prg
* contrib/hbide/idedocks.prg
* contrib/hbide/ideedit.prg
+ Rationalized: icon colors, now they present a professional look.
% Fixed: behavior of few MDI area toolbars actions,
went weired after the introduction of MDI concept.
2010-08-05 18:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/view_refresh.png
* contrib/hbide/hbide.qrc
+ Added: one more image.
* contrib/hbide/hbide.prg
* contrib/hbide/idedocks.prg
* contrib/hbide/ideedit.prg
* contrib/hbide/ideeditor.prg
+ Added: "Reload Source" icon on the MDI area top-toolbar.
This facilitates to reload the source from disk. If the source
in the editor in modified state, a confirmation dialog is presented.
! Rearranged: MDI area left-toolbar icons to break them
in more logical units.
! Fixed: under MDI editing mode "Find" icon had stopped to work.
! Fixed: "Horizontal/Vertical" split option was not refreshed
under context menu after first activation.
2010-08-04 08:06 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idedocks.prg
! Visual change: MDI area shows up scrollbars only when needed.
2010-08-04 08:01 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idedocks.prg
% Fixed: a nasty bug which surfaces at some new installation.
Reported on FWH forum.
2010-08-04 01:47 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideshortcuts.prg
! Deleted calls to HB_TRACE(). oErr was not being referenced
after HB_TR_ALWAYS => HB_TR_DEBUG.
2010-08-04 01:28 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideprojmanager.prg
! Populated: Project Properties dialog with properties of project
set as the current one. It necessarily activates the dialog window.
Reported by Parteciepe.
Here is the latest upload at http://hbide.vouch.info/
This is a huge beautification effort, you will like it.
Also it empowers you with many features to manage ideDBU area.
This include some last minute optimizations to following ChangeLog yet
not posted to SNV, though cosmetic one,
2010-08-07 15:35 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/dbf_p1.png
+ contrib/hbide/resources/dbf_p10.png
+ contrib/hbide/resources/dbf_p2.png
+ contrib/hbide/resources/dbf_p3.png
+ contrib/hbide/resources/dbf_p4.png
+ contrib/hbide/resources/dbf_p5.png
+ contrib/hbide/resources/dbf_p6.png
+ contrib/hbide/resources/dbf_p7.png
+ contrib/hbide/resources/dbf_p8.png
+ contrib/hbide/resources/dbf_p9.png
* contrib/hbide/resources/formview.png
* contrib/hbide/resources/home3.png
* contrib/hbide/resources/new.png
* contrib/hbide/resources/print.png
* contrib/hbide/resources/statistics.png
* contrib/hbide/resources/view_organized.png
* contrib/hbide/resources/view_tiled.png
* contrib/hbide/resources/view_vertstacked.png
* contrib/hbide/resources/view_zoomin.png
* contrib/hbide/resources/view_zoomout.png
+ contrib/hbide/resources/zoomin3.png
+ contrib/hbide/resources/zoomout3.png
* contrib/hbide/hbide.qrc
+ Added and refined above images.
* contrib/hbide/idedocks.prg
+ Assigned: "statistics" icon to "Welcome" tab.
! Reworked: many artifacts.
* contrib/hbide/idebrowse.prg
+ Implemented: Edits MDI area icons equivilent functionality
in ideDBU panels also. Now you can view browsers in
organized, cascaded, tiled, maximized, vertically tiled,
horizontally tiled, mode. Verically|Horizontally tiled
modes can be zoomed to fit the user requirements.
However the last close mode is not retained. Next run
always open the "Main" panel with "Organized" view.
+ Assigned: color-differentiated icons to every open browser
window. Now the view is more attractive and allows one to
memorize a browser by color.
With this commit, rounds of beutification for this session ends.
Now concentrating on a really-useful implementation you will
know by the end of next-week.
2010-08-07 15:28 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/xbp.ch
+ Added: few more constants with HBP* prefix to be used
for upcoming HbpMdiArea() class to manage MDI areas containing
sub-windows.
* contrib/hbxbp/xbpwindow.prg
+ Implemented: ERROR HANDLER OnError( ... ) method.
Now it is possible to call Qt object methods directly
with Xbp* objects. For example,
oXbp:oWidget:setLayout( ... )
=>
oXbp:setLayout( ... )
It is a very useful extension and empowers the developer
more freedom.
2010-08-06 18:46 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/exit3.png
+ contrib/hbide/resources/gotoline3.png
+ contrib/hbide/resources/home3.png
* contrib/hbide/resources/save3.png
* contrib/hbide/hbide.qrc
+ Added: three more icons.
* contrib/hbide/ideactions.prg
* contrib/hbide/idebrowse.prg
* contrib/hbide/idedocks.prg
* contrib/hbide/idemisc.prg
! 2nd round of reforms in icons arrangement and colors.
A work-in-progress, please remain patient.
2010-08-06 09:32 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/resources/blockindentl.png
* contrib/hbide/resources/blockindentr.png
+ contrib/hbide/resources/bookmark.png
+ contrib/hbide/resources/close3.png
* contrib/hbide/resources/curlinehilight.png
* contrib/hbide/resources/fullscreen.png
* contrib/hbide/resources/help1.png
* contrib/hbide/resources/horzruler.png
+ contrib/hbide/resources/indent-less.png
+ contrib/hbide/resources/indent-more.png
+ contrib/hbide/resources/open3.png
+ contrib/hbide/resources/save3.png
* contrib/hbide/resources/stream.png
* contrib/hbide/resources/togglelinenumber.png
* contrib/hbide/resources/view_cascaded.png
* contrib/hbide/resources/view_horzstacked.png
* contrib/hbide/resources/view_organized.png
* contrib/hbide/resources/view_tabbed.png
* contrib/hbide/resources/view_tiled.png
* contrib/hbide/resources/view_vertstacked.png
* contrib/hbide/hbide.qrc
+ Added: few more icons.
% Changed: few existing.
* contrib/hbide/ideactions.prg
* contrib/hbide/idedocks.prg
* contrib/hbide/ideedit.prg
+ Rationalized: icon colors, now they present a professional look.
% Fixed: behavior of few MDI area toolbars actions,
went weired after the introduction of MDI concept.
2010-08-05 18:27 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
+ contrib/hbide/resources/view_refresh.png
* contrib/hbide/hbide.qrc
+ Added: one more image.
* contrib/hbide/hbide.prg
* contrib/hbide/idedocks.prg
* contrib/hbide/ideedit.prg
* contrib/hbide/ideeditor.prg
+ Added: "Reload Source" icon on the MDI area top-toolbar.
This facilitates to reload the source from disk. If the source
in the editor in modified state, a confirmation dialog is presented.
! Rearranged: MDI area left-toolbar icons to break them
in more logical units.
! Fixed: under MDI editing mode "Find" icon had stopped to work.
! Fixed: "Horizontal/Vertical" split option was not refreshed
under context menu after first activation.
2010-08-04 08:06 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idedocks.prg
! Visual change: MDI area shows up scrollbars only when needed.
2010-08-04 08:01 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idedocks.prg
% Fixed: a nasty bug which surfaces at some new installation.
Reported on FWH forum.
2010-08-04 01:47 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideshortcuts.prg
! Deleted calls to HB_TRACE(). oErr was not being referenced
after HB_TR_ALWAYS => HB_TR_DEBUG.
2010-08-04 01:28 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideprojmanager.prg
! Populated: Project Properties dialog with properties of project
set as the current one. It necessarily activates the dialog window.
Reported by Parteciepe.
- Pritpal Bedi
- Posts: 154
- Joined: Thu Jun 03, 2010 6:27 am
- Contact:
Re: Pritpal, HBIDE developer, assists us to use it with FWH
A correction:MdaSolution wrote: For the HbIDe I mean...
Perhaps Fivewin for harbour need a own Ide and not 3 Part Ide ....
This to have the same support on the same package...
I had experience with many people ,
I pay many money to have his classes or his application but then these men are gone away ....and now I cannot have his support...
do you think about ? it is Right ?
Do you Remember of VIsualFivewin of Mercado ?
or ... VisualIde of Linares ?
or... VisualIde of Patrickfan ?
and Vcode of P aco ....do you remember also it ?
I love fivewin for Harbour and I hope a day on future to have all ( function classes, Ides, .report designer..) into FIVETECH SOFT PACKAGE !!
1. hbIDE is not a commercial product and it will never be. You can sigh a relief on this point absolutely. You will never be asked to pay anything.
2. hbIDE is not a 3rd party product. It is a Harbour component, the compiler you use to build your application, the grandfther of which is Antonio Linares himself. It is just a note if you are loosing sight of what Harbour is.
3. hbIDE is a pure PRG code and even Tom, Dick and Harry can modify it to suit their way. It is the code, you can hook into your applications, if ever there is a need to be.
Thank you for opening yourself. It has clarified few points to FWH audience.
- Pritpal Bedi
- Posts: 154
- Joined: Thu Jun 03, 2010 6:27 am
- Contact:
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Hi
I am looking forward to have your notes on my TODO list.
Thank you for extending your viewpoints.Adolfo wrote: I would like to thank you for your efforts and your proffesional work, although I'm not using HBIDE for my main project, I'm beggining to use it in some new and small works, it looks really fine, easy to use and very professional.
I have some notes about it, give me some days and I'll send them to you. They are small advices and ideas, but they can help us a lot.
From Chile
I am looking forward to have your notes on my TODO list.
-
- Posts: 17
- Joined: Thu Apr 22, 2010 5:15 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Hi
My Wishlist
The possibility for changing fonts in Dbu OEM 2 ANSI
Switch between Exclusive and Shared mode when opening a database
I know there can be problems "zap" etc
editor Tabs Dbl Click close the Tab
Open include Files like ED4Windows
U Know WInmerge ???
i only can say thank u for this nice work
Jaque
My Wishlist
The possibility for changing fonts in Dbu OEM 2 ANSI
Switch between Exclusive and Shared mode when opening a database
I know there can be problems "zap" etc
editor Tabs Dbl Click close the Tab
Open include Files like ED4Windows
U Know WInmerge ???
i only can say thank u for this nice work
Jaque
-
- Posts: 21
- Joined: Mon Aug 09, 2010 8:58 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
A simple one
Error BASE/1004 Message not found: IDEEDITSMANAGER:SELETALL
Called from __ERRRT_SBASE(0)
Called from IDEEDITSMANAGER:ERROR(0)
Called from (b)HBOBJECT(0)
Called from IDEEDITSMANAGER:MSGNOTFOUND(0)
Called from IDEEDITSMANAGER:SELETALL(0)
Called from (b)IDEDOCKS_BUILDMDITOOLBAR(1058)
Called from QT_QEVENTLOOP_PROCESSEVENTS(0)
Called from QEVENTLOOP:PROCESSEVENTS(0)
Called from APPEVENT(0)
Called from HBIDE:CREATE(562)
Called from MAIN(120)
Thank You
Error BASE/1004 Message not found: IDEEDITSMANAGER:SELETALL
Called from __ERRRT_SBASE(0)
Called from IDEEDITSMANAGER:ERROR(0)
Called from (b)HBOBJECT(0)
Called from IDEEDITSMANAGER:MSGNOTFOUND(0)
Called from IDEEDITSMANAGER:SELETALL(0)
Called from (b)IDEDOCKS_BUILDMDITOOLBAR(1058)
Called from QT_QEVENTLOOP_PROCESSEVENTS(0)
Called from QEVENTLOOP:PROCESSEVENTS(0)
Called from APPEVENT(0)
Called from HBIDE:CREATE(562)
Called from MAIN(120)
Thank You
-
- Posts: 21
- Joined: Mon Aug 09, 2010 8:58 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
I want on my wishlist
At the outputconsole a button to clear the screen
Thank You
At the outputconsole a button to clear the screen
Thank You
- Uwe.Diemer
- Posts: 81
- Joined: Mon Aug 09, 2010 11:00 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Hi
I see whwn i mark with " * " the Line is not marked as commented the color is the same as not Commented
IS this a bug or a feature
thanks
Uwe D aus E
I see whwn i mark with " * " the Line is not marked as commented the color is the same as not Commented
IS this a bug or a feature
thanks
Uwe D aus E
- Uwe.Diemer
- Posts: 81
- Joined: Mon Aug 09, 2010 11:00 am
Re: Pritpal, HBIDE developer, assists us to use it with FWH
One for u
---------------------------
HBQT Runtime Error
---------------------------
Error BASE/1004 No exported method: ADDITEM
Called from ADDITEM(0)
Called from IDESKELETONS:UPDATETREE(528)
Called from IDESKELETONS:DELETE(278)
Called from IDESKELETONS:EXECEVENT(193)
Called from (b)IDESKELETONS_SHOW(153)
Called from QT_QEVENTLOOP_PROCESSEVENTS(0)
Called from QEVENTLOOP:PROCESSEVENTS(0)
Called from APPEVENT(0)
Called from HBIDE:CREATE(564)
Called from MAIN(120)
---------------------------
OK
---------------------------
---------------------------
HBQT Runtime Error
---------------------------
Error BASE/1004 No exported method: ADDITEM
Called from ADDITEM(0)
Called from IDESKELETONS:UPDATETREE(528)
Called from IDESKELETONS:DELETE(278)
Called from IDESKELETONS:EXECEVENT(193)
Called from (b)IDESKELETONS_SHOW(153)
Called from QT_QEVENTLOOP_PROCESSEVENTS(0)
Called from QEVENTLOOP:PROCESSEVENTS(0)
Called from APPEVENT(0)
Called from HBIDE:CREATE(564)
Called from MAIN(120)
---------------------------
OK
---------------------------
- Pritpal Bedi
- Posts: 154
- Joined: Thu Jun 03, 2010 6:27 am
- Contact:
Re: Pritpal, HBIDE developer, assists us to use it with FWH
Till date I am not been able to implement codepages. OEM 2 ANSI is not a font attribute but is codepage related.Jaque Morique wrote: The possibility for changing fonts in Dbu OEM 2 ANSI
Yes, are already on my TODO list.Switch between Exclusive and Shared mode when opening a database
I know there can be problems "zap" etc
Not possible. Infact I am still finding a way to get context menu event on tabs, a design flaw since begining.editor Tabs Dbl Click close the Tab
Well, then we need another interface to fetch "include" paths.Open include Files like ED4Windows
It is on TODO list but with least priority.
Yep, but it is not the scope of hbIDE.U Know WInmerge ???
You are welcome.i only can say thank u for this nice work