User Enters A Password - Must Be At Least 3 Characters Long - At Least 1 Number And 1 Alphabet Character

Mar 28, 2012

My homework assignment is to create a project where a user enters a password that must be at least 3 characters long with at least 1 number and 1 alphabet character. After that the password has to be encrypted so that vowels become X, numbers Z, and it reverses. For example, a password of CS2301 would be ZZZZSC. There's supposed to be Loops to extract 1 number/letter at a time and search for them in the string to validate, and I don't know what to do. The form itself has a Text Box to enter a password and a label to display the new one, and a Go button.

This is what my code looks like so far.

Option Strict On
Option Explicit On

Public Class Form1

[CODE]...

View 13 Replies


ADVERTISEMENT

Password Verifier - Six Characters With One Number / Alphabet

Mar 30, 2009

I did this for one of my homework assignments in C#. However I need to do this in Visual Basic. For VB it just needs to be 6 characters and have one numeric digit and at least one alphabetic character.

Private Sub btnVerify_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnVerify.Click
public string getPassword()
End Sub
Private Function IsValid() As Boolean
[Code] .....

View 8 Replies

Count The Number Of Times When A User Enters A Character?

May 20, 2009

count the number of times when a user enters a character followed by , and I want to count , number of times. So far here is what I have if you also know a little about the split function can you check to see if what I have is right?

Private Sub Strat0_LostFocus()
Dim q1 As New rdoQuery
Dim LO As Integer

[code]....

View 6 Replies

User Enters A Username In Textbox1 And Then Enters A Password In Textbox2?

Jul 2, 2009

I have a login form that I made. The user enters a username in textbox1 and then enters a password in textbox2. The user then hits the submit button (button2) and from there it works beautifully. The problem is, I would also like the user to be able to hit the "enter" key after they fill out the password textbox (textbox2) and have it be like they pressed the submit button. When the user hits enter right now, the form hides.

View 4 Replies

Show Instead Of The Password It-self When The User Enters The Password?

Apr 10, 2010

I have a button on my Form called EditingButton that will have a DialogBox appear asking for a password. How can I have "*" show instead of the Password it-self when the user enters the password?[URL]...

View 1 Replies

Vb 2008 - Converting A Character That The User Enters In A Textbox To Binary

May 11, 2009

I want help emergency for a project i have, I have to make a program to do hamming codes, since now i have done the part for converting a character that the user enters in a textbox to binary.This binary now is displayed in a textbox. So now i want to save this binary to an array

e.g i have this binary 10101110

CODE:

and so on .. how can i do it?

View 14 Replies

Create Console Program Where User Enters A Character And Respective ASCII Value In Denary

Nov 21, 2010

The latest assignment from my teacher was to create a console program where the user enters a character and the respective ASCII value in Denary, Hexadecimal and Binary, Even Parity, Odd Parity and Hamming code is returned.I've managed to implement all of them except the latter with relative ease, I am familiar with the concept of Hamming code and can compute it easily by hand, but don't really know how to implement it as a function in my program. [code]

View 1 Replies

Get The LIKE Statement To Work If The User Enters A Number?

Sep 22, 2010

how I can get the LIKE statement to work if the user enters a number like 403* ? The sql works if I do not enter an *

