Search found 65 matches

by knightmare0
Mon May 25, 2009 7:15 am
Forum: wxDev-C++
Topic: How to imcorperate multiple exe into one exe?
Replies: 1
Views: 1100

How to imcorperate multiple exe into one exe?

I'm writing a program that needs a secondary executable to operate, and I'm just wonder is there a way to incorporate that exe into my program, so everytime my program launch it will also execute the secondary exe? and I would like it to be invisible, and all in one exe. How can I do this in Dev C++?
by knightmare0
Mon Jan 19, 2009 3:39 am
Forum: C++ Development
Topic: How to use WMP visualization when using wxMediaCtrl?
Replies: 0
Views: 551

How to use WMP visualization when using wxMediaCtrl?

if I have WMP 10 as my wxMediaCtrl backend how do I use WMP's visualization when playing music?
by knightmare0
Mon Jan 19, 2009 3:30 am
Forum: wxDev-C++
Topic: How to Call WMP visualization?
Replies: 2
Views: 1066

why is it the wrong forum?
by knightmare0
Thu Jan 15, 2009 1:43 pm
Forum: wxDev-C++
Topic: How to Call WMP visualization?
Replies: 2
Views: 1066

How to Call WMP visualization?

Anyone know how I can enable and display WMP's visualization?
by knightmare0
Tue Dec 16, 2008 2:32 am
Forum: C++ Development
Topic: window bring to front, raise, show, TaskBarIcon, tooltips
Replies: 13
Views: 11583

It took some time to figure out but this worked for me: ParentWindow->Iconize(false); // restore the window if minimized ParentWindow->SetFocus(); // focus on my window ParentWindow->Raise(); // bring window to front ParentWindow->Show(true); // show the window I dont know if this is over kill but ...
by knightmare0
Wed Dec 03, 2008 3:03 am
Forum: Open Discussion
Topic: wxgrid problems
Replies: 3
Views: 12370

wxgrid problems

anyone notice wxGrid have some weird issues? for example when we call ->GetSelectedCells() it only returns the cells thats being selected using crt + click method, when shift or other methods are used it dose not register or counted in the array. This just dont make much sense. my suggestion is this...
by knightmare0
Wed Dec 03, 2008 12:06 am
Forum: C++ Development
Topic: Onscreen Keyboard for disabled, would like some help
Replies: 3
Views: 1284

well, I know about the MS onscreen keyboard, but I want to make one(I mentioned in my original post) with custom quick launch buttons for quick access. for example if he needs to open app "A" he can just press a button.
by knightmare0
Tue Dec 02, 2008 3:57 pm
Forum: C++ Development
Topic: Onscreen Keyboard for disabled, would like some help
Replies: 3
Views: 1284

Onscreen Keyboard for disabled, would like some help

Hi, I have been thinking, I know a disabled person, he can only move a mouse and click a button, so typing for him is really hard. I would like to write a simple code that will put a onscreen keyboard for him to use. I have no idea where to start, can anyone point me in the right direction? I'm thin...
by knightmare0
Tue Dec 02, 2008 12:21 pm
Forum: wxDev-C++
Topic: project just stopped working got Makefile.win [Build Error]
Replies: 2
Views: 1267

alright just got what the problem is, it turns out its a lib linking issue :)
by knightmare0
Tue Dec 02, 2008 11:42 am
Forum: wxDev-C++
Topic: project just stopped working got Makefile.win [Build Error]
Replies: 2
Views: 1267

project just stopped working got Makefile.win [Build Error]

Hi, I have no idea whats going on, before my project worked fine, and when I tried to compile it now it shows this

Makefile.win [Build Error] exe error 1

can anyone suggest how to fix this?

thanks
by knightmare0
Tue Jul 08, 2008 10:37 pm
Forum: C++ Development
Topic: Using Shift + click to select Cells in wxGrid will not count
Replies: 3
Views: 1121

can anyone confirm this is a bug? or is there something wrong with my wxWidget?
by knightmare0
Mon Jun 30, 2008 10:41 pm
Forum: wxWidgets Development (Chinese)
Topic: wxWidgets 2.8.8发布了!
Replies: 5
Views: 3442

可以直接用wxDEV里面的Updater来update吗?
by knightmare0
Mon Jun 30, 2008 10:34 pm
Forum: wxDev-C++
Topic: WxGrid: How to get coordinates of the selected cell
Replies: 4
Views: 3020

Hey valex, I'm working on a similar thing, Im trying to make a copy and past function for multiple cells. and as far as I know, the GetRow() function returns an Int. btw, have you noticed that when you use Shift + Click to select cells it does not register? the array only register the ctrl + click f...
by knightmare0
Mon Jun 30, 2008 10:32 pm
Forum: C++ Development
Topic: Using Shift + click to select Cells in wxGrid will not count
Replies: 3
Views: 1121

oh lord, I have to check every cell? but I have a lot of cells...

I tried writing code to keep track of selected cells by monitoring keys pressed, but its really messy.

any other way?
by knightmare0
Mon Jun 30, 2008 10:27 pm
Forum: C++ Development
Topic: wxMediaCtrl to replay the loaded file after its finished?
Replies: 3
Views: 1071

Hi Jim, thanks for the reply, I tried, but since I have multiple wxMediaCtrl going at the same time, even when an event is registered, I was unable to determine which wxMediaCtrl it came from. How do I distinguish which mediactrl the event came from?