Search found 2995 matches

by upCASE
Fri Jun 25, 2010 11:29 am
Forum: Forum Announcements
Topic: Handing over the forum
Replies: 6
Views: 23596

Yes, same here... I still code using wxWidgets in my free time, but I can't find the time to do any maintenance anymore, let alone hacking on the forum code. Although I visit daily and post from time to time, I had a feeling like Jorg: The forum deserves better. Maybe it's time for some "fresh ...
by upCASE
Fri Jun 25, 2010 6:29 am
Forum: General Forum Issues
Topic: sloooooow
Replies: 7
Views: 9841

Hi! Apart from what Jason has to say, maybe the DB is causing the trouble. Jorg: Did you try updating the forum code btw. ? I experience this as well, but I noticed that it seem to be a "time" problem. In the morning and (mostly) in the evening it works smooth and fast, but around midday i...
by upCASE
Tue Jun 22, 2010 9:02 am
Forum: C++ Development
Topic: VLC and WxWidgets
Replies: 14
Views: 4880

Re: VLC and WxWidgets

Hi! I'm working on Visual c++ 2006 with wxWidgets and I wonder if it's possible to insert a vlc window into my graphic window Yes, you can do that as VLCs main parts are implemented as a library any application can use. I wrote a small wrapper class for that ( http://forums.wxwidgets.org/viewtopic.p...
by upCASE
Fri May 07, 2010 6:47 am
Forum: wxDev-C++
Topic: How to display a website?
Replies: 6
Views: 2621

For a cross-platform solution, wxWebKit is currently the best solution, but building it is a nightmare. Nightmare is an understatement :-) I tried compiling it in various ways and from various sources, but it never worked. Sad, because WebKitGTK compiled out of the box. WebKit is really great, so i...
by upCASE
Fri May 07, 2010 6:36 am
Forum: Compiler / Linking / IDE Related
Topic: PDFCOM in POWERBUILDER
Replies: 4
Views: 1577

Hmm... Maybe because PowerBuilder doesn't like PDFCOMM.dll...

Honestly: In how far is this question related to wxWidgets??
by upCASE
Fri Apr 30, 2010 7:15 am
Forum: Announcements and Discoveries
Topic: wxSkin - release 0.9 alpha
Replies: 29
Views: 14156

Hi! Glad you could make it work. I should update the code to use 2.9 properly as some things have changed. Maybe I'll find some time for that soon. There's still much to do for wxSkin and I didn't update the code for more than a year.... Anyway: Resizable frames may or may not work. This is somewhat...
by upCASE
Wed Apr 28, 2010 6:32 am
Forum: Announcements and Discoveries
Topic: wxSkin - release 0.9 alpha
Replies: 29
Views: 14156

garrizano wrote:Still do not know what is wrong with the handlers of the images.
...
I do not know if there will be a problem with this configuration.
Maybe it's because you use 2.9.1. I created wxSkin using the 2.8 release. Maybe I find some time and compile it with a newer version to see what the error might be.
by upCASE
Tue Apr 27, 2010 6:50 am
Forum: Announcements and Discoveries
Topic: wxSkin - release 0.9 alpha
Replies: 29
Views: 14156

garrizano wrote:I have another question, can I resize a window when using wxSkin?
There is only limited support for that using wxSkinFrame in contrast to wxSkinSimpleFrame (which can not be resized). It isn't perfect, but may work. Simply try it out :-)
by upCASE
Mon Apr 26, 2010 9:20 am
Forum: Announcements and Discoveries
Topic: wxSkin - release 0.9 alpha
Replies: 29
Views: 14156

Hi!

Call wxInitAllImageHandlers() in your OnInit() method.

As for the messagebox, what happens if you click cancel?
Maybe my example images are not o.k., maybe something else changed, can't tell.
by upCASE
Sat Apr 24, 2010 8:41 pm
Forum: Announcements and Discoveries
Topic: wxSkin - release 0.9 alpha
Replies: 29
Views: 14156

garrizano wrote:I compiled my project with source files wxSkin and when I run I always get an error that says: "No handlers found for image type".
What have I done wrong?
Try using wxInitAllImageHandlers() before calling any wxSkin related code.
by upCASE
Thu Apr 15, 2010 8:45 am
Forum: C++ Development
Topic: Continuose frame show
Replies: 5
Views: 1588

Hi! My problem is to show in a wxDialog the captured frames in a continuos manner just like a real time process. Try creating a wxPanel derived class, process the OnPaint event for the panel and draw the image on the panel using wxPaintDC. Add this panel to the dialog. When you process the data and ...
by upCASE
Mon Mar 29, 2010 6:41 am
Forum: C++ Development
Topic: Alternative to wxHTMLWindow
Replies: 5
Views: 1952

Hi! Well, this is insane. I'm changing over 100 lines here and it still will not compile under Code:Blocks. What platform are you on? I didn't try Windows, but compiling on Linux using the provided makefile is a pain and didn't work at all for me. What I did is altering the makefile so that it uses ...
by upCASE
Fri Mar 26, 2010 7:20 am
Forum: C++ Development
Topic: Ny Next project - your inputs
Replies: 2
Views: 1153

Re: Ny Next project - your inputs

Hi! I want next to code XHTML/JS/PHP IDE. I need to know what I need to know to make sure I accomplish that. I don't know if I use wxScintilla or wxStyledText and then how to enable syntax, code completion, to advanced things like debugger and so forth. I have been programming in PHP/HTML/JS but i h...
by upCASE
Tue Mar 23, 2010 9:58 am
Forum: C++ Development
Topic: wxStatusBar with more them one row
Replies: 3
Views: 1286

Re: wxStatusBar with more them one row

anwerlin wrote: ist it possible to create a wxStatusBar with more then one row?
No. More than one column, sure, but more than one row not. That is unless you create some pseudo widget that you could add stuff to with more than one row. But I suspect that there is no native support for that on any platform.
by upCASE
Fri Mar 19, 2010 12:13 pm
Forum: C++ Development
Topic: Convert float to formatted wxString
Replies: 11
Views: 3853

wxString jk = wxString::Format(wxT("%10d %.2f"),j); I get weird (incorrect) result... Sure. In your case wxString::Format() expects a decimal and a float, but you only pass in "j" as the decimal. The float is missing, hence the "unexpected", yet to be expected, behavior.