Search the web
Sign In
New User? Sign Up
VisualWx
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 331 - 370 of 593   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#370 From: "postatoto" <postatoto@...>
Date: Thu Apr 12, 2007 10:24 pm
Subject: Re: Getting started, not
postatoto
Offline Offline
Send Email Send Email
 
- Download and install Mingw
- Download and install MSYS
- Download and install wxWidgets

- Open VisualWx and from menu "Options\directory" set directories
MSYS,Mirc and wxWidgets

- select menu "tools\build wxWidget"
--- Select build option ( default value is "release-shared" and
      "debug-shared")
--- Press build button

#369 From: "jimmyyumaaz" <jimgalloway@...>
Date: Thu Apr 12, 2007 5:17 pm
Subject: Getting started, not
jimmyyumaaz
Offline Offline
Send Email Send Email
 
I downloaded and installed VisaulWx. I already had MinGw which it
apparently found as it showed in the directories. (Oh, I had to copy
the python25.dll over to the VisualWx folder to get it started.) I
also had wxWidgets on my computer but only as components of wxPython
and wxDev-C++, so I downloaded and installed wxWidgets and put that
address in the wxWidgets Directory.
I'm the first to admit than I'm not good at this kind of stuff, unless
its really obvious what I'm supposed to do, I don't know what to do.
Anyway, I fired it up, created a project, added a wxFrame in the
designer, and clicked build. I expected it to build the thing, then I
would find the 'run' button, click that and up would pop an empty
frame... Nope. When I clicked Build I got a message box "Execution
failed."
When I downloaded wxDev and installed it, it installed MinGw and had
its own copy of wxWidgets so when I did the same as above, up popped
an empty frame. In other words, I didn't have to 'configure' anything,
it came ready to go out of the box. But VisualWx looks like a better
deal and I would really like to try it but I've hit a brick wall and
haven't a clue what to do next.

#368 From: "postatoto" <postatoto@...>
Date: Tue Mar 13, 2007 12:10 am
Subject: Re: Is VisualWx compatible with wxPython 2.8 ?
postatoto
Offline Offline
Send Email Send Email
 
--- In VisualWx@yahoogroups.com, "peterpaulwinter"
<peterpaulwinter@...> wrote:
>
> Hi there,
>
> Is VisualWx compatible with wxPython 2.8 ?

the next release of VisualWx

bye

#367 From: "peterpaulwinter" <peterpaulwinter@...>
Date: Mon Mar 12, 2007 11:04 pm
Subject: Is VisualWx compatible with wxPython 2.8 ?
peterpaulwinter
Offline Offline
Send Email Send Email
 
Hi there,

Is VisualWx compatible with wxPython 2.8 ?

Can it be run with just Python 2.5 and wxPython 2.8 installed or does
it always need a wxPython 2.6 to be present?

Is there any way to use the new controls in wxPython 2.8 from
VisualWx, especially things like AUI?

Blessings,

PeterPaul

#366 From: "postatoto" <postatoto@...>
Date: Tue Feb 13, 2007 8:55 am
Subject: Re: wxChoice
postatoto
Offline Offline
Send Email Send Email
 
ok thanks

bye

#365 From: Иван Ляпунов <lyapunov@...>
Date: Mon Feb 12, 2007 7:41 pm
Subject: wxChoice
dront78
Offline Offline
Send Email Send Email
 
unbelievable generation wxChoice with defined items and selected initial
index
i have no words to describe it just sample

