Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
7
Posts with Downvotes
6
Downvoting Members
4
6 Commented Posts
0 Endorsements
Ranked #3K
~3K People Reached
Interests
Programming Development, Testing(Codes, Projects, etc), Databases, Developing New things.
Favorite Forums
Favorite Tags

18 Posted Topics

Member Avatar for Nitin Daphale

Try this one [CODE]int value = cmb.SelectedValue;[/CODE] This will give you the selected value of the selected display member.

Member Avatar for kvprajapati
0
151
Member Avatar for NPDA

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); }

Member Avatar for mirfan00
0
163
Member Avatar for pranavdv

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.

Member Avatar for debasisdas
-2
352
Member Avatar for mirfan00

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 << …

Member Avatar for tux4life
-1
256
Member Avatar for mirfan00

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 ?

Member Avatar for Narue
0
198
Member Avatar for hiscasio

#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: " …

Member Avatar for mirfan00
-1
65
Member Avatar for san gabriel

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 …

Member Avatar for mirfan00
0
446
Member Avatar for bolx

[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 …

Member Avatar for Kev06N
0
145
Member Avatar for Unhackmee

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 …

Member Avatar for William Hemsworth
0
97
Member Avatar for fadia

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 …

Member Avatar for mirfan00
0
306
Member Avatar for mirfan00

[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.

Member Avatar for mirfan00
0
66
Member Avatar for rtwister

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 …

Member Avatar for tux4life
0
135
Member Avatar for thumizee

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 …

Member Avatar for tux4life
0
87
Member Avatar for mirfan00

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.

Member Avatar for mirfan00
0
201
Member Avatar for lyardson

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 …

Member Avatar for mirfan00
0
279
Member Avatar for abhishek2301

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.

Member Avatar for mirfan00
0
140
Member Avatar for singhraghav
Member Avatar for Gewalop

[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 >> …

Member Avatar for mirfan00
0
147

The End.