Combining wx.TextEntryDialog and wx.PasswordEntryDialog

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

···

On 17/04/14 16:43, Rich Shepard wrote:

  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

Gadget/Steve,

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

Thanks,

Rich

···

On Thu, 17 Apr 2014, Steve Barnes wrote:

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.

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" <rshepard@appl-ecosys.com>
To: <wxpython-users@googlegroups.com>
Sent: Thursday, 17 April, 2014 5:43 PM
Subject: [wxPython-users] Combining wx.TextEntryDialog and wx.PasswordEntryDialog

  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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

···

On Friday, April 18, 2014 3:17:18 AM UTC-4, Jacob Kruger wrote:

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” rshe...@appl-ecosys.com

To: wxpytho...@googlegroups.com

Sent: Thursday, 17 April, 2014 5:43 PM

Subject: [wxPython-users] Combining wx.TextEntryDialog and
wx.PasswordEntryDialog

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-user...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

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.

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

···

On Thu, 18 Sep 2014, Vince Gad wrote: