Our group is using Dialogblocks as the main tool to develop GUI interface. We subclassed all the generated code and separated all the event handling code from...
1883
Leo Lam
llama9000
Jun 2, 2005 6:08 am
Just my 2 cents... What you've described doesn't look like a DB feature to me... you will probably have to modify the source code directly. I would put those ...
1884
tfiler_98
Jun 2, 2005 6:08 am
When I try to build a test project in DialogBlocks I am getting the error message: This application has failed to start because mspdb71.dll was not found. ...
1885
Julian Smart
felixcarswell
Jun 2, 2005 6:27 am
Hi Lisong, Event handler functions are not supposed to be virtual; but you can add an event table to the derived class and use base class event handler...
1886
Julian Smart
felixcarswell
Jun 2, 2005 6:29 am
Hi, This is normally due to MSVCDIR in the Paths dialog being set to e.g. a subdirectory of the compiler install path. I'm using: MSVCDIR=c:92;Program...
1887
kjhales
farkleb3rry
Jun 2, 2005 2:04 pm
Is editing the files produced by DialogBlocks a problem? How do I avoid losing my edits when I use DB to tweak my gui layout at a later time? Or is this...
1888
Michael Kesler
kaze_okami
Jun 2, 2005 2:36 pm
Julian, What HTML window widget/class did you use in DialogBlocks to be able to send a link to an external browser? Is this open source? How can I obtain it...
1889
Dave Moor
daisydave2000
Jun 2, 2005 6:13 pm
Hi Only the code between the lines ////@begin ... ////@end ... are effected by DB. Any code you add outside these areas will not be changed/removed by DB....
1890
tfiler_98
Jun 2, 2005 6:14 pm
Thank you for the response. I have my settings of MSVCDIR=C:92;Program Files\Microsoft Visual Studio .NET 2003\Vc7 I have also tried MSVCDIR=C:92;Program...
1891
Morten Nielsen
morten795
Jun 2, 2005 9:56 pm
Hi, No, I think it should be a DialogBlocks feature, since otherwise you wouldn't be able to control creation of widgets from, say, a license file or an...
1892
Jorge A. Montes PĂ...
jorgean24
Jun 2, 2005 9:57 pm
Hello, I am able to change edit font, but this setting is not saved. DialogBlocks 1.98, FreeBSD 5.4. Thank you!...
1893
Leo Lam
llama9000
Jun 2, 2005 10:21 pm
These links worked for me... no errors whatsoever. I've been using the full VS.NET 2003 alongside with MingW :) Just setup a VC+ Debug/Release configuration...
1894
ndivner
Jun 2, 2005 10:31 pm
Hi Michael, There are two approaches you can try both from the contrib page of wxWidgets.org. wxMozilla Code to embed the Mozilla web browser into wxWidgets...
1895
Leo Lam
llama9000
Jun 2, 2005 10:59 pm
I must admit I'm facing a similar situation as well... certain widgets ought to behave differently depending on who the user is, and so far I can only...
1896
Lisong Sun
sun_lisong
Jun 3, 2005 7:18 am
We tried to add event table to the derived class. But we run into these issues. 1. Multi-inheritance (We needed for customized styles and messaging between...
1897
Cole Joplin
cole_joplin
Jun 3, 2005 10:57 pm
Hi, Just a suggestion. We create all the controls we will need using DB. Then we use code defines for control creation under different conditions. It may not...
1898
Julian Smart
felixcarswell
Jun 6, 2005 5:32 pm
Hi Michael, I derived a class from wxHtmlWindow and overrode the OnLinkClicked function to invoke a web browser for the value of linkInfo.GetHref. The code I...
1899
Michael Kesler
kaze_okami
Jun 6, 2005 6:58 pm
... Julian, Thanks, that helps a lot with my project. ~Michael...
1900
Julian Smart
felixcarswell
Jun 7, 2005 10:10 am
... As I said, it should be set to the root of your compiler installation, _not_ a subdirectory such as Vc7. ... That should be correct. ... That shouldn't be...
1901
Julian Smart
felixcarswell
Jun 7, 2005 10:12 am
... Bother, I thought I fixed this in 1.98. I'll look at it again. Thanks, Julian...
1902
Julian Smart
felixcarswell
Jun 7, 2005 10:18 am
Maybe one approach would be for DialogBlocks to create 2 functions: a non-virtual event handler function and a pure virtual function, which is called by the...
1903
Julian Smart
felixcarswell
Jun 7, 2005 10:24 am
I have something similar on my to-do list; each element has a boolean member variable associated with it, and a DynamicLayout() function is generated that...
1904
Morten Nielsen
morten795
Jun 7, 2005 7:28 pm
Hi Cole Well if by "defines" you really mean preprocessor #defines, then I think this is already possible in DB using the "Platform" property available for all...
1905
Rohit Priyadarshi
rpriyadarshi
Jun 9, 2005 7:59 am
I would like to replicate the Visual Studio lookalike interface as a demo/practice and later use the methodology for real projects. What I am looking for is: ...
1906
Rohit Priyadarshi
rpriyadarshi
Jun 10, 2005 7:32 am
There is a refresh problem in DialogBlocks. This can be seen in 2 places. 1. Under "Reference" tab -> "Search" tab make a search for something like wxHtml or...
1907
Leo Lam
llama9000
Jun 10, 2005 7:33 am
Sounds good to me. It would be quite useful in supporting multiple user types or conditions. Would it be a good idea to conditionally create these widgets,...
1908
Rohit Priyadarshi
rpriyadarshi
Jun 10, 2005 7:33 am
How can the external pages be browsed using possibly the wxHtmlWindow? Local pages work fine, but anything like "http://www.yahoo.com" does not work....
1909
Leo Lam
llama9000
Jun 10, 2005 7:33 am
I'd have a slightly simpler request - It'd be great if I am able to close off some of the filename tabs at the bottom of the editing area (just above the...
1910
Julian Smart
felixcarswell
Jun 10, 2005 8:50 am
... Thanks, I've identified an interaction between switching on Windows effects (from the Display applet), and listboxes within notebooks. I'll be making a new...
1911
Julian Smart
felixcarswell
Jun 10, 2005 8:51 am
... wxHtmlWindow is too simple to be used as a web browser. For this, you need to use e.g. wxIE on Windows, wxWebKitCtrl on Mac, and wxMozilla (big!) on Linux....