There are so many articles published in CP regarding database connectivity. Gothrough them. cheers,:)
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
There are so many articles published in CP regarding database connectivity. Gothrough them. cheers,:)
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
Great to hear that you've created your own desktop. Now you need to create your own Operating System. :) All the best.
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
What exactly are those constants 0.3 , 0.59 and 0.11 ?
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
Hamed Mosavi wrote:
// "Life is very short and is very fragile also." Yanni while (I'm_alive) { cout<<"I love programming."; }
These many compilation errors in your small code. Are you a true lover of programming ;-) error C2001: newline in constant error C2015: too many characters in constant error C2143: syntax error : missing ';' before 'constant' error C2143: syntax error : missing ';' before 'while' error C2001: newline in constant error C2015: too many characters in constant error C2143: syntax error : missing ')' before 'constant' error C2143: syntax error : missing ';' before '{'
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
try FindWindowEx static CWnd* FindWindowEx( HWND hwndParent, HWND hwndChildAfter, LPCTSTR lpszClass, LPCTSTR lpszWindow );
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
look at this... http://www.codeproject.com/listctrl/ReportControl.asp Sreedhar DV [Real success is having courage to meet failure without being defeated.]
You have to create two bitmap resources for doing this. One is for normal state another for highlight state. On mouse over on the button you need to change the bitmap.
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
Are you able to use two mice at a same time???
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
Can you post the sample code snippet. Upto my understanding, set a flag before start the thread. Based on the flag start or stop your threads in the for loop.
Sreedhar DV [Real success is having courage to meet failure without being defeated.]
Set the "Tab stop" for the edit control as 1. For doing this click Ctrl+D on the resource view of the dialog. Set the edit control tab stop as 1. It is the simplest way to solve your problem.:)
Sreedhar DV
Create a class which derives from the CScrollBar class. The Thumb Wheel control functionality is similar to the scroll bar functionality. Instead of changing the view position with GetScrollPos() do your task. For example as in the figure shows rotate the image horizantally or vertically. And you can set range of angle (i.e 0-360) with the help of SetScrollRange(). On the OnPaint of your class draw the Thumb Wheel control as per your wish. All the best....:) Let me know your success.
Sreedhar DV