Discussion:
Combining wx.TextEntryDialog and wx.PasswordEntryDialog
Rich Shepard
2014-04-17 15:43:02 UTC
Permalink
I'm now using wxPython-3.0.0.0 and would like to learn how (or if) I can
combine wx.TextEntryDialog and wx.PasswordEntryDialog into a single dialog
box for user login and access control to the application. My Web searches
turned up no hits; perhaps my search strings were flawed.

Pointers needed.

TIA,

Rich
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Steve Barnes
2014-04-17 17:18:40 UTC
Permalink
Post by Rich Shepard
I'm now using wxPython-3.0.0.0 and would like to learn how (or if) I can
combine wx.TextEntryDialog and wx.PasswordEntryDialog into a single dialog
box for user login and access control to the application. My Web searches
turned up no hits; perhaps my search strings were flawed.
Pointers needed.
TIA,
Rich
Rich,

Simply create your own dialogue specializing wx.Dialog with a sizer, (or
two), one of each wx.TextEntryDialog and wx.PasswordEntryDialog and at
least an OK button.

Gadget/Steve
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Rich Shepard
2014-04-17 17:25:10 UTC
Permalink
Post by Steve Barnes
Simply create your own dialogue specializing wx.Dialog with a sizer, (or
two), one of each wx.TextEntryDialog and wx.PasswordEntryDialog and at
least an OK button.
Gadget/Steve,

Thanks. I started using a wx.Sizer with static text and wx.TextCtrl
widgets; wx.Dialog looks neater.

Thanks,

Rich
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Jacob Kruger
2014-04-18 07:17:18 UTC
Permalink
Since, for whatever reason, the standard wx.TextEntryDialog etc. seems to
bomb out on my side/system, have started recreating most of the simple input
dialogues using my own classes inheriting from wx.Dialog, etc.

Stay well

Jacob Kruger
Blind Biker
Skype: BlindZA
"Roger Wilco wants to welcome you...to the space janitor's closet..."

----- Original Message -----
From: "Rich Shepard" <***@appl-ecosys.com>
To: <wxpython-***@googlegroups.com>
Sent: Thursday, 17 April, 2014 5:43 PM
Subject: [wxPython-users] Combining wx.TextEntryDialog and
wx.PasswordEntryDialog
Post by Rich Shepard
I'm now using wxPython-3.0.0.0 and would like to learn how (or if) I can
combine wx.TextEntryDialog and wx.PasswordEntryDialog into a single dialog
box for user login and access control to the application. My Web searches
turned up no hits; perhaps my search strings were flawed.
Pointers needed.
TIA,
Rich
--
You received this message because you are subscribed to the Google Groups
"wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Vince Gad
2014-09-18 20:09:16 UTC
Permalink
I am having the same problem, is it something with windows xp to 7 ...
something like this?
Did you had a change to fix it, or just left it ....

cheers!

Vincent
Post by Jacob Kruger
Since, for whatever reason, the standard wx.TextEntryDialog etc. seems to
bomb out on my side/system, have started recreating most of the simple input
dialogues using my own classes inheriting from wx.Dialog, etc.
Stay well
Jacob Kruger
Blind Biker
Skype: BlindZA
"Roger Wilco wants to welcome you...to the space janitor's closet..."
----- Original Message -----
Sent: Thursday, 17 April, 2014 5:43 PM
Subject: [wxPython-users] Combining wx.TextEntryDialog and
wx.PasswordEntryDialog
Post by Rich Shepard
I'm now using wxPython-3.0.0.0 and would like to learn how (or if) I
can
Post by Rich Shepard
combine wx.TextEntryDialog and wx.PasswordEntryDialog into a single
dialog
Post by Rich Shepard
box for user login and access control to the application. My Web
searches
Post by Rich Shepard
turned up no hits; perhaps my search strings were flawed.
Pointers needed.
TIA,
Rich
--
You received this message because you are subscribed to the Google
Groups
Post by Rich Shepard
"wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send
an
Post by Rich Shepard
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Rich Shepard
2014-09-18 20:48:04 UTC
Permalink
Post by Vince Gad
I am having the same problem, is it something with windows xp to 7 ...
something like this?
Vince,

Dunno. Don't do Microsoft, strictly linux for the past 17 years.
Post by Vince Gad
Did you had a change to fix it, or just left it ....
Yes, it now works. Check the archives for responses by Che and Werner.

Rich
--
You received this message because you are subscribed to the Google Groups "wxPython-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Loading...