http://www.dreamincode.net/downloads/first_csharp_app.swf
Video Tutorial - Your First C# Application
Replies To: Video Tutorial - Your First C# Application
#2
Posted 10 January 2008 - 01:57 AM
Now I can learn C# easily.
. Neat tutorial! Looking forward to see the rest soon.
#4
Posted 29 January 2008 - 09:55 PM
That is good video tutorial, and I hope to see some more. I have been searching online to find C#tutorial, but I only find the tutorial that deals with console not window form application. If you dont mind in the next tutorial, can you explain the difference between these files. For example Form1.cs, Form1Designer.cs and Program.cs because every time I create the project these files automatically created and I don't know which file should I put the code in there.
#5
Posted 12 March 2008 - 03:56 AM
I get interuption while watching this videon on line. Is there a file I can down load
Thanks
Thanks
#6
Posted 12 March 2008 - 05:58 AM
Nice tutorial. - I always find the video ones more informative than the written ones.
Keep up the good work!.
Keep up the good work!.
This post has been edited by Nykc: 12 March 2008 - 05:58 AM
#7
Posted 02 April 2008 - 05:31 AM
Best Tutorial ever.
I hope you will release a next video tutorial soon.
greetings SliferGhost
I hope you will release a next video tutorial soon.
greetings SliferGhost
#8
Posted 17 May 2008 - 02:35 AM
nice tutorial
love learing in this way
tganx!
i wish if there is any tutorial about how to make nptpade or the painter
love learing in this way
tganx!
i wish if there is any tutorial about how to make nptpade or the painter
#9
Posted 27 July 2008 - 11:46 PM
hii,
i am a new comer in this visual studio world, and i find this video tutorial very helpful,, plz do update more tutorials related to beginner's learnings,. coz after learning this VS i have to start one of my project,, and plz guide what other exercises i shud do to learn it more effectively]]
Regards,
i am a new comer in this visual studio world, and i find this video tutorial very helpful,, plz do update more tutorials related to beginner's learnings,. coz after learning this VS i have to start one of my project,, and plz guide what other exercises i shud do to learn it more effectively]]
Regards,
#10
Posted 07 September 2008 - 09:25 AM
Nice. How did you embed that player into the post?
#11
Posted 07 September 2008 - 05:49 PM
He used this code
[flash=500,400]URL Goes Here[/flash]
#12
Posted 15 December 2008 - 03:55 AM
Excellent tutorial, I will definitely be looking for more of the same from you. I am new to C# but have had a couple of c++ and Java classes, I'm liking the way this language looks.
#13
Posted 02 February 2009 - 01:05 PM
Great tutorial was easy to follow!
But was wondering, would this be just as good of a solution? (of couse I added an extra portion to clear out the text box)
But was wondering, would this be just as good of a solution? (of couse I added an extra portion to clear out the text box)
if (string.IsNullOrEmpty(txtText.Text)) {
MessageBox.Show("Please provide a text value!");
} else {
lblResults.Text = txtText.Text;
txtText.Text = "";
}
#14
Posted 03 February 2009 - 01:10 PM
#15
Posted 22 December 2009 - 05:29 PM
Nice tutioral but i have troubles after the else it says that a ; is needed this is what i have:
But after i give it it gives me five errors. Did i do something wrong? I typed in everything you did but then nothing.
void CmdsubmitClick(object sender, EventArgs e)
{
if(string.IsNullOrEmpty(txtText.Text) && txtText.Text != "")
{
lblResults.text = txtText.Text;
}
Else
{
MessageBox.Show("Please enter a text into the text box");
}
}
}
}
But after i give it it gives me five errors. Did i do something wrong? I typed in everything you did but then nothing.
|
|




MultiQuote









|