Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for elshan0011

I want to close my login form and open Main form! i do that like this! [CODE] private void btnLoginOk_Click(object sender, EventArgs e) { if (textBox2.Text == "acer") { Main frmMain = new Main(); frmMain.Show(); this.Close(); } else { MessageBox.Show("Invalid Username or Password", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Information); } }[/CODE] But …

Member Avatar for walid86
0
1K
Member Avatar for elshan0011

i have some formula. (find kubik feet) aswer = ((height(inch)/12 * height(inch)/12 * width(feet))/16 i want to solve this formula and asnwer in kiubic feet i am using double data type and c# language; ex: height = 48inch ,width =12feet double height_in_feet = 48/12; double width_in_feet =12; double ans=(4*4*12)/16; Messagebox.Show(ans.toString()); …

Member Avatar for ddanbe
0
213
Member Avatar for VirendraThakre

I want to upload photo on click in VB.NET and want to store it in SQL 2005,also want to retrive it in picture box on another click.

Member Avatar for elshan0011
0
105