strWildCardFound = InStr(TNSearchTextBox.Text,
"*")
TNSearchTextBox.Text = Replace(TNSearchTextBox.Text,

[Code].....

View 2 Replies

VS 2010 User Enters Number And Adds That Many Numbers And Totals

Apr 29, 2012

I am wanting to allow a user to enter a number and depending on what number is entered, it will allow that many entries. For example, if 5 is entered, the user has to enter 5 numbers. Those 5 numbers will then be added together.I 6 is entered, 6 total numbers will be added.I was trying to do this with a for next loop but I wasn't getting anywhere.

View 5 Replies

Create A Random String With Number And Letters In 8 Characters Long In VB 2008?

Apr 16, 2009

I would like to ask for some on how to create a random string with number and letters in 8 characters long in VB 2008

View 1 Replies

Populating A Date Time Picker When A User Enters An ID Number Into A Textbox

Jan 25, 2012

I am using a vb windows application I need to allow a user to enter their ID num in a text box and it need to automatically populate their date of birth

View 6 Replies

Check For Character Number And Special Characters In A String?

Jan 21, 2011

I want to user to enter only numbers and characters in textbox i.e no special charaters.I don't want to use key press event of textbox.As i need same validation in gridview.

So i want to validate whole string.

View 2 Replies

VB 2008 Console - 2D Array - Infinite Loop - Program - User Enters The Number Of Enrollments For 5 Different Campuses During Two Semesters

Jun 12, 2011

I am trying to create a program that the user enters the number of enrollments for 5 different campuses during two semesters. I just got started and here is what I have so far but when I run the program it is stuck in an infinite loop and will not go to the next function. I am not sure how to end the loop.

Here is what I have so far:
Module Module1
Dim SIZE As Integer = 5
Dim campus() As String = {"Decatur Day", "Decatur Evening", "Huntsville Day", "Huntsville

[CODE]....

View 1 Replies

VS 2008 - Password Generator (User Can Specify Amount Of Characters)

Apr 4, 2010

I am trying to do a somewhat different pw generator. The user can specify the amount of characters the password will be and whether to randomize between the alphabets A-Z, numbers 1-10, and maybe a hand full of symbols or so, and a combination of all three options. Also the user can use the "re-generate" button if he/she does not like the current password. I'm fairly new to VB, and would just like a push in the right direction to get started.

View 6 Replies

Password Should Allow Min One Numeric / Min One Alphabet And Min One Sp

Jan 5, 2010

Password should allow min one numeric, min one alphabet and min one special char

View 2 Replies

Textbox To Allow Only Alphabet (no Numeric Character)

Apr 23, 2012

I want all my textbox in a form to allow only alphabets,no other characters.I can do this with only one textbox at a time.Is there a way to do it for 10 textbox at a time.[code]

View 6 Replies

Check If String Contains Alphabet Characters?

Feb 14, 2012

Using visual basic, I have a string. Want to check that the string contains a single, capital alphabetic character followed by a period. Tried to use Contains as in the following:

someString.Contains("[A-Z].") but this didn't return me what I wanted.

Also need to check for a single number followed by a period.

How can I do this in Visual Basic

View 3 Replies

VS 2010 Turn Only Selected Characters Into Password Characters And Still Be Able To Get The Password Text From The Text Property?

Apr 13, 2011

I'm making a custom control suited for handling passwords. I have created a control that inherits from a text box and I have implemented a lot of things so far. But what i want to do now is create a system so that when a user types It will display his last character typed for a X amount of time.Is there a way to turn only selected characters into password characters and still be able to get the password text from the Text property ?

View 3 Replies

Accept Only Alphabet And Numbers. No Special Characters?

Jun 2, 2011

how to validate a text box to accept only alphabets and numbers. no special characters. in vb.net i have tried the following code but it doesn't allow numbers but it allows alphabets only

Private Sub TextBox2_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox2.KeyPress
If (Microsoft.VisualBasic.Asc(e.KeyChar) < 65) _
Or (Microsoft.VisualBasic.Asc(e.KeyChar) > 90) _
And (Microsoft.VisualBasic.Asc(e.KeyChar) < 97) _

[code]....

View 1 Replies

VS 2005 Validation - Text Box To Filled By An Alphabet First Then The Remaining Characters Can Be Anything

Jun 7, 2012

I want my text box to filled by an alphabet first then the remaing characters can be anything. Also i have drop down which is having arithmatic functions.(< ,> , = ,+ etc) If the user selects < or > then the value entered in the text box should be numeric. and if the user selects "=" then the textbox value should be string.

View 1 Replies

IDE :: Allow The User To Only Type In A Certain Number Of Characters In A Datagridview Column?

Apr 14, 2006

Is there a way to allow the user to only type in a certain number of characters in a datagridview column? Like a invoice number can only be 1-6 digits long and I want to stop them from typing more than 6 digits.

View 7 Replies

C# - Why When Press A Ctrl+Tab In A MultiLine TextBox,it Enters A Tab Character

Oct 17, 2011

Why when I press Ctrl+Tab in a MultiLine TextBox,

it enters a tab character even if I set the AcceptsTab property to false?

I set the MultiLine property to true, and AcceptsTab property to false.

View 1 Replies

Calculate Characters In One Row On Special Defined Numeric Value To Each Character Or Group Of Character?

Aug 25, 2011

How do I write an expression to calculate all characters of each row by my own defined value to each character = all the A and B and C and etc. will be as 2 and all I and J and whatever ... will be 1 so I need an end result of the total.

View 3 Replies

VS 2008 Random - New Character Out Of The String And Then Remove The Character From The List Of Characters

Dec 12, 2010

[Code]...

For each character of this string I want a new character out of the string and then remove the character from the list of characters that still maybe used for other characters. It may not get the same character, you could basically just call this encryption, but it's not what I am making. I don't want to waste my time doing this one hour while VB can do this for me in <1 second.

View 12 Replies

Password Characters - Get A Textbox Being Using For Password Entry To Display The Black Circle

Feb 10, 2009

How do you get a textbox being using for password entry to display the black circle that you often see in web forms, on the iphone etc etc?

I can change the PasswordChar property to an asterisk no problem and even copying and pasting symbols inserted into Word seemed to work - just couldn't find a symbol that looked like a bullet point!

Can this actually be achieved for a standalone exe, or is it something unique to web forms? Surely copying and pasting symbols from Word isn't actually the answer?

View 6 Replies

VS 2010 Turn Only Selected Characters Into Password Characters

Feb 20, 2011

I'm making a custom control suited for handling passwords. I have created a control that inherits from a text box and I have implemented a lot of things so far. But what i want to do now is create a system so that when a user types It will display his last character typed for a X amount of time. Is there a way to turn only selected characters into password characters and still be able to get the password text from the Text property ?

View 4 Replies

Save Button Which Firstly Validates What The User Enters The Form - If The User Skips The Text Fields

Jun 11, 2011

I was developing my own project in the university so what i am stack is to have save button which firstly validates what the user enters the form. for instance if the user skips the text fields, i wanted to restrict the user to fill all the form and when he completes, the save must be accomplished.

Here's the code i was trying to put but i was having problem saying the windows.forms.etc is unable to convert the save as Boolean and something like that.

Dim success As Boolean
Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click

[CODE]...

View 5 Replies

String Must Be Exactly One Character Long?

May 15, 2012

error message i get during compile programe:

string must be exactly one character long. Couldn't store <1 > in scopee column.
Expected type is char.
this is my sql db:

[code]....

View 7 Replies

Check If The User Enter Alphabet In Textbox?

Sep 25, 2010

how to check if the user enter alphabet in textbox the only allow in that textbox is number

i think i will use ascii there like in vb 6.. but i dont know how to done in VB 2008..?

View 5 Replies

Create An Error Message By Message Box To Tell The User To Enter A Number Only If They Key In A Character Value?

Feb 22, 2009

how to create an error message by message box to tell the user to enter a number only if they key in a character value?

I MEAN AFTER THEY PRESS THE CALCULATE BUTTON

Private Sub btnCalcFat_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalcFat.Click
Dim intFat As Integer
intFat = Integer.Parse(txtFat.Text)
lblResultDisplay.Text = txtFat.Text * 9
End Sub

My text box is call txtFat

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved