Search found 37 matches

by arwen
Wed Nov 15, 2006 1:35 pm
Forum: wxDev-C++
Topic: Properties Lost wxExpand
Replies: 6
Views: 1564

HI
The problem there is too in WxDevC++ 6.10.
With WxBoxSizer in the properties bar of the components there isn't wxExpand voice .

By
by arwen
Wed Nov 15, 2006 1:28 pm
Forum: C++ Development
Topic: wxmathplot class definition [little problem]
Replies: 2
Views: 1110

:oops: OOPS!!

Thanks . (Solved)
by arwen
Wed Nov 15, 2006 10:57 am
Forum: C++ Development
Topic: wxmathplot class definition [little problem]
Replies: 2
Views: 1110

wxmathplot class definition [little problem]

I made my calss to plot a graph but I'll like change the description of the curve when change the Colonna value but I can't solve. My class. /**************************************************************************** * Curve NEW * *******************************************************************...
by arwen
Tue Nov 07, 2006 10:02 am
Forum: wxDev-C++
Topic: Porting project from wxDevC++ 6.9 to 6.10
Replies: 2
Views: 997

Solved

Thanks Sof_T now works all . :D :D :D
by arwen
Mon Nov 06, 2006 1:26 pm
Forum: wxDev-C++
Topic: Porting project from wxDevC++ 6.9 to 6.10
Replies: 2
Views: 997

Porting project from wxDevC++ 6.9 to 6.10

I have developed a little application in wxDevC++ 6.9 . Today I try to install wxDevC++ 6.10 but i can't compile the old project that use mathplot library. I receive a lot of error on this library but in 6.9 version compile rigth. Why ? My project is here : http://aria.francesco.googlepages.com/Acqu...
by arwen
Mon Oct 23, 2006 12:20 pm
Forum: Compiler / Linking / IDE Related
Topic: SOLVED : wxMathPlot compiling on Linux
Replies: 3
Views: 7238

At the URL below there is my little program that I develop
with your aid
So THANKS TO ALL


I hope that It can be useful to someone .

:D :D :D

http://aria.francesco.googlepages.com/f ... uacquarius

:D :D :D
by arwen
Sat Oct 21, 2006 7:45 am
Forum: Platform Related Issues
Topic: Errors using wxFileDialog on LINUX
Replies: 5
Views: 2044

Thanks DoubleMax !!

:D :D :D :D :D
by arwen
Fri Oct 20, 2006 2:35 pm
Forum: Platform Related Issues
Topic: Errors using wxFileDialog on LINUX
Replies: 5
Views: 2044

OOps !! :oops:

How I can know if I compiling on Linux or on windows

something like

#if LINUX
wxString defaultDir = wxT("/");
#end if

#if WINDOWS
wxString defaultDir = wxT("c:\\");
#end if

THANKS
by arwen
Fri Oct 20, 2006 12:17 pm
Forum: Platform Related Issues
Topic: Errors using wxFileDialog on LINUX
Replies: 5
Views: 2044

Errors using wxFileDialog on LINUX

I receive thi errors using wxFileDialog : (Acquarius:4218): libgnomevfs-CRITICAL **: gnome_vfs_get_uri_from_local_path:assertion 'g_path_is_absolute (local_full_path)' failed And so I fails to write file . Below my function : /*************************************************************************...
by arwen
Fri Oct 20, 2006 9:54 am
Forum: Compiler / Linking / IDE Related
Topic: SOLVED : wxMathPlot compiling on Linux
Replies: 3
Views: 7238

EUREKA ! I find the solution and now I try to compile my application on LINUX I can compile and run the example at aria.francesco.googlepages.com/TestPlot.tar.gz modifing only the mathplot.h file as blelow because the difference from a windows & LINUX compiling is there : //#if defined(__GNUG__)...
by arwen
Thu Oct 19, 2006 12:22 pm
Forum: Component Writing
Topic: wxPlotCtrl question
Replies: 3
Views: 1941

wxPlotCtrl question

I don't know how wxPlotControl work but I'm using wxMathPlot You can download it at : http://sourceforge.net/projects/wxmathplot I have only one problem , I can't compile it on LINUX but in windows with wxDev-C++ works fine and I can plot data from a wxGrid (so is possible make it from an array) .
by arwen
Thu Oct 19, 2006 8:23 am
Forum: Compiler / Linking / IDE Related
Topic: SOLVED : wxMathPlot compiling on Linux
Replies: 3
Views: 7238

SOLVED : wxMathPlot compiling on Linux

I have develop a little application on WxDevC++ on windows in order to learn to use wxwidget. In this application I use wxMathPlot http://wxmathplot.sourceforge.net/ and in order to not use wxmathplot like library I include the mathplot.cpp and mathplot.h in my source . In windows with wxDev-C++ I d...
by arwen
Wed Oct 11, 2006 9:39 am
Forum: C++ Development
Topic: wxmathplot [ class definition and recalculate function ]
Replies: 6
Views: 2130

Today my brain is really boiled.

Now works all .

Thanks doublemax =D>
by arwen
Wed Oct 11, 2006 7:38 am
Forum: C++ Development
Topic: wxmathplot [ class definition and recalculate function ]
Replies: 6
Views: 2130

I have modified my class as you suggest me but the problem now is that it return always zero value for y. :( I hame made other errors :( class PHCurve : public mpFXY { int m_idx,m_Elements; wxGrid *m_WxGriglia; public: PHCurve(wxGrid *WxGriglia) : mpFXY(wxT("PH")) { m_idx=0; m_WxGriglia=Wx...
by arwen
Tue Oct 10, 2006 9:28 am
Forum: C++ Development
Topic: wxmathplot [ class definition and recalculate function ]
Replies: 6
Views: 2130

OK I understand how to recalculate the function. :D I must Delete the Layer and then recreate it and readd to the plot window. mpLayer * MyCurve; ........ // adding curve MyCurve = (new MyLissajoux( 125.0 )); m_plot->AddLayer( MyCurve ); ...... // deleting curve m_plot->DelLayer(MyCurve); But I don'...