15,995,326 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Satheesh1546 (Top 21 by date)
Satheesh1546
29-Dec-13 4:43am
View
Thank you ! How to assign a value to the location where lpvBuffer points with out changing the parameter to DWORD ?
Satheesh1546
23-Jun-12 1:51am
View
char message[20] = "test";
for(int i=0; i< strlen(message); i++)
message[i+1] = message[i];
message[0] = 'a';
Satheesh1546
19-Jan-12 22:08pm
View
Copy the dll to the current directory and try again..
Satheesh1546
18-Jan-12 6:57am
View
Since, most of the Webcam's use Microsoft WDM driver. So i think connecting to two camera's simultaneously is not possible with VFW. Better to use DirectX.
Satheesh1546
18-Jan-12 2:43am
View
Are you using the same driver for both webcams?
Satheesh1546
14-Jan-12 10:53am
View
I think there is no need of that semicolon there..
Satheesh1546
14-Jan-12 10:46am
View
Please make it clear, what you need..
Satheesh1546
11-Jan-12 4:20am
View
change the function like this
void readInput(char *fileName){
// printf("****************ReadInput***************\n");
// get input file name
// printf("Input file name: ");
int sum=0;
// char fileName[256];
// cin.getline (fileName,256);
// read file
ifstream fin;
fin.open(fileName);
freopen(fileName, "r", stdin);
string tmp = ""; // a line in the input file
while(getline(fin, tmp)){
// add string into vector
listString.push_back(tmp);
// cout << listString[listString.size() - 1] << endl;
sum=sum+1;
cout<<sum<<endl;
if(sum>100000)break;
}
printf("\n\n");
}
Satheesh1546
11-Jan-12 1:39am
View
Yes. FindWindow() will return handle to the dialog, whose classname or window name matches. In your case it will return the handle of the window named "Dialog".
Satheesh1546
29-Dec-11 6:47am
View
Is it MFC?
Satheesh1546
29-Dec-11 6:46am
View
Deleted
Please clean the debug and Release folder and try running. I think it will not run, even if you choose "Start without debugging".The problem may be with you configuration.
Satheesh1546
26-Dec-11 5:33am
View
Do u included the following libraries.
wsock32.lib mysqlclient.lib libmysql.lib mysys.lib
Satheesh1546
24-Dec-11 1:21am
View
Its better to post you code here.If you are not using any functions of that library, There is no need of including in the linker options.
Satheesh1546
23-Dec-11 9:35am
View
do u included that library to your project?
Satheesh1546
23-Dec-11 7:03am
View
Not clear...
Satheesh1546
7-Nov-11 6:00am
View
Hope this link will help you..
http://stackoverflow.com/questions/811490/what-are-the-alternatives-to-dll-registration-for-activex
Satheesh1546
7-Apr-11 1:36am
View
The quotes are put for just emphasizing..
Satheesh1546
7-Apr-11 1:35am
View
Actually i needed to get the integer value assigned to a particular resource (From resource.h) by specifying it's name. Something like
int fnReturnResourceValue(CString strResourecName)
{
.............
return rsIDVal;
}
Satheesh1546
16-Feb-11 0:56am
View
what just i mean it is without registering the dll.
Satheesh1546
9-Feb-11 23:59pm
View
Thanks SaKryukov
Satheesh1546
17-Jan-11 0:39am
View
This is not my actual requirement. I want to display a round progress indicator while displaying one of my screens..
Show More