Click here to Skip to main content
15,908,909 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: array style codeprovider in .net Pin
cstrader23214-Apr-08 2:53
cstrader23214-Apr-08 2:53 
GeneralRe: array style codeprovider in .net Pin
Luc Pattyn14-Apr-08 3:31
sitebuilderLuc Pattyn14-Apr-08 3:31 
GeneralRe: array style codeprovider in .net Pin
cstrader23214-Apr-08 4:06
cstrader23214-Apr-08 4:06 
Generalerror running application on other computer Pin
shee_dee8613-Apr-08 15:41
shee_dee8613-Apr-08 15:41 
GeneralRe: error running application on other computer Pin
Christian Graus13-Apr-08 15:55
protectorChristian Graus13-Apr-08 15:55 
GeneralRe: error running application on other computer Pin
shee_dee8613-Apr-08 18:32
shee_dee8613-Apr-08 18:32 
GeneralRe: error running application on other computer Pin
Christian Graus13-Apr-08 18:38
protectorChristian Graus13-Apr-08 18:38 
GeneralHttp server for VB.net Pin
reptilematt13-Apr-08 6:56
reptilematt13-Apr-08 6:56 
GeneralRe: Http server for VB.net Pin
jzonthemtn13-Apr-08 8:07
jzonthemtn13-Apr-08 8:07 
GeneralRe: Http server for VB.net Pin
shee_dee8613-Apr-08 15:14
shee_dee8613-Apr-08 15:14 
Generalcode for calcualtion and aso couting current row Pin
Member 444291613-Apr-08 5:33
Member 444291613-Apr-08 5:33 
GeneralRe: code for calcualtion and aso couting current row Pin
Christian Graus13-Apr-08 11:23
protectorChristian Graus13-Apr-08 11:23 
GeneralRe: code for calcualtion and aso couting current row Pin
Member 444291613-Apr-08 16:10
Member 444291613-Apr-08 16:10 
GeneralRe: code for calcualtion and aso couting current row Pin
Christian Graus13-Apr-08 16:34
protectorChristian Graus13-Apr-08 16:34 
QuestionWhere to start to develop a Windows-based videophone? Pin
chuckles_net13-Apr-08 5:05
chuckles_net13-Apr-08 5:05 
AnswerRe: Where to start to develop a Windows-based videophone? Pin
Thomas Stockwell13-Apr-08 7:02
professionalThomas Stockwell13-Apr-08 7:02 
GeneralRe: Where to start to develop a Windows-based videophone? Pin
chuckles_net14-Apr-08 2:15
chuckles_net14-Apr-08 2:15 
GeneralPrinting Problem [modified] Pin
Zaegra13-Apr-08 3:53
Zaegra13-Apr-08 3:53 
GeneralRe: Printing Problem Pin
Luc Pattyn13-Apr-08 4:01
sitebuilderLuc Pattyn13-Apr-08 4:01 
GeneralRe: Printing Problem Pin
Zaegra13-Apr-08 5:24
Zaegra13-Apr-08 5:24 
GeneralRe: Printing Problem Pin
Luc Pattyn13-Apr-08 6:28
sitebuilderLuc Pattyn13-Apr-08 6:28 
GeneralRe: Printing Problem Pin
Smithers-Jones13-Apr-08 7:03
Smithers-Jones13-Apr-08 7:03 
GeneralRe: Printing Problem Pin
Zaegra13-Apr-08 8:12
Zaegra13-Apr-08 8:12 
GeneralRe: Printing Problem Pin
Luc Pattyn13-Apr-08 10:10
sitebuilderLuc Pattyn13-Apr-08 10:10 
Questionchange password Pin
bapu288913-Apr-08 3:41
bapu288913-Apr-08 3:41 
Hello

i am trying to add password in my one of exercise and it's works fine but when i try to change it it's not changeing at all

i have set txtpassword.tag = "bapu" in property window

and code for click event is


Private Sub Button3_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click<br />
     ClickCount += 1<br />
     If ClickCount = 1 Then<br />
         MsgBox("Please enter your old password", MsgBoxStyle.Information)<br />
     ElseIf ClickCount = 2 Then<br />
         If txtPassWord.Text = txtPassWord.Tag Then<br />
             MsgBox("Please enter your new password", MsgBoxStyle.Information)<br />
             txtPassWord.Tag = Nothing : txtPassWord.Focus() : txtPassWord.Text = ""<br />
         Else<br />
             MsgBox("Wrond", MsgBoxStyle.Information)<br />
         End If<br />
     ElseIf ClickCount = 3 Then<br />
         txtPassWord.Tag = txtPassWord.Text<br />
         MsgBox("Password changed", MsgBoxStyle.Information)<br />
     End If<br />
 End Sub


any help how to deal with this Confused | :confused:

waiting for your kind rep.

have a nice day

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.