Search found 17 matches

by TGT
Thu Sep 07, 2006 6:03 pm
Forum: C++ Development
Topic: [wxMemoryDC] wxWdigets 2.4 -> 2.6
Replies: 4
Views: 1453

*umpf* You are right -- I did not :roll:

Quite strange behaviour -- anyway thanks a million ;)

Tom.
by TGT
Thu Sep 07, 2006 12:59 pm
Forum: C++ Development
Topic: [wxMemoryDC] wxWdigets 2.4 -> 2.6
Replies: 4
Views: 1453

Hi,

this didn't solve the problem :(

Thanks, Tom.
by TGT
Wed Sep 06, 2006 6:15 pm
Forum: C++ Development
Topic: [wxMemoryDC] wxWdigets 2.4 -> 2.6
Replies: 4
Views: 1453

[wxMemoryDC] wxWdigets 2.4 -> 2.6

Hi, a while ago (I guess using wxWidgets 2.4) I wrote a piece of code, which draws text onto a bitmap. bmp = new wxBitmap( wxImage( wxT( "pic.png" ), wxBITMAP_TYPE_PNG ) ); setCaption( ); wxStaticBitmap *stBmp = new wxStaticBitmap( this, wxID_ANY, *display ); // .... void Test::SetCaption(...
by TGT
Sun Mar 05, 2006 6:13 pm
Forum: C++ Development
Topic: Draw onto the transparent area of an image.
Replies: 2
Views: 924

Hmm - I wasn't able to test this ...quite strange situation: error: 'class wxImage' has no member named 'GetAlpha' Today this is the second time something like that happend to me :? (Set/GetMinSize, Set/GetMaxSize) Of course both are mentioned in the online documentation.... and no I'm not using wx ...
by TGT
Sun Mar 05, 2006 10:12 am
Forum: C++ Development
Topic: Draw onto the transparent area of an image.
Replies: 2
Views: 924

Draw onto the transparent area of an image.

Hi,

is it somehow possible to draw onto the transparent area of an image!?

Thanks, Tom
by TGT
Sun Mar 05, 2006 6:20 am
Forum: C++ Development
Topic: wxStaticBitmap +text
Replies: 3
Views: 1078

You have to take wxMemoryDC and draw directly onto the wxBitmap object of the wxStaticBitmap!
by TGT
Sat Mar 04, 2006 1:13 pm
Forum: C++ Development
Topic: once again a problem with panels and sizers (w/ screenshot)
Replies: 2
Views: 1662

void SetMaxSize(const wxSize& size)
void SetMinSize(const wxSize& size)
http://www.wxwidgets.org/manuals/2.6.2/ ... setmaxsize

wxFIXED_MINSIZE
http://www.wxwidgets.org/manuals/2.6.2/ ... wxsizeradd

!??
by TGT
Sat Mar 04, 2006 10:54 am
Forum: C++ Development
Topic: wxStaticBitmap +text
Replies: 3
Views: 1078

*arg* another time forgot the description of the behavior :oops: sorry. :!: I do see the picture/ bitmap but the text isn't visible. The wxBitmapCaption is used as follows: wxImage::AddHandler(new wxPNGHandler); wxImage img(wxT("picutre.png"), wxBITMAP_TYPE_PNG); wxBitmapCaption *bc = new ...
by TGT
Sat Mar 04, 2006 8:50 am
Forum: C++ Development
Topic: wxStaticBitmap +text
Replies: 3
Views: 1078

wxStaticBitmap +text

Hi, the idea was to simple but a text onto a bitmap I guess this is really basic stuff but it seems missing something :? .h // headers class wxBitmapCaption : public wxStaticBitmap { public: // the 3 constructors of wxStaticBitmap wxBitmapCaption(); wxBitmapCaption( ... ); void OnPaint(wxPaintEvent ...
by TGT
Tue Feb 28, 2006 5:21 pm
Forum: C++ Development
Topic: Serial Communication
Replies: 0
Views: 726

Serial Communication

Hi, at the moment I'm playing around with my serial port :) and everything works quite well, but if I start my program after the device started transfering data, my application seems to hang in an unfinite loop. In the other case (the app is started and waits for the incoming data) the behaviour is ...
by TGT
Tue Feb 28, 2006 4:14 pm
Forum: C++ Development
Topic: ShowFullScreen -> gdk_x_error()
Replies: 2
Views: 1037

Oh damn.... for any reason, I though this is a german message board :oops: I was a bit disappointed that really _nobody_ answered :roll: *hehe* For all those who look for the reason for the previous mentioned error-msg and aren't able to filter out the necessary information from above: Use ShowFullS...
by TGT
Tue Feb 28, 2006 12:10 pm
Forum: C++ Development
Topic: ShowFullScreen -> gdk_x_error()
Replies: 2
Views: 1037

Okay --- Ich bin nun doch auf der wxWidgets Mailing List f
by TGT
Sat Feb 25, 2006 7:14 pm
Forum: C++ Development
Topic: ShowFullScreen -> gdk_x_error()
Replies: 2
Views: 1037

ShowFullScreen -> gdk_x_error()

Hi,
mein kleines Test-Programm erh
by TGT
Thu Dec 29, 2005 4:10 pm
Forum: wx.NET
Topic: DllNotFoundException
Replies: 0
Views: 13234

DllNotFoundException

Hi, I tried to run wxnet under windows, but all i got is a System.DllNotFoundException: Unable to load DLL 'wx-c' at wx.App.wxApp_ctor() at wx.App..ctor( ) at test.Main( ) for my own application (but the mentioned dll is in the same folder as the app and in system32) and the samples of the prebuild ...
by TGT
Sun Dec 18, 2005 7:53 pm
Forum: wx.NET
Topic: StatusBar +BoxSizer
Replies: 3
Views: 5701

...You have to skip the event! :?

Code: Select all

  public void OnSize( object sender, Event e )
  {
    // do something
    e.Skip( );
  }
Tom.