You are viewing our Forum Archives. To view or take place in current topics click here.
I have a very big interest in programming...please help 1 q
Posted:

I have a very big interest in programming...please help 1 qPosted:

Chocolate_Starfish
  • Resident Elite
Status: Offline
Joined: Aug 08, 201211Year Member
Posts: 215
Reputation Power: 9
Status: Offline
Joined: Aug 08, 201211Year Member
Posts: 215
Reputation Power: 9
hey guys like i said i have a great interst in programming and i want to learn a much a i can because i have been thinking for a while now that i want to continue with programming as a career..

so im learnign c# and i take big interest..
i have made some prgramms such as redirecters to websites EG an nba tracker
i have made shortcut applications
i have made password protection stuff
even Calculators haha
BUT NOW... i would like to learn cross threading... i am able to send like text to another form but i would like to learn threading like this.. (if username and password is correct on the password protection app, then open up a new app that required the username and password) if that makes sense..

i would really appreciate if someone could be like a right hand man..

i do have teamviewer and i do have skype...

if someone could explain some stuff about this to me and maybe show me if they have time i would greatly appreciate it... thanks guys
please PM me and or la=eave a comment on how i could contact you for help

thanks
#2. Posted:
Protools
  • Winter 2020
Status: Offline
Joined: Nov 18, 201211Year Member
Posts: 245
Reputation Power: 229
Status: Offline
Joined: Nov 18, 201211Year Member
Posts: 245
Reputation Power: 229
i might be able to help you with this i have been programming for nearly 6 years i just dont know if i could find the time
#3. Posted:
Chocolate_Starfish
  • Resident Elite
Status: Offline
Joined: Aug 08, 201211Year Member
Posts: 215
Reputation Power: 9
Status: Offline
Joined: Aug 08, 201211Year Member
Posts: 215
Reputation Power: 9
nadelyfe wrote i might be able to help you with this i have been programming for nearly 6 years i just dont know if i could find the time


oh hey man i would greatly appreciate it and if a little money helps you decide then i can do that for sure..

to be honnest i really would love to program as a career and everything helps

i am 16 and i am mature haha i wouldnt waste ur time at all..

im a fast learner just when it comes to this stuff i dont get (all) the meanings..of like Arrays and stuff but once explained it makes a lot of sense to me.. like i can understand why you would do something i just somewon to show me what they are doing for a specific thing...

And if u cant find the time i appreciate you atleast taking a look at this post and giving it some thought
#4. Posted:
rghmodz
  • Prospect
Status: Offline
Joined: Feb 05, 201212Year Member
Posts: 682
Reputation Power: 36
Status: Offline
Joined: Feb 05, 201212Year Member
Posts: 682
Reputation Power: 36
Here you go.


if(username == "Username here"|| password == "")
{
Form2 f2= new Form2();
f2.Show();
}
else
{
MessageBox.Show("Invalid Username or Password");
}


Or you can do this.
if(textBox1.Text == "Username Here" || textBox2.Text == "Password Here")
{
Form2 f2= new Form2();
f2.Show();
}
else
{
MessageBox.Show("Invalid Username or Password");
}
#5. Posted:
zazmodz
  • Junior Member
Status: Offline
Joined: Nov 11, 201211Year Member
Posts: 74
Reputation Power: 4
Status: Offline
Joined: Nov 11, 201211Year Member
Posts: 74
Reputation Power: 4
Carry on learning C# but learn other langueages so that you are more flexible job wise
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.