somedialog::VwXinit()
...
...
wxString brush_ch[0]Item[]={wxT("SOLID"),wxT("BACKWARD
DIAGONAL"),wxT("CROSS DIAGONAL"),wxT("FORWARD DIAGONAL"),wxT("CROSS HATCH")
       ,wxT("HORIZONTAL HATCH"),wxT("VERTICAL HATCH"),wxT("TRANSPARENT")};
  brush_ch[0]=new
wxChoice(this,-1,VwXSetwxPoint(75,125),VwXSetwxSize(60,21),8,brush_ch[0]Item);

somewhere in a header

wxChoice *brush_ch[1];

it was wxChoice with items and itemindex (aka Index) = 0
if i not set Index - gode generation os ok

#364 From: Иван Ляпунов <lyapunov@...>
Date: Mon Feb 12, 2007 6:33 pm
Subject: CheckBox editor setting wrong
dront78
Offline Offline
Send Email Send Email
 
check box has a Title property,
but requried a Label,
because Title property is protected (m.b. work only in wx 2.4)
and generated code must be SetLabel()

#363 From: "postatoto" <postatoto@...>
Date: Mon Feb 12, 2007 10:45 am
Subject: Re: Menu Building Problema
postatoto
Offline Offline
Send Email Send Email
 
tnks for report bugs
bye

#362 From: Иван Ляпунов <lyapunov@...>
Date: Sat Feb 10, 2007 4:13 pm
Subject: Menu Building Problema
dront78
Offline Offline
Send Email Send Email
 
there are bugs when buildiing menus

- disabled menu items not working because

>  itemmenu = new wxMenuItem(hMenu,ID_MENU_1,wxT("TEST"),wxT(""),0);
>  itemmenu->Enable(false);
>  hMenu->Append(itemmenu);

code is wrong. must be
>  itemmenu = new wxMenuItem(hMenu,ID_MENU_1,wxT("TEST"),wxT(""),0);
>  hMenu->Append(itemmenu);
>  itemmenu->Enable(false);
also call itemmenu->Check(true) if needed must be after hMenu->Append
but it's now called before :(

and the last one :)
code
> itemmenu = new wxMenuItem(hMenu,ID_MENU_1,wxT("TEST"),wxT(""),0);
working but
> itemmenu = new wxMenuItem(hMenu,ID_MENU_1,wxT("TEST"),wxT(""),2);
not because must be
itemmenu = new wxMenuItem(hMenu,ID_MENU_1,wxT("TEST"),wxT(""),wxITEM_RADIO);
overwise MSVC and gcc call another function, where last variable have
boolean type but
not Menu Item Type
so please repcase numeric constant to
wxITEM_SEPARATOR, wxITEM_NORMAL, wxITEM_CHECK or wxITEM_RADIO

#361 From: "postatoto" <postatoto@...>
Date: Sat Feb 3, 2007 7:47 pm
Subject: Re: stupid bug #2
postatoto
Offline Offline
Send Email Send Email
 
