Search found 350 matches

by Lloyd
Mon Feb 08, 2010 6:14 am
Forum: C++ Development
Topic: Interactive graph plotting
Replies: 2
Views: 1303

Interactive graph plotting

Hi,

Does anybody know a control/library to plot interactive graphs with "zoom", "rotate" kind of options. This is to plot a network of users in a wxWidgets application.

Thanks in advance,
Lloyd
by Lloyd
Wed Aug 12, 2009 10:58 am
Forum: Open Discussion
Topic: wxWidgets vs SWT
Replies: 0
Views: 1672

wxWidgets vs SWT

Hi,
I would like to know the pros and cons of wxWidgets over Java SWT. Please drop your comments...

Thanks,
Lloyd
by Lloyd
Thu Aug 28, 2008 12:27 pm
Forum: C++ Development
Topic: painting on wxListCtrl
Replies: 3
Views: 1407

I just want to highlight a particular text in a list control in report mode, something like a search hit. Do you have another option for this?

Thanks,
Lloyd
by Lloyd
Wed Aug 27, 2008 1:49 pm
Forum: C++ Development
Topic: painting on wxListCtrl
Replies: 3
Views: 1407

painting on wxListCtrl

Hi, I am trying to paint on a ListCtrl, but nothing is drawn. The code snippet is given below. What could be the problem? void SearchHitList::OnPaint(wxPaintEvent& event) { wxPaintDC dc(this); dc.SetDeviceOrigin(0,0); int cnt=GetCountPerPage(); ++cnt; int top=GetTopItem(); if(top>0) --top,++cnt;...
by Lloyd
Fri Jun 20, 2008 10:20 am
Forum: C++ Development
Topic: KeyEvent on ListBox
Replies: 2
Views: 1252

Thans doubloe max. Now I understood the cause of problem.

Lloyd
by Lloyd
Fri Jun 20, 2008 5:08 am
Forum: C++ Development
Topic: KeyEvent on ListBox
Replies: 2
Views: 1252

KeyEvent on ListBox

Hi, I have a wxListBox on a wxDialog Derived class. In the derived class' onstructor ListBox object is made and connected it with the event handler like this SearchDialog::SearchDialog(UserInterface* UserInterfaceptr,wxWindow* parent,wxWindowID id, const wxString& title,const wxPoint& pos,co...
by Lloyd
Wed Jun 04, 2008 3:09 pm
Forum: C++ Development
Topic: vector<wxString> problem ?
Replies: 8
Views: 5140

One more thing I would like to mention is, in release build it works, no problem. But this problem occurs in debug build!! In linux also this works fine.

I tried Jorgen's suggestion, but the same problem repeated :(

Thanks,
Lloyd
by Lloyd
Wed Jun 04, 2008 6:20 am
Forum: C++ Development
Topic: vector<wxString> problem ?
Replies: 8
Views: 5140

vector<wxString> problem ?

Hi, I am using a vector<wxString> in my program and it causes a debug assertion in Windows2000. My application name is pacektanalyzer.exe The error message is as follows... Windows has triggered a breakpoint in Packetanalyzer.exe This may due to corruption in the heap, and includes a bug in PacketAn...
by Lloyd
Tue May 27, 2008 9:40 am
Forum: Compiler / Linking / IDE Related
Topic: Please help in Setting up vc++ 6.0 and wxwidgets
Replies: 5
Views: 1696

goto project settings -> C/C++ tab

slect preprocessor

Add your wxWidgets include path in the Additionnal include directories text control
by Lloyd
Tue May 27, 2008 6:01 am
Forum: Compiler / Linking / IDE Related
Topic: Linking errors
Replies: 2
Views: 1010

Whether your wx build is dll?

Then you have to add WXUSINGDLL macro in your project settings. (in the C++, preprocessor part).

or are you forgetting to add depending wx libraries in the depending libraries list?
by Lloyd
Tue May 27, 2008 5:57 am
Forum: Compiler / Linking / IDE Related
Topic: Please help in Setting up vc++ 6.0 and wxwidgets
Replies: 5
Views: 1696

Were you successful in building wxWidgets? Then what build it is? The file inclusion error is shown when, file is not in the standard path. Add wxWidgets include (header file) path in your project's properties. If you are not successful, Please give more info like what you did actually from the wx i...
by Lloyd
Tue May 27, 2008 4:20 am
Forum: Compiler / Linking / IDE Related
Topic: wxTreeListCtrl as a dll
Replies: 0
Views: 693

wxTreeListCtrl as a dll

Hi, I am using windows 2000, Visual Studio 2005 Team Edition, wxMsw 2.8.7 in Unicode, dll build. I want to build wxTreeListCtrl as a dll. If I "dont" pass the preprocessor macro WXUSINGDLL, gets the error unresolved external symbol in the linking phase. If I pass WXUSINGDLL to the compiler...
by Lloyd
Thu May 15, 2008 10:40 am
Forum: Compiler / Linking / IDE Related
Topic: wxSqlite3 on Visual Studio 2005
Replies: 2
Views: 1208

If you did not add the file sqlite3.def to your VS 2005 project you get a DLL which does not export a single function.
yes Ulrich, this was the problem. Now I included it in my sqlite project and it works. Thank you very much...

Lloyd
by Lloyd
Wed May 14, 2008 10:10 am
Forum: Compiler / Linking / IDE Related
Topic: wxSqlite3 on Visual Studio 2005
Replies: 2
Views: 1208

wxSqlite3 on Visual Studio 2005

Hi, I was successful in compiling wxSqlite3 on windows 2000 and I was also successful in compiling the sample included with wxSqlite3 with a wxWidgets application. In the wxSqlite3 distribution itself utelle stated that it is shipped with prebuilt sqlite3 librariries including the dlls. I am just cu...
by Lloyd
Mon Apr 28, 2008 4:04 am
Forum: C++ Development
Topic: conditional compilation in xrc
Replies: 4
Views: 1289

Thanks Max.