Search found 8 matches

by msksharath
Wed Jan 06, 2016 7:11 am
Forum: wxCode
Topic: In wxFreeChart how to implement pick a curve
Replies: 1
Views: 1770

Re: In wxFreeChart how to implement pick a curve

Dear All, I suggest wxPlotCtrl open source code over wxFreeChart
by msksharath
Wed Dec 30, 2015 1:10 pm
Forum: wxCode
Topic: In wxFreeChart how to implement pick a curve
Replies: 1
Views: 1770

In wxFreeChart how to implement pick a curve

In wxFreeChart how can I implement picking a drawn curve.

Thanks in advance
by msksharath
Thu Sep 03, 2015 1:59 pm
Forum: C++ Development
Topic: Using multi-processing in wxWidgets
Replies: 1
Views: 610

Using multi-processing in wxWidgets

I am using tbb and OpenMP in an application which is built using wxWidgets 2.8.10.

Will there be any issues like unexpected crashes etc...
by msksharath
Mon Jul 13, 2015 6:19 am
Forum: C++ Development
Topic: wxTextCtrl with mouse hover
Replies: 2
Views: 944

Re: wxTextCtrl with mouse hover

Thanks.
by msksharath
Fri Jul 10, 2015 6:04 am
Forum: C++ Development
Topic: wxTextCtrl with mouse hover
Replies: 2
Views: 944

wxTextCtrl with mouse hover

In a wxTextCtrl, suppose the text is as below. ----------------------------------------------------- I want to get highlighted by mouse hovering. ----------------------------------------------------- When hover on the text control, I would like to know, in the text, at which character mouse pointer ...
by msksharath
Fri Nov 14, 2014 12:36 pm
Forum: C++ Development
Topic: In wxDataInputStream, the function to read signed integer
Replies: 3
Views: 989

Re: In wxDataInputStream, the function to read signed intege

Thanks for the help.
And now the issue I am getting is,
I could not use a long varaible as below

long lvalue;
instream >> lvalue; // compiler error.

Here what should I do
by msksharath
Fri Nov 14, 2014 11:41 am
Forum: C++ Development
Topic: In wxDataInputStream, the function to read signed integer
Replies: 3
Views: 989

In wxDataInputStream, the function to read signed integer

I would like to know the function to read/write a signed integer using wxDataInputStream/wxDataOutputStream I am using 2.8.10 version. Here I was using Read32 . Its having an issue with negative values as it is returning unsigned long. What is the way/function I should use to read and write a signed...
by msksharath
Wed Jun 29, 2011 11:58 am
Forum: C++ Development
Topic: How to change panel content on fly?
Replies: 6
Views: 1859

Re: How to change panel content on fly?

use wxCardSizer.

There is an AddCard function to which you can add your new GUI(as a panel or any control).
Then you can call panel or GUI of your choice by ShowCard(int).
Go for this if GUI is so complicated for show/hide.

Else go for show/hide.