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.

~5K People Reached
Favorite Forums
Favorite Tags
c++ x 11
c x 1
c# x 1

13 Posted Topics

Member Avatar for DIPY

[CODE] if (checkBox1.Checked == true) { textBox1.Enabled = true; } else { textBox1.Enabled = false; } [/CODE] let me know if you need any other help Thanks

Member Avatar for hirenpatel53
0
3K
Member Avatar for th3learner

I have 3 textboxes..textBox1,textBox2,textBox3.I want that when user clicks on submit button all data should go to e-mail address.. Any one here can please help me to get through code? Thanks very much

Member Avatar for darcee
0
132
Member Avatar for th3learner

Hello I have one textBox...let say i want some to enter their name in textbox but i dont want user to enter integer value in text ONLY character. can any one here tell how to make program for this OR any inbuilt function is there. I m using visual studio …

Member Avatar for sknake
0
456
Member Avatar for th3learner

Hello I am doing calculation using comboxBox...But it is not doing correctly [code]a = int.Parse(textBox1.Text); b = int.Parse(textBox2.Text); if (comboBox1.Text == "*") { c = a * b; } textBox3.Text = c.ToString(); [/code] Any help here can point out where problem is ? Thanks

Member Avatar for ddanbe
0
182
Member Avatar for th3learner

[icode]a = int.Parse(textBox1.Text); b = int.Parse(textBox2.Text); c = a(int.Parse(comboBox1.Text)); textBox3.Text = c.ToString(); [/icode] I am inputing 2 values in a and b ....and through combox1 I am doing calculations Thanks

Member Avatar for ddanbe
0
111
Member Avatar for discovery-power

at the end of your program write this command [code=c]getch(); [/code] Thanks

Member Avatar for discovery-power
0
164
Member Avatar for XiaO yuEn

here you go [code=c] #include<iostream.h> #include<conio.h> int main() { int c; cout<<"Enter number of students:"; cin>>c; if(c>100) { cout<<"No class available"; } else if(c>80) { cout<<"Class room A"; } else if(c>75) { cout<<"Class room B"; } else if(c>45) { cout<<"Class room c"; } else if(c>25) { cout<<"Class room D"; } …

Member Avatar for XiaO yuEn
0
87
Member Avatar for oskar132

try to use %s instead of %c.... may be this ll be help ,i m still learning thanks

Member Avatar for th3learner
0
110
Member Avatar for th3learner

[code=c] #include<iostream.h> #include<conio.h> #include<stdio.h> #include<string.h> void main() { char s[100],z[10]; clrscr(); cout<<"Enter your name:"; gets(s); cout<<strupr(s[0]); cout<<"."; getch(); } [/code] what I am looking for is that when user input deniweb,then it should output [B]D[/B] please help Thanks

Member Avatar for Sky Diploma
0
159
Member Avatar for th3learner

hello can any one please write code in simple language tht how to find vowel from string Thanks

Member Avatar for mrnutty
0
118
Member Avatar for th3learner

[code=c] #include<iostream.h> #include<conio.h> #include<string.h> void main() { char s1[30],d[30]; int l; clrscr(); cout<<"Enter your name: \n"; cin>>s1; cout<<s1<<endl; l=strlen(s1); cout<<l; d=strupr(s1); cout<<d; getch(); } [/code] When i run this code , it shows Lvalue required error please help

Member Avatar for mrnutty
0
94
Member Avatar for th3learner

#include<conio.h> #include<stdio.h> main() { int a,b,c; clrscr(); printf("enter your first value:"); scanf("%d",&a); printf("enter your second value:"); scanf("%d",&b); printf("enter your third value:"); scanf("%d",c); if(a>b && a>c) { printf("first value is greater"); } else if(b>a&&b>c) { printf("2nd value is greater"); } else if(c>a&&c>b) { printf("third value is greater"); } getch(); Code runs …

Member Avatar for Gaiety
0
110
Member Avatar for th3learner

Can anyone tell whats wrong in below code? I m learning c++ ..so maybe this ll be very easy solution for you guys[code]Hello i m learning c++ ..so maybe this ll be very easy solution for you guys #include<iostream.> #include<conio.h> void main() { int a,b,c; clrscr(); cout<<"Enter Your 1st Value"; …

Member Avatar for th3learner
0
148

The End.