- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 7
- Posts with Downvotes
- 6
- Downvoting Members
- 4
- Interests
- Programming Development, Testing(Codes, Projects, etc), Databases, Developing New things.
18 Posted Topics
Re: Try this one [CODE]int value = cmb.SelectedValue;[/CODE] This will give you the selected value of the selected display member. | |
Re: Hello Dear Try this one DialogResult = MessageBox.Show("Are you Sure?","collection", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if(DialogResult == DialogResult.Yes) ; { this.Hide(); MessageBox.Show(M, "collection", MessageBoxButtons.OK); } | |
Re: At the end of instalation programs diplay a screen with name password managemant. You just go to password management screen anf unblock all the users anf=d just fix your user and password. | |
I want to compare my password with the stored password but it don't compare correctly. WHY? Please someone correct it. [code] #include <iostream> #include <string.h> #include <conio.h> #include <cstdlib> using namespace std; int main() { string my = "programming "; string pass = ""; int s; int a; cout << … | |
I want to enter password in asteriks and compare it from the file. I compare it but i cannot able to show it in asteriks.If someone knows please solve it ? | |
Re: #include <time.h> #include<iostream> #include<cstdlib> #include <stdio.h> using namespace std; char dateStr [9]; char timeStr [9]; void display() { cout << "\n\n\t\t\t MY DIGITAL CLOCK \n\n\n\n"; _strdate( dateStr); cout << "\t\t\n\n The current date is: " << dateStr << "\n\n"; _strtime( timeStr ); cout << "\t\t\n\n The current time is: " … | |
Re: Dear you are declaring a char ( char s1 = "" ). Its not a string fis=rst declare a string as char s1[10]; // string s1 of 10 characters char s2[10]; //string s2 of 10 characters Now take input as cin.getline(s1,10,'\n'); cin.getlin(s2,10,'\n'); Now compare two strings. It will compile and … | |
Re: [QUOTE=bolx;880780]Hi, im new to c++ and wondered if anyone could help me with this Use a for loop to display 3 times table backwards 12 times 3 = 36 11 times 3 = 33 10 times 3 = 30 9 times 3 = 27 8 times 3 = 24 7 … | |
Re: Yes you store it in an array and than run a loop which display the data in the array in the reverse order.(Its a c++ code) Just like This: [code=c] // declaretion of array int array[]; int count=0; // store the value of bin in the above declared array bin … | |
Re: Hi your question is you just store square rott and cube of first 10 integers.And in your code you get user user input which is incorrect. First of all you just run a for loop of maximum 10 values in which you do your work e.g square root anf cube … | |
[QUOTE=Richy321;880968]Thanks for looking btw.[/QUOTE] Hi I also try to connect sql with c++. Please if you connect than tell me how you connect it. And explain these two lines,I found only two errors of these lines. 4.import "C:\Program Files\Common Files\System\ADO\msado15.dll" \ 5.no_namespace rename("EOF", "EndOfFile") Thanks in advance. | |
Re: Dear actually you compare a whole string with a single character which is a bad programming pratice. you just declare password as a char ( char password ) . Now it compares. [code=cpp] #include <iostream> #include <cstdio> #include <cstdlib> using namespace std; int main() { // your mistake you write … | |
Re: 1) int arrA[]; int *ptrToarrA = arrA; 2) int arrB[]; int *ptrToarrB = arrB; Now it is correct. When you enter a value in the array it store in *ptrToarrB and if you want to enter more values in the array you run a for or while loop for this … | |
Hi I faced a very serios problem when I connect c++ with orcale. This is our project. I use c++ at front end and orcale at the backend. If someone know how to create a connection between them Please tell me. Advance Thanks. | |
Re: Java is a high language an compared to c++. In java we use a lot of c++ functions but the extra thing in Java is ther are lots of built in funtions which are not in c++.But c++ is the best for learning how to pragram. Professionals use Java in … | |
Re: Dear you make two header files. One as a setA.h and other one as a setB.h. Now include both of the header files in your cpp file. #include<iostream> #include"setA.h" #include"setB.h" I hope you understand my wording. | |
Re: Dear you dont include #include<string> . Now check it. | |
Re: [code=cplusplus] #include<iostream> using namespace std; struct employee { int ID; int salary; int division_code; int job_code; void input(employee emp[], int i) { cout << "Employee number "<<i+1<<endl; cout << "ID"<<endl; cin>>emp[i].ID; cout << "Job Code"<<endl; cin >> emp[i].job_code; cout << "Division Code"<<endl; cin >> emp[i].division_code; cout << "Salary"<<endl; cin >> … |
The End.