No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
13 Posted Topics
Re: [CODE] if (checkBox1.Checked == true) { textBox1.Enabled = true; } else { textBox1.Enabled = false; } [/CODE] let me know if you need any other help Thanks | |
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 | |
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 … | |
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 | |
[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 | |
Re: at the end of your program write this command [code=c]getch(); [/code] Thanks | |
Re: 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"; } … | |
Re: try to use %s instead of %c.... may be this ll be help ,i m still learning thanks | |
[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 | |
hello can any one please write code in simple language tht how to find vowel from string Thanks | |
[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 | |
#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 … | |
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"; … |
The End.