<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Dialogbox for Prompting Account</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : Dialogbox for Prompting Account]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 00:24:59 +0000</pubDate>
  <lastBuildDate>Mon, 07 Mar 2011 17:21:25 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=17292</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : See this project sample:  up...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63165&amp;title=dialogbox-for-prompting-account#63165</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 07 March 2011 at 5:21pm<br /><br />See this project sample:<DIV>&nbsp;</DIV><DIV><a href="http://forum.codejock.com/uploads/4669/VistaTaskDialog_InputBoxPassword.zip" target="_blank">uploads/4669/VistaTaskDialog_InputBoxPassword.zip</A></DIV>]]>
   </description>
   <pubDate>Mon, 07 Mar 2011 17:21:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63165&amp;title=dialogbox-for-prompting-account#63165</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : Try this:  1. Open the VistaTaskDialog...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63071&amp;title=dialogbox-for-prompting-account#63071</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 02 March 2011 at 12:51pm<br /><br />Try this:<DIV>&nbsp;</DIV><DIV>1. Open the <strong>VistaTaskDialog</strong> sample project.</DIV><DIV>&nbsp;</DIV><DIV>2. Open frmMain code window.</DIV><DIV>&nbsp;</DIV><DIV>3. Add to General declarations:</DIV><DIV><FONT color=#0000ff size=2 face="Courier New, Courier, mono">Dim sPrevText As String<BR></FONT></DIV><DIV><FONT color=#0000ff size=2 face="Courier New, Courier, mono">&nbsp;</DIV></FONT><DIV>4. Open form designer, go to <strong>Samples</strong> tab, then add a button</DIV><DIV><strong>cmdInputBoxSample</strong></DIV><DIV>&nbsp;</DIV><DIV>5. Add below code :</DIV><DIV><FONT color=#0000ff face="Courier New, Courier, mono">Private Sub cmdInputBoxSample_Click()<BR>&nbsp;&nbsp;&nbsp; taskDialog.Reset<BR>&nbsp;&nbsp;&nbsp; With taskDialog<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AddInputBox<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .InputBoxText = "Enter your Password"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .ShowDialog<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox "Typed text is: " &amp; sPrevText, vbInformation<BR>&nbsp;&nbsp;&nbsp; End With<BR>End Sub</FONT></DIV><DIV>&nbsp;</DIV><DIV>6. Now, in form designer, double click into <strong>taskDialog</strong> control</DIV><DIV>&nbsp;</DIV><DIV>7.&nbsp;Open the <strong>InputBoxChanged</strong> event</DIV><DIV>&nbsp;</DIV><DIV>8. Insert the below code:</DIV><DIV><FONT color=#0000ff face="Courier New, Courier, mono">Private Sub taskDialog_InputBoxChanged()<BR>&nbsp;&nbsp;&nbsp; Static bChanged As Boolean ' to skip the 2nd event<BR>&nbsp;&nbsp;&nbsp; Dim sNewText As String<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If bChanged Then&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'the text ha s been replaced by my code<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bChanged = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SendKeys "{END}"&nbsp;&nbsp;&nbsp; ' move cursor to the end position<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exit Sub<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; ' get text typed from the user<BR>&nbsp;&nbsp;&nbsp; sNewText = taskDialog.InputBoxText<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; ' if text is the initial text, skip:<BR>&nbsp;&nbsp;&nbsp; If sNewText = "Enter your Password" Then Exit Sub<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; ' replace each char with password-char (*)<BR>&nbsp;&nbsp;&nbsp; If sPrevText &lt;&gt; sNewText Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sPrevText = sPrevText + Replace(sNewText, "*", "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sNewText = String(Len(sNewText), "*")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bChanged = True ' inform the routine to skip next event<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; taskDialog.InputBoxText = sNewText<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>End Sub<BR></FONT></DIV><DIV><FONT color=#0000ff face="Courier New, Courier, mono">&nbsp;</DIV></FONT><DIV><FONT color=#0000ff face="Courier New, Courier, mono"><FONT color=#000000>Enjoy <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" /></FONT></FONT></DIV><DIV><FONT color=#0000ff face="Courier New, Courier, mono"><FONT color=#000000></FONT></FONT>&nbsp;</DIV><DIV><FONT color=#0000ff face="Courier New, Courier, mono"><FONT color=#000000></FONT>&nbsp;</DIV></FONT>]]>
   </description>
   <pubDate>Wed, 02 Mar 2011 12:51:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63071&amp;title=dialogbox-for-prompting-account#63071</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account :   JamGodz wrote:Hi!is this available...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63066&amp;title=dialogbox-for-prompting-account#63066</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 02 March 2011 at 8:33am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by JamGodz" alt="Originally posted by JamGodz" style="vertical-align: text-bottom;" /> <strong>JamGodz wrote:</strong><br /><br />Hi!<BR>is this available in version 15?<BR></td></tr></table> <DIV>&nbsp;</DIV><DIV>No, however (perhaps) you&nbsp;may play&nbsp;with <strong>InputBoxChanged</strong> event...</DIV><DIV>Try, then let us know...</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 02 Mar 2011 08:33:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63066&amp;title=dialogbox-for-prompting-account#63066</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : Hi!is this available in version...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63048&amp;title=dialogbox-for-prompting-account#63048</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5940">JamGodz</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 01 March 2011 at 8:19pm<br /><br />Hi!<br><br>is this available in version 15?<br>]]>
   </description>
   <pubDate>Tue, 01 Mar 2011 20:19:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=63048&amp;title=dialogbox-for-prompting-account#63048</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : Hi Aaron! is this implemented...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=62160&amp;title=dialogbox-for-prompting-account#62160</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5940">JamGodz</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 10 January 2011 at 8:14pm<br /><br />Hi Aaron! <br><br>is this implemented in new release? tnx<br>]]>
   </description>
   <pubDate>Mon, 10 Jan 2011 20:14:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=62160&amp;title=dialogbox-for-prompting-account#62160</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : Hello, thank you Aaron...   ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=60403&amp;title=dialogbox-for-prompting-account#60403</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5940">JamGodz</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 22 September 2010 at 6:22am<br /><br />Hello,<br><br><img src="http://forum.codejock.com/smileys/smiley24.gif" border="0" alt="Ermm" title="Ermm" /> thank you Aaron... <br><br><br>]]>
   </description>
   <pubDate>Wed, 22 Sep 2010 06:22:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=60403&amp;title=dialogbox-for-prompting-account#60403</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : Hi,  I was thinking about that...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=60400&amp;title=dialogbox-for-prompting-account#60400</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 22 September 2010 at 5:10am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>I was thinking about that also and wanted to use TasDialog for this. It supports&nbsp;adding textboxes but you get to see the password when typing.&nbsp;In InputBoxChanged event I replaced the typed chars into *&nbsp; but&nbsp;when replacing the chars you get another InputBoxChanged event and the cursor is set to first position. So I got stuck.</DIV><DIV>&nbsp;</DIV><DIV><strong>Maybe and just maybe CJ will implement password chars in textbox <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" /></strong></DIV><DIV>&nbsp;</DIV><DIV>I don't see any other possibilities so I have to keep my original form for now and&nbsp;I guess you have to do the same <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" /></DIV><DIV>&nbsp;</DIV><DIV>Good luck</DIV><DIV>&nbsp;&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 22 Sep 2010 05:10:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=60400&amp;title=dialogbox-for-prompting-account#60400</guid>
  </item> 
  <item>
   <title><![CDATA[Dialogbox for Prompting Account : Hi Everyone! Good Day!  Is it...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=60385&amp;title=dialogbox-for-prompting-account#60385</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5940">JamGodz</a><br /><strong>Subject:</strong> 17292<br /><strong>Posted:</strong> 21 September 2010 at 9:54pm<br /><br />Hi Everyone! Good Day!<br><br>Is it possible to use a dialog box for prompting password? like for example i don't wanna build another form just for asking user to verify their user and password....<br><br><br><br><br><br>Thank you!<br>]]>
   </description>
   <pubDate>Tue, 21 Sep 2010 21:54:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17292&amp;PID=60385&amp;title=dialogbox-for-prompting-account#60385</guid>
  </item> 
 </channel>
</rss>