Make sure C:\Drive has More than 1 GB disc Space. Sometimes this will slow down the performance.
Sivaraman Dhamodharan
Posts
-
how to solve- when windows forms application exe run from program files then it getting very slow -
how to solve- when windows forms application exe run from program files then it getting very slowWhat kind of answer will you get when the question is "My Web browser is slow to watch a movie.., Please help me out". To get answer, be specific with your question. What kind of form exe it is? What it does? Why or how you say it is slow? etc
-
how can i connect to microsoft access databaseThe website below has information on how do you connect to different database. I hope it will be useful: http://www.connectionstrings.com/[^]
-
How to use WM_PASTE ? -
c#C++, Java, C# - All good Oops based programming languages. Are looking for something specific on C#? You will get only funny replies when you post such a generic questions...
-
PDF area selectionThe Active-X control below has the rich functionality that you are asking: http://www.visagesoft.com/products/pdfviewerx/[^]
-
CAsyncSocket questionsProvide the code snippet of Client that make connect request and code snippet that listens on a port xyz. With that people can help you.
-
CEdit controlLook for implementing Custom DDV (Google for Custom DDV in MFC) (Like Dynamic Data Exchange(DDX), it is Dynamic Data Validation)
-
login authenticationSet your Login Page as the startup form and display that Modal dialog. When the authentication succeeds, continue with the application.
-
Access structure variable value using string representing variable's name in C++.Answer is apart. Why you want to do it Like that?
-
About strings in c language"assign strings in C" A Question for you. Does C language support Object Oriented Concepts?
-
crystal report problem remove one rowPost it in a different forum with report sections screen shot to get the answer. People will look for C# questions here.
-
CView::OnDraw - related questionOn CView::OnDraw,I added the code like this Really?
-
Reading a comma delimited file to arrayTry this: k=fgetc(fp); if(k==',') break; Hope that will work.
-
Debugging Dll- Write a exe program that uses your COM. 2) Launch the exe. 3) Open your COM Project is Visual Studio 4) Attach the already running exe with the Project. 5) Keep the break points and start debugging it.
-
convert parameter from 'MSTR' to 'char*'OK. You have a problem
-
how to designe my text of dialog box?The link given by Richard MacCutchan has the examples (as a link).
-
c++ implementation of a linked list.void main()
{
Node* head;
head.addNode(10);
}Create the object in the heap first. You just declared a variable stating "I will hold address of Node object in a variable head". But, where does that object? When there is no object head-> will not work. Head.addNode() also wont work as the object is not in stack. Correction:
void main()
{
Node* head = new Node();
head->addNode(10);
}Object will be created in heap. or
void main()
{
Node head;
head.addNode(10);
}Object will allocated on stack
-
fingerprint recognitionSearch for digitalPersona in google. They are one of the leader in finger print recognition. You can purchase the devices and also you can get their SDK that make your life easy. The SDK process has two important steps. 1) Registration: Forming single Registration template by taking the same finger input for at-least 4 times (This will be stored in the database as binary object. Kind of gray scale image formed from the registration templates). The template should be registered for a user of the application 2) Verification: Takes the finger input of the user, walk through the registration template in the in database (Actually you should read the template one by one and ask the sdk that verification succeeded) and a match occurs, you know who the user is.. Note: The finger prints are unique, if a match occurs between verification and already registered template, then you know who the user is.
-
AutoComplete Like Visual Studio??