Search found 120 matches

by HeReSY
Thu May 29, 2008 6:01 am
Forum: C++ Development
Topic: Suggestions for plotting libraries
Replies: 3
Views: 1248

There is a wxPlotCtrl Lib in the additions folder of the wxWidgets library.
Before writeing your own, try this one.

HeReSY
by HeReSY
Wed Feb 06, 2008 1:16 pm
Forum: C++ Development
Topic: playing audio data
Replies: 4
Views: 1299

Audiere Lib is another OS-AudioLib

HeReSY
by HeReSY
Sat Dec 15, 2007 11:55 pm
Forum: General Development
Topic: The best way to send and catch events
Replies: 1
Views: 883

The best way to send and catch events

Hi, i have an application with this structure. wxFrame | |-wxNotebook1 | | | |-wxTreeCtrl | |-wxNotebook2 | |-wxListCtrl Now i want to catch the event when the selection in the wxTreeCtrl changed. After catching the event something should happen in the wxListCtrl. Where is the best place to catch th...
by HeReSY
Fri Dec 07, 2007 6:53 pm
Forum: Compiler / Linking / IDE Related
Topic: wxAui test file problems
Replies: 2
Views: 1250

Hi,

You have to add wxaui28.lib, or whatever it is called, to your project.

HeReSY
by HeReSY
Mon Nov 26, 2007 9:22 am
Forum: C++ Development
Topic: I only want hour and minute in wxDateTime::Now().FormatTime
Replies: 4
Views: 1583

Try the wxString functions

BeforeLast(char) or SubString(from, to)

HeReSY
by HeReSY
Mon Oct 15, 2007 10:51 am
Forum: C++ Development
Topic: Window with No Title Bar
Replies: 4
Views: 3109

DialogBlocks shows always a border around the frame. you could set the style of your frame to 0.

HeReSY
by HeReSY
Tue Oct 02, 2007 5:19 am
Forum: C++ Development
Topic: How to (move && drag) wxdialog without caption?
Replies: 9
Views: 3681

Look at the shape sample of the wxWidget-distri.
You can find there some source how to do this.

HeReSY
by HeReSY
Wed Sep 26, 2007 6:24 am
Forum: C++ Development
Topic: CheckListCtrl derived from wxListCtrl
Replies: 3
Views: 1634

I don't know why you do this, there is allready a class for it.

http://www.wxwidgets.org/manuals/stable ... ecklistbox
by HeReSY
Tue Sep 04, 2007 10:01 am
Forum: C++ Development
Topic: what control is this? does it exist in wx?
Replies: 6
Views: 1956

AFAIK Opera is written with the Qt-Library from Trolltech, and they have only owner drawn controls.

HeReSY
by HeReSY
Sun Aug 05, 2007 6:59 pm
Forum: C++ Development
Topic: context menu icons possible?
Replies: 5
Views: 1424

You can use Icons in every menu. Have a look at wxMenuItem.

HeReSY
by HeReSY
Tue Jul 31, 2007 5:48 am
Forum: General Development
Topic: Tool for Flowcharts
Replies: 4
Views: 2174

OK, than i have to start a new small project for this.

HeReSY
by HeReSY
Mon Jul 30, 2007 1:31 pm
Forum: General Development
Topic: Tool for Flowcharts
Replies: 4
Views: 2174

No, this is only a framework.
I want a tool for me, that creates the flowchart out of my source. I don't want create a flowchart tool.

HeReSY
by HeReSY
Mon Jul 30, 2007 12:35 pm
Forum: General Development
Topic: Tool for Flowcharts
Replies: 4
Views: 2174

Tool for Flowcharts

Hi,

Does anybody know a tool to create flowcharts out of the source?

HeReSY
by HeReSY
Tue Jul 24, 2007 12:14 pm
Forum: C++ Development
Topic: What is wrong with this event class?
Replies: 7
Views: 1844

Now i add some other wxMessageBox's to my code. I can say, the app' tries to process the event, but it did not work. ProcessEvent returns false, so i can't catch the event in any other class. When I try to catch the event in the class where i want to use this control. BEGIN_EVENT_TABLE(TSManagementP...
by HeReSY
Tue Jul 24, 2007 12:05 pm
Forum: C++ Development
Topic: disappearing dot in menus with radio items
Replies: 15
Views: 3758

Why don't you destroy the menu item, when one of your docs closed or changed the name?

HeReSY