Search found 72 matches

by computerquip
Fri Mar 06, 2009 5:12 pm
Forum: General Development
Topic: problem using wxPlotWindow
Replies: 5
Views: 1424

What version are you using? I haven't seen wxPlotWindow in documentation since version 2.4.2.
by computerquip
Fri Mar 06, 2009 2:29 pm
Forum: C++ Development
Topic: wxTextCtrl
Replies: 4
Views: 1689

>.> The point of the acceptance system is to give the Accepted answer the status of Accepted Answer. Not to yourself! (lmfao)
by computerquip
Thu Mar 05, 2009 5:21 pm
Forum: Compiler / Linking / IDE Related
Topic: How to build wxWidgets monolithic and with proj wx_dll.dsw
Replies: 2
Views: 809

Haven't found much on this either. There is a small tutorial for 2.4 wxWidgets but it's srsly outdated. Plus it doesn't mention anything with Monolithic builds. I personally haven't even dealt with it by using a pre-setup configuration made by Code::Blocks. Might help a little: http://www.wxwidgets....
by computerquip
Thu Mar 05, 2009 5:20 pm
Forum: Compiler / Linking / IDE Related
Topic: How to build wxWidgets monolithic and with proj wx_dll.dsw
Replies: 2
Views: 809

Haven't found much on this either. There is a small tutorial for 2.4 wxWidgets but it's srsly outdated. Plus it doesn't mention anything with Monolithic builds. I personally haven't even dealt with it by using a pre-setup configuration made by Code::Blocks. Might help a little: http://www.wxwidgets....
by computerquip
Thu Mar 05, 2009 2:56 pm
Forum: C++ Development
Topic: design tool
Replies: 5
Views: 2100

>.> I didn't know FormBuilder was a stand-alone app. I HATED wxSmith inside of Code::Blocks but I think I'll try and give FormBuilder a try when I get home.
by computerquip
Thu Mar 05, 2009 2:47 pm
Forum: C++ Development
Topic: 'PostMessage(WM_NULL)' failed with error 0x00000718
Replies: 5
Views: 3695

The problem is addressed inside the app.cpp code. the message you are getting should literally never happen. When that is called it means that the PostMessage function failed. If you look it up in the MSDN, HERE , you will find a little bit information that you may find will help you. It seems that ...
by computerquip
Thu Mar 05, 2009 3:07 am
Forum: General Development
Topic: gui is ugly on linux
Replies: 8
Views: 3179

I wonder if the X11 version of wxWidgets is any faster....
by computerquip
Thu Mar 05, 2009 2:07 am
Forum: C++ Development
Topic: 'PostMessage(WM_NULL)' failed with error 0x00000718
Replies: 5
Views: 3695

lmfao...This is the code inside app.cpp that causes this error. void wxApp::WakeUpIdle() { // Send the top window a dummy message so idle handler processing will // start up again. Doing it this way ensures that the idle handler // wakes up in the right thread (see also wxWakeUpMainThread() which do...
by computerquip
Wed Mar 04, 2009 11:55 pm
Forum: C++ Development
Topic: code complete
Replies: 1
Views: 635

Here are steps on how to google.

Out of all respect, we aren't here to google for you.
by computerquip
Wed Mar 04, 2009 11:22 pm
Forum: C++ Development
Topic: How to check if a window is valid?
Replies: 8
Views: 2791

Can't you make a reference and then check the reference to see whether or not the data still exists?

EDIT: Might be valid but not very convenient >.>
by computerquip
Wed Mar 04, 2009 11:17 pm
Forum: General Development
Topic: gui is ugly on linux
Replies: 8
Views: 3179

Frank wrote:I do.

We have 2009, not 1970...
lmfao..So if I were to give you some amazingly fast program that does everything perfectly compared to the lower program, there is a chance you would deny that program because the GUI looked ugly?
by computerquip
Wed Mar 04, 2009 8:47 pm
Forum: C++ Development
Topic: downloading a text file...
Replies: 3
Views: 1150

Code: Select all

wxURL or wxHTTP
HTTP and URL should both have the ability to grab a .txt online. I have never used either of them YET and as a result, I cannot be 100% sure on my own fact but please read the documentation and be sure. There is an example inside of wxURL.
by computerquip
Wed Mar 04, 2009 5:26 pm
Forum: General Development
Topic: Should I use a DLL?
Replies: 1
Views: 678

Should I use a DLL?

I've never really looked into it but when I do, I never have actually found an actual answer to my question. POINT: Is it common practice to use a DLL rather than link to the libraries statically? Normally, I would link to the program statically because it's more convenient for testing and passing a...
by computerquip
Wed Mar 04, 2009 5:14 pm
Forum: General Forum Issues
Topic: Shadonet
Replies: 9
Views: 7755

>.>

Didn't mean to, uh, trigger anything here. lol....
by computerquip
Wed Mar 04, 2009 2:47 pm
Forum: C++ Development
Topic: Dialogs and frames
Replies: 6
Views: 4104

class MyFrame : public wxFrame { public: wxFrame bob = new wxFrame(this, -1); } Child frame of a frame? MyFrame is the parent of bob. If you want, you could also extend MyFrame like I did wxFrame. EDIT: My cheesy graph encoder thingy majig has a nice example I could show when I get home from high s...