Click here to Skip to main content
15,898,939 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Winsock with SSL ? Pin
AliAmjad3-Nov-07 9:02
AliAmjad3-Nov-07 9:02 
GeneralRe: Winsock with SSL ? Pin
Dan Suthar4-Nov-07 5:21
professionalDan Suthar4-Nov-07 5:21 
QuestionPlease help me to sort an tow dimensional array with repeating numbers in that array Pin
anpm3-Nov-07 4:26
anpm3-Nov-07 4:26 
AnswerRe: Please help me to sort an tow dimensional array with repeating numbers in that array Pin
Paul Conrad3-Nov-07 5:26
professionalPaul Conrad3-Nov-07 5:26 
AnswerRe: Please help me to sort an tow dimensional array with repeating numbers in that array Pin
Guffa3-Nov-07 11:27
Guffa3-Nov-07 11:27 
JokeRe: Please help me to sort an tow dimensional array with repeating numbers in that array Pin
Paul Conrad3-Nov-07 13:09
professionalPaul Conrad3-Nov-07 13:09 
QuestionDatagridtextbox with a button in it Pin
Salman Sheikh3-Nov-07 2:55
Salman Sheikh3-Nov-07 2:55 
QuestionVB password help Pin
arranmc1823-Nov-07 2:20
arranmc1823-Nov-07 2:20 
im trying to make a program that makes u enter a password inorder to use a program the only problem is that u can see the pass word that istyped i would like to hide it so u just see *** insted of text here is my code

..........................................

Public Class Form

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim Password As String
Dim InputPassword As String
Dim Attempt As Integer
Password = "test"
Attempt = 0


Do
InputPassword = InputBox("Enter password. This is attempt number " & Attempt & ".")
Attempt = Attempt + 1
Loop Until (Attempt = 3) Or (InputPassword = Password)


If InputPassword = Password Then
MsgBox("This password is valid!")
Dim F1 As New Form1()
F1.Show()
Else
MsgBox("This password is invalid!")
End If

End Sub
End Class

AnswerRe: VB password help Pin
AliAmjad3-Nov-07 5:03
AliAmjad3-Nov-07 5:03 
GeneralRe: VB password help Pin
arranmc1823-Nov-07 8:18
arranmc1823-Nov-07 8:18 
GeneralRe: VB password help Pin
AliAmjad3-Nov-07 8:52
AliAmjad3-Nov-07 8:52 
AnswerRe: VB password help Pin
Paul Conrad3-Nov-07 5:28
professionalPaul Conrad3-Nov-07 5:28 
AnswerRe: VB password help Pin
Dan Suthar4-Nov-07 5:29
professionalDan Suthar4-Nov-07 5:29 
QuestionPropertyBag Pin
danasegaranea3-Nov-07 1:53
danasegaranea3-Nov-07 1:53 
QuestionManintain session Pin
~V~3-Nov-07 1:37
~V~3-Nov-07 1:37 
AnswerRe: Manintain session Pin
pmarfleet3-Nov-07 6:46
pmarfleet3-Nov-07 6:46 
Questiongetting sql server-2005 backups from vb.net 2005 Pin
kishore lkumar2-Nov-07 20:35
kishore lkumar2-Nov-07 20:35 
QuestionLooping through a array of strcutres Pin
Benny_Lava2-Nov-07 19:37
Benny_Lava2-Nov-07 19:37 
AnswerRe: Looping through a array of strcutres Pin
Christian Graus2-Nov-07 21:02
protectorChristian Graus2-Nov-07 21:02 
AnswerRe: Looping through a array of strcutres Pin
MohammadAmiry3-Nov-07 0:15
MohammadAmiry3-Nov-07 0:15 
QuestionIssue with adding data to grid Pin
nishkarsh_k2-Nov-07 16:42
nishkarsh_k2-Nov-07 16:42 
AnswerRe: Issue with adding data to grid Pin
Andy_L_J4-Nov-07 17:06
Andy_L_J4-Nov-07 17:06 
Questionplease help me to find bug for a lotto project Pin
anpm2-Nov-07 14:07
anpm2-Nov-07 14:07 
AnswerRe: please help me to find bug for a lotto project [modified] Pin
Luc Pattyn2-Nov-07 14:18
sitebuilderLuc Pattyn2-Nov-07 14:18 
GeneralRe: please help me to find bug for a lotto project Pin
anpm2-Nov-07 18:38
anpm2-Nov-07 18:38 

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.