Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
PPG with star password input?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Hans Payer  
View profile  
 More options Nov 24 2009, 2:17 pm
From: Hans Payer <hanspa...@gmail.com>
Date: Tue, 24 Nov 2009 11:17:46 -0800
Local: Tues, Nov 24 2009 2:17 pm
Subject: PPG with star password input?

Is there to modify a ppg layout string parameters so as a user type in a
password into a text field, the characters are displayed as stars? Like
"******"?

I can't seem to find anything. if it worked on Windows and Linux, that would
be great also.

Thanks

Hans


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stephen Blair  
View profile  
 More options Nov 24 2009, 2:50 pm
From: Stephen Blair <Stephen.Bl...@autodesk.com>
Date: Tue, 24 Nov 2009 11:50:17 -0800
Local: Tues, Nov 24 2009 2:50 pm
Subject: RE: PPG with star password input?

Maybe you could use dscontrol with the ES_PASSWORD style?

Search the sdk doc for dscontrol.

Stephen Blair
Product Support Team Lead, Softimage
Montreal, Quebec, Canada
Blog<http://xsisupport.wordpress.com/> | KB<http://autodesk.com/softimage-support> | Wiki<http://autodesk.com/softimage-kb>

If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>.
Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.

From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer
Sent: Tuesday, November 24, 2009 2:18 PM
To: softim...@listproc.autodesk.com
Subject: PPG with star password input?

Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?

I can't seem to find anything. if it worked on Windows and Linux, that would be great also.

Thanks

Hans

  winmail.dat
14K Download

    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hans Payer  
View profile  
 More options Nov 24 2009, 4:35 pm
From: Hans Payer <hanspa...@gmail.com>
Date: Tue, 24 Nov 2009 13:35:37 -0800
Local: Tues, Nov 24 2009 4:35 pm
Subject: Re: PPG with star password input?

It looks like it could do the trick. but there's not much reference in the
SDK. I got this so far by guessing but the 3rd line fails

item = layout.AddItem("password", "", "dscontrol")
item.SetAttribute( "Class", "Edit" )
item.SetAttribute( "siUIStyle", "ES_PASSWORD")

I also tried:
item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the
ES_PASSWORD doesn't do anything
item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same
item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same

Any tips where I can find dscontrol info? Google isn't giving me much.

On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair
<Stephen.Bl...@autodesk.com>wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Xavier Lapointe  
View profile  
 More options Nov 24 2009, 4:40 pm
From: Xavier Lapointe <xl.mailingl...@gmail.com>
Date: Tue, 24 Nov 2009 16:40:14 -0500
Local: Tues, Nov 24 2009 4:40 pm
Subject: PPG with star password input?
did you try 0x0020 or 32 instead of ES_PASSWORD ?


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Guillaume Laferriere  
View profile  
 More options Nov 24 2009, 4:40 pm
From: Guillaume Laferriere <Guillaume.Laferri...@autodesk.com>
Date: Tue, 24 Nov 2009 13:40:51 -0800
Local: Tues, Nov 24 2009 4:40 pm
Subject: RE: PPG with star password input?

I think this is an enum value from Microsoft in c:\Program Files\Microsoft SDKs\Windows\v6.0A\Include\WinUser.h.
Try to use the actual integer values.
 * Edit Control Styles
 */
#define ES_LEFT             0x0000L
#define ES_CENTER           0x0001L
#define ES_RIGHT            0x0002L
#define ES_MULTILINE        0x0004L
#define ES_UPPERCASE        0x0008L
#define ES_LOWERCASE        0x0010L
#define ES_PASSWORD         0x0020L
#define ES_AUTOVSCROLL      0x0040L
#define ES_AUTOHSCROLL      0x0080L
#define ES_NOHIDESEL        0x0100L
#define ES_OEMCONVERT       0x0400L
#define ES_READONLY         0x0800L
#define ES_WANTRETURN       0x1000L
#if(WINVER >= 0x0400)
#define ES_NUMBER           0x2000L
#endif /* WINVER >= 0x0400 */

From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer
Sent: November-24-09 4:36 PM
To: softim...@listproc.autodesk.com
Subject: Re: PPG with star password input?

It looks like it could do the trick. but there's not much reference in the SDK. I got this so far by guessing but the 3rd line fails

item = layout.AddItem("password", "", "dscontrol")
item.SetAttribute( "Class", "Edit" )
item.SetAttribute( "siUIStyle", "ES_PASSWORD")

I also tried:
item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the ES_PASSWORD doesn't do anything
item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same
item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same

Any tips where I can find dscontrol info? Google isn't giving me much.

On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair <Stephen.Bl...@autodesk.com<mailto:Stephen.Bl...@autodesk.com>> wrote:
Maybe you could use dscontrol with the ES_PASSWORD style?

Search the sdk doc for dscontrol.

