1
Answer

C# Put in to Practical Practice

Joe Villa

Joe Villa

16y
2.1k
1
Hi, I just finished reading the "Programming C# 5th Edition by Oreilly" and well even thought it is a good book seems as not the necesarry content to get me started with some practical applications i want to create for windows OS using WAP or WF, the book as a lot of stuff doing it in the console but not  in the visual studio GUI, what im asking here is somehelp from  you to let me know if there is a book where i could see practical examples in detailed to start developing and coding for real world situations, Ok i hope someone can help me in this, thanks!!
Answers (1)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 14y
Yes, Sahil, Frogleg did not give you the complete answer but it is assumed you understand Frogleg's code well enough to be able to modify it to do what you need to do.
0
Sahil Jani

Sahil Jani

NA 349 125.4k 14y
hi frogleg,

Thnks for giving me code. Actully, your code is working but my requirements is not being ful-filled.
0
Sahil Jani

Sahil Jani

NA 349 125.4k 14y
Hi, Sutish

My form is not depending upon the role base activity.
This form is accessed by all to fill-up. And I have only one button in that form on which I have to perform two activities one after the other.
So, is there any solution with you to do this thing?

Please help me regarding this.
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 14y

 Depend upon user roles (Admin or User) you can do with if-else condition.
0
Frogleg

Frogleg

NA 7.9k 33k 14y
One way

 bool firstClick = false;
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
if (firstClick == false)
{
firstClick = true;
MessageBox.Show("First click");
}
else
{
firstClick = false;
MessageBox.Show("Second click");
}
}
}