Search found 8 matches

by sprite99
Tue Apr 06, 2010 6:44 pm
Forum: C++ Development
Topic: communication between wxThreads, Events
Replies: 2
Views: 1317

communication between wxThreads, Events

Hello again! I'm learning wxWidgets so sorry if it is a simple question. The problem is: I got MyFrame1 which is the main frame in my program. There are 2 buttons: START and STOP and a progress bar (wxGauge). Start button starts a very long simulation so that i want it to be in new thread - there wi...
by sprite99
Tue Apr 06, 2010 4:34 pm
Forum: C++ Development
Topic: communication between frames
Replies: 3
Views: 1322

Thank You Jim!!

It was very helpful:)

Sprite
by sprite99
Mon Apr 05, 2010 8:17 pm
Forum: C++ Development
Topic: communication between frames
Replies: 3
Views: 1322

communication between frames

Hello! It may be stupid but i am new in C++ and wxWidgets;) I've a problem with communication between 2 frames. For example: My_1_frame(which is main program)and My_2_frame In My_1_frame there is a global variable: int i; I push button "Show My_2_frame" and i want a part of the code from M...
by sprite99
Sat Apr 03, 2010 4:45 pm
Forum: wxCode
Topic: Problem with wxPlotdata (wxPlotCtrl) MSVS2008 wxPack
Replies: 1
Views: 1499

Solved:

In file: link_additions.h do:

#pragma comment( lib, GET_WX_LIB_NAME( flatnotebook ) )
//#pragma comment( lib, GET_WX_LIB_NAME( plot ) )
#pragma comment( lib, GET_WX_LIB_NAME( plotctrl ) )
by sprite99
Sat Jan 02, 2010 4:55 pm
Forum: wxCode
Topic: Problem with wxPlotdata (wxPlotCtrl) MSVS2008 wxPack
Replies: 1
Views: 1499

Problem with wxPlotdata (wxPlotCtrl) MSVS2008 wxPack

Hello, i am using wxPack and i want to use wxPlotCtrl in my project. I have created window with one button and wxPlotCtrl object, which i can compile without any problems but when I try to use wxPlotCtr to drow data ( wxPlotData* pdata = new wxPlotData(20); ) there are errors: Error 1 error LNK2005:...
by sprite99
Mon Dec 28, 2009 9:37 pm
Forum: C++ Development
Topic: WXPLOTDATA
Replies: 5
Views: 1411

Hello,

i have the same problem. Have somebody found solution?
by sprite99
Mon Dec 28, 2009 1:27 pm
Forum: Compiler / Linking / IDE Related
Topic: Problem with running the application
Replies: 1
Views: 879

Problem with running the application

Hi, i have a problem (beginner in wxWidgets). I've compiled my application without any errors and using option Debug there is no problem but when i choose option Release after double click on application.exe file there is a dialog: Mismatch between the program and library build version detected. The...
by sprite99
Sat Dec 19, 2009 1:56 pm
Forum: C++ Development
Topic: problem with wxDialog
Replies: 4
Views: 1411

problem with wxDialog

Hello i am writing a simulation and i decided to use wxWidgets (it is my first program with wxWidgets). I created GUI with wxFormBuilder. There is a start button -which starts the simulation and when it starts i want to show wxDialog "Please wait" and wxGauge to show progress. PROBLEM: The...