TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
isu_compu_dude
NA
20
0
Random question
Mar 22 2005 3:46 PM
I am using the following code to create random passwords (not my code) public static string RandomPassword(int PasswordLength) { string _allowedChars = "ACDEFGHJKLMNPQRTWXYZ12345679"; Byte[] randomBytes = new Byte[PasswordLength]; char[] chars = new char[PasswordLength]; int allowedCharCount = _allowedChars.Length; Random randomObj = new Random(); for(int i = 0;i
Reply
Answers (
1
)
.Show vs .ShowDialog
Random