Goodmorning everybody,
here i am wanting to make a Login System that uses Usercontrol.
I have a label left
and right i have a panel.
in this panel i want to add usercontrol for all users that has one account in the application. this are some examples (Windos XP Login)
Image 1
Image 2
Image 3
How i have to start? thanks in advance!
NewUserVB.Net 0 Light Poster
Recommended Answers
Jump to PostSee if this helps to get you started.
1.PanelPublic Class Form1 Private arDummyUsers() As String = {"dummy 1", "dummy 2", "what the h.ll, another dummy xD"} Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load With Panel1 .BackColor = Color.LightSteelBlue .AutoScroll = True '// Allows scrollbars …
Jump to PostTo change the users from "dummy" to "real...dummies?:D"(kidding), uhhmmm...:D
Instead of the For/Next loop that loops thru the arDummyUsers:
For Each dummyUser As String In arDummyUsers
use a loop similar to:For Each coolLoginUser As String In (Database1DataSet) table(Users)
. I personally have no idea how to …
All 8 Replies
adam_k 239 Master Poster
codeorder 197 Nearly a Posting Virtuoso
NewUserVB.Net 0 Light Poster
NewUserVB.Net 0 Light Poster
codeorder 197 Nearly a Posting Virtuoso
NewUserVB.Net 0 Light Poster
codeorder 197 Nearly a Posting Virtuoso
codeorder 197 Nearly a Posting Virtuoso
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.