[wxPython] (no subject)

Two questions:

1. How can I set the font used for wxTextCtrl. I would like a larger font
than the default. What fonts are available?

2. I would like to create an executable so my users can run my app without
having to install python or wxPython. I have used the program py2eve
before...will that work with wxPython?

Thanks!

Greg Lindstrom
Acxiom Corporation, mail: CWY10011149
InfoBase Products Development office: (501) 342-1626
301 Industrial Blvd, Conway, AR, 72032 fax: (501) 336-3911
email: Greg.Lindstrom@acxiom.com

"When the solution is simple, God has spoken"

                                                            Albert Einstein

Two questions:

1. How can I set the font used for wxTextCtrl. I would like a larger font
than the default. What fonts are available?

    font = wxFont(....)
    textctrl.SetFont(font)

Look at the docs for wxFont.

2. I would like to create an executable so my users can run my app without
having to install python or wxPython. I have used the program py2eve
before...will that work with wxPython?

Yes.

···

--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters?
http://wxPython.org Relax with wxPython!