Stephen Blair
Product Support Team Lead, Softimage
Montreal, Quebec, Canada
Blog<http://xsisupport.wordpress.com/> | KB<http://autodesk.com/softimage-support> | Wiki<http://autodesk.com/softimage-kb>

If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:chris.maho...@autodesk.com><mailto:sy.down...@autodesk.com<mailto:sy.down...@autodesk.com>>.
Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.

From: softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com> [mailto:softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com>] On Behalf Of Hans Payer
Sent: Tuesday, November 24, 2009 2:18 PM
To: softim...@listproc.autodesk.com<mailto:softim...@listproc.autodesk.com>
Subject: PPG with star password input?

Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?

I can't seem to find anything. if it worked on Windows and Linux, that would be great also.

Thanks

Hans

  winmail.dat
22K Download

    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hans Payer  
View profile  
 More options Nov 24 2009, 4:44 pm
From: Hans Payer <hanspa...@gmail.com>
Date: Tue, 24 Nov 2009 13:44:53 -0800
Local: Tues, Nov 24 2009 4:44 pm
Subject: Re: PPG with star password input?

You guys rocks!!!!

item.SetAttribute( "Style", 32)   #worked

MERCI!

On Tue, Nov 24, 2009 at 1:40 PM, Guillaume Laferriere <


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Lind  
View profile  
 More options Nov 24 2009, 4:49 pm
From: Matt Lind <ml...@carbinestudios.com>
Date: Tue, 24 Nov 2009 21:49:15 +0000
Local: Tues, Nov 24 2009 4:49 pm
Subject: RE: PPG with star password input?

Here's a simple example:

var ES_PASSWORD = 32;

RequestPassword();

function RequestPassword( )
{
        // Create CustomProperty
        var oCustomProperty = XSIFactory.CreateObject( "CustomProperty" );

        // Add Parameter(s) to the custom property
        oCustomProperty.AddParameter( "password", siString, siClassifUnknown, siSilent, "", "", "", "", 0, 1, 0, 1 );

        // PPG Layout
        oLayout = oCustomProperty.PPGLayout;
        oLayout.Clear();
        var oItem = oLayout.AddItem( "password", "Password", siControlEdit );
        oItem.SetAttribute( siUIStyle, ES_PASSWORD );

        // Display PPG to user
        try {
                InspectObj( oCustomProperty, null, "PPG Name", siModal );
        } catch(e) {
                return;
        }

        // Get value entered by user
        var Password = oCustomProperty.Parameters( "password" ).value;

        // Display result
        LogMessage( "Password: " + Password );

        return(0);

}

Matt

________________________________

        From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer
        Sent: Tuesday, November 24, 2009 1:36 PM
        To: softim...@listproc.autodesk.com
        Subject: Re: PPG with star password input?

        It looks like it could do the trick. but there's not much reference in the SDK. I got this so far by guessing but the 3rd line fails

        item = layout.AddItem("password", "", "dscontrol")
        item.SetAttribute( "Class", "Edit" )
        item.SetAttribute( "siUIStyle", "ES_PASSWORD")

        I also tried:
        item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the ES_PASSWORD doesn't do anything
        item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same
        item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same

        Any tips where I can find dscontrol info? Google isn't giving me much.

        On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair <Stephen.Bl...@autodesk.com> wrote:

                Maybe you could use dscontrol with the ES_PASSWORD style?

                Search the sdk doc for dscontrol.

                Stephen Blair
                Product Support Team Lead, Softimage
                Montreal, Quebec, Canada
                Blog<http://xsisupport.wordpress.com/> | KB<http://autodesk.com/softimage-support> | Wiki<http://autodesk.com/softimage-kb>

                If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>.
                Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.

                From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer
                Sent: Tuesday, November 24, 2009 2:18 PM
                To: softim...@listproc.autodesk.com
                Subject: PPG with star password input?

                Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?

                I can't seem to find anything. if it worked on Windows and Linux, that would be great also.

                Thanks

                Hans


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Robert Moodie  
View profile  
 More options Nov 24 2009, 5:03 pm
From: "Robert Moodie" <robert.moo...@modusfx.com>
Date: Tue, 24 Nov 2009 17:03:19 -0500
Local: Tues, Nov 24 2009 5:03 pm
Subject: Re: PPG with star password input?

Don't forget to turn off command logging - look in the bottom left hand corner of the screen when you press OK.


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hans Payer  
View profile  
 More options Nov 24 2009, 5:05 pm
From: Hans Payer <hanspa...@gmail.com>
Date: Tue, 24 Nov 2009 14:05:39 -0800
Local: Tues, Nov 24 2009 5:05 pm
Subject: Re: PPG with star password input?

Of course!!!!!! Thanks!

On Tue, Nov 24, 2009 at 2:03 PM, Robert Moodie <robert.moo...@modusfx.com>wrote:


    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2010 Google