is there a method/property called Show/Shown ?
On Mon, 10 Aug 2009 07:55:42 -0700 (PDT), azrael
wrote:
> Is there maybe a method bounded to the class SpinCtrl() that could
> hide the widget. One that is maybe also implemented in any other
> control.
>
> self.spcKvadDo = wx.SpinCtrl(id=-1, initi
Il Mon, 10 Aug 2009 07:55:42 -0700 (PDT), azrael ha scritto:
> Is there maybe a method bounded to the class SpinCtrl() that could
> hide the widget. One that is maybe also implemented in any other
> control.
AFAIK, any widget can be made invisibile calling the .Show(False) method of
the container
On Apr 13, 9:12 pm, Clemens Anhuth wrote:
> isam uraiqat wrote:
> > I HATE VISTA!!
>
> > it just needed to be installed on the site packages library, because
> > it was installed by default on program files,
>
> > hope this might help another poor vista user
>
> Hello.
>
> Can you explain?
>
> Doe
isam uraiqat wrote:
I HATE VISTA!!
it just needed to be installed on the site packages library, because
it was installed by default on program files,
hope this might help another poor vista user
Hello.
Can you explain?
Does the installer default to the wrong directory (installer fault)?
On Fri, 23 May 2008 06:40:13 -0700 (PDT), Gandalf <[EMAIL PROTECTED]>
wrote:
>On May 23, 3:29 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote:
>> On May 23, 8:24 am, Gandalf <[EMAIL PROTECTED]> wrote:
>>
>> > I try to reach a specific wx StaticText element's text and to change
>> > it by clicking on a
On May 23, 3:29 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote:
> On May 23, 8:24 am, Gandalf <[EMAIL PROTECTED]> wrote:
>
> > I try to reach a specific wx StaticText element's text and to change
> > it by clicking on a button
>
> > now let's say the this is my element:
>
> > wx.StaticText(panel, 15,
On May 23, 8:24 am, Gandalf <[EMAIL PROTECTED]> wrote:
> I try to reach a specific wx StaticText element's text and to change
> it by clicking on a button
>
> now let's say the this is my element:
>
> wx.StaticText(panel, 15, "Hello" ,(30, 70) , style=wx.ALIGN_CENTRE)
>
> And this is my EVT_BUTTON
[EMAIL PROTECTED] wrote:
>
>I tried to follow wxPython Demo examples to understand it better. I
>used wxGlade to generate my code from the GUI builder.
>
>When I try to see the code for Menu and Menubar I see a little mismatch
>in the way functions are being used.
>
>For example, wxGlade produces c
Thanks, I use Ubuntu Linux and there is tool called xchm which lets you
do that.
RunLevelZero wrote:
> Well you will need to download the " docs demos and tools " and that
> contains a windows help file that is easily searchable. If you run
> Linux there is a Gnome tool to run the help file in L
Well you will need to download the " docs demos and tools " and that
contains a windows help file that is easily searchable. If you run
Linux there is a Gnome tool to run the help file in Linux if you so
wish.
--
http://mail.python.org/mailman/listinfo/python-list
Can we download wxPython doc as an offline folder because if I dont
have internet its difficult to have the access to all the docs.
--
http://mail.python.org/mailman/listinfo/python-list
I think you are looking for a drag and drop GUI builder? If so then
http://wxglade.sourceforge.net/ -- wxglade is what you need. There are
some others but this is what I prefer myself.
--
http://mail.python.org/mailman/listinfo/python-list
Hi jojoba. I work with wxPython too but cannot answer this question.
There is an active and friendly community of wxPython users on
[EMAIL PROTECTED]
Robin Dunn, the lead person behind wxPython and others provide excellent
advice and support on this list.
Regards,
David
jojoba wrote:
> Hi
> I
vpr wrote:
> I've had some problems, it seems that they dont render well in Linux. I
> tried it with Ubuntu Breezy.
I suspect that the animation may cause problems because of all the
refreshes. Perhaps you can render the window first then save it as a
bitmap. A simple blit should be better for t
I've had some problems, it seems that they dont render well in Linux. I
tried it with Ubuntu Breezy.
--
http://mail.python.org/mailman/listinfo/python-list
vpr wrote:
> Hi
>
> Does anyone have some example code to create a wx dialog that apears
> off screen on the bottom right hand corner and slides up into the
> screen ?
>
Andrea Gavana does..
http://xoomer.virgilio.it/infinity77/eng/freeware.html#toasterbox
Will McGugan
--
http://www.willmcgug
André wrote:
> I needed to scale the image down to 16 by 16 on my Windows computer
to
> make it work.
Hello André,
# I actually ran this code ;)
import wx
app = wx.PySimpleApp()
class myframe(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,None,-1,"Icon Frame",
size=(100,100),pos=(-1,-1))
M.E.Farmer wrote:
> Messed up it does need the dots.
> This should handle bmp ico png gif and several other formats.
> Still need to be 32 by 32
>
> wx.InitAllImageHandlers()
> image = wx.Image(file, wx.BITMAP_TYPE_ANY)
> image = image.ConvertToBitmap()
>
> icon = wxEmptyIcon()
> icon.CopyFromBitm
Messed up it does need the dots.
This should handle bmp ico png gif and several other formats.
Still need to be 32 by 32
wx.InitAllImageHandlers()
image = wx.Image(file, wx.BITMAP_TYPE_ANY)
image = image.ConvertToBitmap()
icon = wxEmptyIcon()
icon.CopyFromBitmap(image)
frame.SetIcon(icon)
Hth,
Jive wrote:
> How the heck do you set the icon on a frame using a .ico file, or a
.bmp
> file, or whatever? How do you find out how to do something like
that?
> Apparently there is no documentation to speak of. I tried looking
the in
> the demo program, but I didn't find the secret..
Hello Jive,
20 matches
Mail list logo