--- In VisualWx@yahoogroups.com, ???? ??????? <lyapunov@...> wrote:
>
> This project cause VisualWx to crush when
> i try to change form style.
>
> i make it from _Dll_WX_NOWXAPP template
> an add one empty dialog
>
> you can download project at
> http://www.mytempdir.com/1200276
> due to yahoo attach removel feature :(
>

ok, tnks for report bug

bye

#360 From: ???? ??????? <lyapunov@...>
Date: Sat Feb 3, 2007 2:46 pm
Subject: stupid bug #2
dront78
Offline Offline
Send Email Send Email
 
This project cause VisualWx to crush when
i try to change form style.

i make it from _Dll_WX_NOWXAPP template
an add one empty dialog

you can download project at
http://www.mytempdir.com/1200276
due to yahoo attach removel feature :(

#359 From: ???? ??????? <lyapunov@...>
Date: Sat Feb 3, 2007 2:43 pm
Subject: stupid bug
dront78
Offline Offline
Send Email Send Email
 
This project cause VisualWx to crush when
i try to change form style.

i make it from _Dll_WX_NOWXAPP template
an add one empty dialog


[Non-text portions of this message have been removed]

#357 From: "walterigo" <walterigo@...>
Date: Fri Jan 26, 2007 7:10 pm
Subject: VisualWx Still being developed
walterigo
Offline Offline
Send Email Send Email
 
Is VisualWX still being developed?

Walter Igo

#356 From: "postatoto" <postatoto@...>
Date: Sun Jan 14, 2007 1:12 am
Subject: Re: Calendar Control
postatoto
Offline Offline
Send Email Send Email
 
> After some research, I have determined that the Bind should be of the
> form self.Bind(wx.calendar.EVT_CALENDAR_DAY,... not
> wx.EVT_CALENDAR_DAY,...  Making this change at least made the error
> disappear!
>
> Is this correct?

yes, it is a bug

bye

#355 From: "Russell" <russell.every@...>
Date: Fri Jan 12, 2007 9:31 pm
Subject: Calendar Control
rje991
Offline Offline
Send Email Send Email
 
Hi,

I added the calendar control and attempted to set the event
EVT_CALENDAR_DAY.  However, when running the application, I received
an the error AttributeError: 'module' object has no attribute
'EVT_CALENDAR_DAY'.

After some research, I have determined that the Bind should be of the
form self.Bind(wx.calendar.EVT_CALENDAR_DAY,... not
wx.EVT_CALENDAR_DAY,...  Making this change at least made the error
disappear!

Is this correct?

Russell

#353 From: Aday Nauzet Surez Rodrguez <adaynsr@...>
Date: Tue Nov 21, 2006 5:38 pm
Subject: Version problem!!!!
adaynsr
Offline Offline
Send Email Send Email
 
Where i can to get an old version of visualwx(w32) that it isn't
needed python 2.5?  If anyone have this file, please send it to
adaynsr@...


Thank you.

#352 From: "postatoto" <postatoto@...>
Date: Wed Nov 8, 2006 2:58 pm
Subject: Re: Runs on Linux?
postatoto
Offline Offline
Send Email Send Email
 
--- In VisualWx@yahoogroups.com, "Hendy Irawan" <gauldong@...> wrote:
>
> Does VisualWx run on Linux? Can it be compiled there?

VisualWx doesn't run on Linux

bye

#351 From: "Hendy Irawan" <gauldong@...>
Date: Wed Nov 8, 2006 3:31 am
Subject: Runs on Linux?
ceefour666
Offline Offline
Send Email Send Email
 
Does VisualWx run on Linux? Can it be compiled there?

--
Hendy Irawan
Web: http://hendy.gauldong.net
Mobile: +62 856 24889899
Yahoo Messenger: ceefour666

#350 From: "postatoto" <postatoto@...>
Date: Sun Oct 29, 2006 4:34 pm
Subject: New version 0.87.2.5
postatoto
Offline Offline
Send Email Send Email
 
New version 0.87.2.5
We have just released a new version of VisualWx (compatible wxWidgets
2.6.3)

bye

#348 From: "postatoto" <postatoto@...>
Date: Thu Oct 19, 2006 7:12 pm
Subject: Re: wxWizard message queue
postatoto
Offline Offline
Send Email Send Email
 
--- In VisualWx@yahoogroups.com, "dront78" <lyapunov@...> wrote:
>
> thre is error in code, generated for wxWizard
>
> void wiz::VwXVwXEvOnWizardPageChanging(wxWizardEvent& event){
>  wxObject *m_wxWin = event.GetEventObject();
>  if(m_wxWin==this){event.Skip(true);wiz_ge(event) ;return;}
>  event.Skip(true);
> }
>
> m_wxWin always equal to _NULL_ instead of _this_
>
> and this is operate upon all wxWizard messages
>
> EVT_WIZARD_CANCEL
> EVT_WIZARD_FINISHED
> EVT_WIZARD_HELP
> EVT_WIZARD_PAGE_CHANGED
> EVT_WIZARD_PAGE_CHANGING

thanks..
bug fixed to the next release

bye

#343 From: "dront78" <lyapunov@...>
Date: Thu Oct 19, 2006 12:29 pm
Subject: wxWizard message queue
dront78
Offline Offline
Send Email Send Email
 
thre is error in code, generated for wxWizard

void wiz::VwXVwXEvOnWizardPageChanging(wxWizardEvent& event){
  wxObject *m_wxWin = event.GetEventObject();
  if(m_wxWin==this){event.Skip(true);wiz_ge(event) ;return;}
  event.Skip(true);
}

m_wxWin always equal to _NULL_ instead of _this_

and this is operate upon all wxWizard messages

EVT_WIZARD_CANCEL
EVT_WIZARD_FINISHED
EVT_WIZARD_HELP
EVT_WIZARD_PAGE_CHANGED
EVT_WIZARD_PAGE_CHANGING

#341 From: "postatoto" <postatoto@...>
Date: Sun Oct 15, 2006 11:39 pm
Subject: Re: Should VisualWx have multilingual support?
postatoto
Offline Offline
Send Email Send Email
 
> It is also missing the ability to use the _(...) convention for texts.

   Add it to the next release

> Or missed I something, and multilingual support exists?

it does not exist

#340 From: "lacreinto" <macrolepiota@...>
Date: Sun Oct 15, 2006 1:58 pm
Subject: Should VisualWx have multilingual support?
lacreinto
Offline Offline
Send Email Send Email
 
After a lot of search I have found VisualWx.
I think it is great. Looks like stabile enough to base my project on
it. It passed my experimental tests, but one thing.

I would use it in an Esperanto dictionary project, and need unicode
characters all over the menu texts and so on.
However wxPython gives a full support for this, VisualWx converts
unicode characters to ? or some other chars.

It is also missing the ability to use the _(...) convention for texts.

Is it possible somehow to build in some multilingual support.
I could give some help if I had the source.

Or missed I something, and multilingual support exists?

Best regards, Lacreinto

#337 From: "postatoto" <postatoto@...>
Date: Fri Sep 15, 2006 9:33 pm
Subject: Re: sizers in visualwx
postatoto
Offline Offline
Send Email Send Email
 
> i try to use the properties bar in the left, after i
> select the sizer/sizer option, but here the rows cols
> is not active.

you can't to set lines and columns for wxBoxSizer(only wxGridSizer
wxFlexGridSizer and wxGridBagSizer)

to read wxWidgets help

bye

#336 From: "postatoto" <postatoto@...>
Date: Fri Sep 15, 2006 9:24 pm
Subject: New version 0.87.2.3
postatoto
Offline Offline
Send Email Send Email
 
bugs fixed

bye

#335 From: "laurstorage" <laurstorage@...>
Date: Fri Sep 15, 2006 1:13 pm
Subject: Re: sizers in visualwx
laurstorage
Offline Offline
Send Email Send Email
 
hi

i made the following steps:

1. create an wx_sdi_python_menu app
2. in project tab/design create another wxFrame
3. select the created frame
4. with dbl click  create an box sizer vertical
inthe project menu, under the Frame1 appear sz3s
sizer, in yellow color, ocuppying all the size of the
frame. this was created without asking me about the
name, rows, columns as in vide tutorial.

i try to use the properties bar in the left, after i
select the sizer/sizer option, but here the rows cols
is not active.

ok.. after that i select the sz3s sizer and with dbl
click i create an box sizer horizontal, named automat
by program sz4s. BUT still i don't know how to put
some properties on this sizer


i hope that my message is clear enough for my problem.



best regards

#334 From: "postatoto" <postatoto@...>
Date: Thu Sep 14, 2006 9:59 pm
Subject: Re: sizers in visualwx
postatoto
Offline Offline
Send Email Send Email
 
> this sizer occupy the entire area of the form, and when i want to put
> a box sizer horizontal, an message appear which say that another sizer
> allready use entire form


you must before to select parent sizer in the project panel, and after
to add the sizer

bye

#333 From: "laurstorage" <laurstorage@...>
Date: Thu Sep 14, 2006 9:42 pm
Subject: sizers in visualwx
laurstorage
Offline Offline
Send Email Send Email
 
Hi!


i am new to visualwx and python and i want to ask something:

based in you flash tutorial about how to use sizers, after i put in my
form an box sizer vertical (like in tutorial), the box with the
properties for this didn't appear - frame 115-117

this sizer occupy the entire area of the form, and when i want to put
a box sizer horizontal, an message appear which say that another sizer
allready use entire form


so, how can i use in VisualWx the flash tutorial frame by frame?


thanks a lot

#332 From: "postatoto" <postatoto@...>
Date: Wed Sep 6, 2006 12:15 am
Subject: New version 0.87.2.2
postatoto
Offline Offline
Send Email Send Email
 
bugs fixed

bye

#331 From: "postatoto" <postatoto@...>
Date: Tue Sep 5, 2006 10:18 am
Subject: Re: GridBag sizer problem on newest Build
postatoto
Offline Offline
Send Email Send Email
 
--- In VisualWx@yahoogroups.com, "walterigo" <walterigo@...> wrote:
>
> How to recreate problem.
> Make a new frame.
> put a GridBag sizer in it.
> put a TextBox (or anything) in the GridSizer.
> run it
>
> you get error message saying
>
>     return _core_.GridBagSizer_Add(*args, **kwargs)
> TypeError: Expected a 2-tuple of integers or a wxGBPosition object.
>
> C:\temp\visualwx>
>

ok tnx

bye

Messages 331 - 370 of 593   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help