Search found 103 matches

by aquawicket
Fri Sep 04, 2009 9:56 pm
Forum: C++ Development
Topic: VST plugin GUI open/close problems
Replies: 5
Views: 2865

VST plugin GUI open/close problems

I've been able to successful get my app running as a VST plugin. The only problem I'm having is the GUI must be open for the VST processing to work. This is because many of my processing classes require a parent window to work. I use things such as OnIdleEvents etc. So my App is basically all Locate...
by aquawicket
Wed Jul 22, 2009 6:25 pm
Forum: Platform Related Issues
Topic: Problems with wxJoystick and Vista
Replies: 5
Views: 1637

Anyone else running into this issue yet?
I figured it would be a popular error by now since Vista is becoming more popular.

This Link may be of interest, maybe not.
http://technet.microsoft.com/en-us/maga ... 60944.aspx
by aquawicket
Sun May 31, 2009 10:48 pm
Forum: C++ Development
Topic: Have the application restart
Replies: 10
Views: 4183

I did something like this for make an updater for my app. It does require a help app. The parent app sends a WID command to the help app. I ripped some code out for ya to play with. PARENT APP wxProcess temp; temp.Open(wxString::Format(wxT("helper.exe --WID=%d"), ::wxGetProcessId()), wxEXE...
by aquawicket
Sun May 31, 2009 10:28 pm
Forum: C++ Development
Topic: how to make the text label fit inside a button
Replies: 2
Views: 1096

You could use wxBitmapButton and create an image for your button that looks however you want if you want to take that approach.
by aquawicket
Sun May 31, 2009 10:20 pm
Forum: C++ Development
Topic: Replacing words in a Microsoft Word Document.
Replies: 1
Views: 1086

Replacing words in a Microsoft Word Document.

I would like to replace words, or more so {variables} in a Microsoft word documents. I've got as far as to open the document VIA OLE. wxAutomationObject wordObject; wxString docPath = "C:\\original.doc"; wordObject.CreateInstance(wxT("Word.Application")); wordObject.PutProperty(&...
by aquawicket
Fri May 22, 2009 10:37 pm
Forum: C++ Development
Topic: SetItemState() without generating EVT_LIST_ITEM_SELECTED
Replies: 0
Views: 638

SetItemState() without generating EVT_LIST_ITEM_SELECTED

I'm trying to set the state of an item on my wxListCtrl. dataList->SetItemState(i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); Works great, but it triggers a EVT_LIST_ITEM_SELECTED which I do not want. I have different code for that event and I only want it to process if the user clicks, not if I...
by aquawicket
Mon May 11, 2009 5:35 pm
Forum: Platform Related Issues
Topic: Problems with wxJoystick and Vista
Replies: 5
Views: 1637

As of wxMSW 2.8.10 Yes, this is still an issue.
by aquawicket
Thu Mar 12, 2009 5:17 pm
Forum: Platform Related Issues
Topic: Problems with wxJoystick and Vista
Replies: 5
Views: 1637

The more I run code on vista the more I notice it having issues with the registry. It looks as if access is denied when trying to create registry keys, along with the wxJoystick key not in the right place.

Anyone else having issues with wxMSW, Vista and the registry ?
by aquawicket
Tue Mar 03, 2009 12:57 am
Forum: Platform Related Issues
Topic: Problems with wxJoystick and Vista
Replies: 5
Views: 1637

Update:

If I export the missing registry keys on a XP box and import them into the vista box, the joystick starts to work fine and the registry error messages go away. I guess wxJoystick is not supported under vista 100% yet.
by aquawicket
Sat Feb 28, 2009 10:27 pm
Forum: Platform Related Issues
Topic: Problems with wxJoystick and Vista
Replies: 5
Views: 1637

Problems with wxJoystick and Vista

I've noticed a bug when working with wxJoystick on Vista that relates to the registry. When attempting to work with a joystick on a vista box, my wx Application reports that it's unable to find the registry values that it's looking for in 3 spots. Can't open registry key 'HKLM\System\CurrentControlS...
by aquawicket
Thu Feb 12, 2009 7:59 am
Forum: Platform Related Issues
Topic: PopupMenu scope on wxGTK Ubuntu
Replies: 2
Views: 811

I'll test it out, thanks. :)
by aquawicket
Wed Feb 11, 2009 11:32 pm
Forum: Component Writing
Topic: Want A real-time chart just display CPU Usage.
Replies: 2
Views: 2192

There is no wx function to display CPU usage, but here's some code that will do it on Windows.

http://www.codeproject.com/system/cpuusage.asp
by aquawicket
Wed Feb 11, 2009 11:25 pm
Forum: C++ Development
Topic: When debugging, sometimes main window doesn't appear...
Replies: 3
Views: 1025

Can you post your code up to the creation of the frame.
by aquawicket
Wed Feb 11, 2009 11:19 pm
Forum: Platform Related Issues
Topic: PopupMenu scope on wxGTK Ubuntu
Replies: 2
Views: 811

PopupMenu scope on wxGTK Ubuntu

I've been using right click popup windows on wxMsw and wxMac to delete the object successfully. For example, right click a window, popup menu gives option to delete that window. Click it and window destroys itself. However this does not work on wxGTK. After the window is deleted, the PopupMenu is st...
by aquawicket
Tue Feb 10, 2009 7:08 am
Forum: The Code Dump
Topic: GfxWidgets - (Graphic Widgets for wxWidgets)
Replies: 9
Views: 6789

GWidgets has been renamed to GfxWidgets.

public open source SVN available for everyone.

http://code.google.com/p/gfxwidgets/