Search found 1475 matches

by lowjoel
Mon Jul 02, 2007 2:13 am
Forum: wxDev-C++
Topic: Popup Menu for wxComboBox
Replies: 2
Views: 2203

Yes, You are using the wrong this pointer to call your function.

You should write:

Code: Select all

ComboControl->Connect(wxID_ANY ,wxEVT_RIGHT_UP,wxMouseEventHandler( MercPoolDialog::ComboRightUp )  , NULL, this);
Joel
by lowjoel
Mon Jul 02, 2007 2:12 am
Forum: wxDev-C++
Topic: Playlist Components
Replies: 1
Views: 1417

Depends on what you want your application to look like.

If you are following Windows Media Player:

1. wxListView/wxListCtrl
2. wxTreeCtrl
3. wxListView/wxListCtrl/wxListBox depending on your level of functionality.

Joel
by lowjoel
Mon Jul 02, 2007 2:10 am
Forum: General Development
Topic: wxWidgets on FreePascal ?
Replies: 1
Views: 1764

IIRC wxWidgets does not have a binding to pascal, so you won't be able to use it in Pascal or Delphi (either way).

The proper admins can double-check my answer, however.

Joel
by lowjoel
Mon Jul 02, 2007 2:09 am
Forum: wxDev-C++
Topic: Property Inspector oddities in wxDevC++
Replies: 1
Views: 1605

For 1, try to restart wxDev-C++. We have quite a lot of "dirty" hacks in code which may" mask" the underlying error. I've requested that these hacks be completely removed, and they may very well have been in our latest builds. I'll dig into the code when my school work is more or...
by lowjoel
Mon Jul 02, 2007 2:05 am
Forum: wxDev-C++
Topic: wxDev-C++ Auto-completion incomplete!
Replies: 4
Views: 3306

We'll be abusing Delphi, quite literally, as we'd be doing quite a lot of complex stuff in it. I originally planned to do a hand-written RDP to do it (like Kdevelop, but unlike C::B which uses Ctags the last I checked), but now I am reconsidering bearing in mind that we will have our plugin architec...
by lowjoel
Sun May 27, 2007 7:46 am
Forum: wxDev-C++
Topic: Compilation takes forever
Replies: 4
Views: 2408

You'll have to post error messages/compile logs etc, we can't just diagnose without even knowing what's going on (like, you can't go to a doctor and ask "doc, can you fix me up" if you don't tell him what your symptoms are)

Joel
by lowjoel
Sun May 27, 2007 7:44 am
Forum: wxDev-C++
Topic: wxDevCpp and CVS ??
Replies: 2
Views: 1889

TBH I have no idea. I didn't write the CVS implementation (or client; but then again none of us wxDev-C++ developers did). So youi are probably better off asking in the Vanilla Dev-C++ forums.

Joel

P/s Devs: Should we document this?
by lowjoel
Sun May 13, 2007 8:09 am
Forum: wxDev-C++
Topic: wxDev-C++ 6.10.2 freezes on file save
Replies: 5
Views: 2379

If you are using VC 05 then probably you're running XP. Under XP the CRT can only be loaded by manifests, so you should not have problems with missing C Dlls. I think you can try installing the VC (or VC SP1) runtime distributable from MS Downloads.

Joel
by lowjoel
Wed May 09, 2007 9:19 am
Forum: C++ Development
Topic: wxBitmapButton with text
Replies: 4
Views: 2943

You should never be using Bitmap Buttons with labels, especially if they do not add meaning to the buttons.

See the Vista UX guidelines: http://msdn.microsoft.com/library/defau ... e/home.asp

Joel
by lowjoel
Tue May 08, 2007 2:09 pm
Forum: wxDev-C++
Topic: wxDev-C++ 6.10.2 released
Replies: 56
Views: 22621

There's no mingw 3.9. It is just the windows API.

You can always upgrade it yourself using the Package Manager.
by lowjoel
Tue May 08, 2007 1:35 pm
Forum: wxDev-C++
Topic: Can't compile using wxWidgets as DLL
Replies: 7
Views: 3912

Can Guru or Tony please help this dude, I personally use a different dir system, but I think that he's got his library path... sorta mixed up.

The Make line is sent to make, it doesn't affect the compiler unless you have overridden the makefile or use MAKE variables in your project options.

Joel
by lowjoel
Tue May 08, 2007 1:32 pm
Forum: wxDev-C++
Topic: wxDev-C++ 6.10.2 released
Replies: 56
Views: 22621

3.4 if I am not mistaken. Or else it may very well be 3.3. Do this: Start > run Type in cmd, press enter. cd C:\Program Files\wxDev-C++\bin (or whether you stored the compiler files) g++ --version You should see something like this: g++ (GCC) 3.4.2 (mingw-special) Copyright (C) 2004 Free Software Fo...
by lowjoel
Mon May 07, 2007 9:36 am
Forum: Platform Related Issues
Topic: Linux: socket sends only one byte
Replies: 4
Views: 2537

97 void wxIRC::SendRaw(wxString string) 98 { 99 if(socket->IsConnected()) 100 { 101 if(string.Right(1) != wxT("\n")) 102 { 103 string.Append(wxT("\n")); 104 } 105 const char *buf = (const char*) string.c_str(); 106 unsigned int len = strlen(buf); 107 108 socket->Write((const voi...
by lowjoel
Sun Apr 29, 2007 11:49 pm
Forum: wxDev-C++
Topic: Problems to get commandline parameters
Replies: 3
Views: 1601

It's defined in the wxApp class.

Joel
by lowjoel
Sat Apr 28, 2007 10:16 pm
Forum: C++ Development
Topic: wxWidgets 2.8.4
Replies: 9
Views: 5666

Chris Elliot (I hope I got his name right) suggested that they release on Monday (April 30), but Vadim Zeitlin prefers it on a Tuesday (May 1). So... yeah it should be soon.

Joel