Search found 125 matches

by chris_bern
Mon Mar 24, 2008 11:37 am
Forum: C++ Development
Topic: wxProcess,IO redirection, monitor & control console app
Replies: 3
Views: 1169

I have some progress on this issue. It seems that there is a bug in the unicode library in terms of using wxOutputStream and wxTextOutputStream. When I use debug and release build wxOutputStream works fine, and I'm able to send command to the console application. When I use unicode debug or unicode ...
by chris_bern
Mon Mar 17, 2008 1:09 am
Forum: C++ Development
Topic: Change sound volume levels
Replies: 2
Views: 917

Thanks. I'll take a look at it.

Chris
by chris_bern
Fri Mar 14, 2008 10:15 am
Forum: C++ Development
Topic: Change sound volume levels
Replies: 2
Views: 917

Change sound volume levels

Does WxWidgets has some functions for manipulating the overall sound settings. More precisely, to mute/unmute and change the volume level of the sound input/output, similar like the windows bult-in volume control.

Regards, Chris
by chris_bern
Mon Mar 10, 2008 8:12 pm
Forum: C++ Development
Topic: wxProcess,IO redirection, monitor & control console app
Replies: 3
Views: 1169

Thanks David, I tried your code but there was a problem. When the string that is send to the console application contains \n the wxWidgets application freezes. If I don't use carriage return it's OK. wxString msgput = wxT("h "); OK wxString msgput = wxT("h \n"); Freeze Chris
by chris_bern
Fri Mar 07, 2008 12:30 pm
Forum: C++ Development
Topic: wxProcess,IO redirection, monitor & control console app
Replies: 3
Views: 1169

wxProcess,IO redirection, monitor & control console app

I need to call and control external console application within wxWidgets GUI application. For ex. to click GUI button to open Console App and then click another GUI button to send "h [Enter]" to the Console Application. When Console App is started independently it waits for user input. So ...