1 :: Tell me how do you like to go up in a swing?
it look fun going up and down in a swing
|
2 :: WHAT IS DIFF BETWEEN
int a[][]=[4]
int [][]a=[4]?
Yes There is diff between, both will give you error. one will give compiler error and another will give systax error.
|
3 :: What is proces?
In Windows, Thread is an unit of execution.Process is theenvironment in which thread executes.Scheduler, schedules
the Threads not the process.
In Unix variants,Thread is treated as light weight process.
Scheduler, schedules the process not threads.
|
4 :: How to create SDK based ATL?
how to create SDK based COM?
Use the CAxWindow class as described below: Make sure that AtlAxWinInit has been called.
AtlAxWinInit();
|
5 :: What Is "AtlAxWin80"?
"AtlAxWin80" is the name of a window class that helpsprovide ATL's control-hosting functionality. When you
create an instance of this class, the window procedure will
automatically use the control-hosting API to create a host
object associated with the window and load it with the
control that you specify as the title of the window. For
more information, see How Do I Load Controls Specified at
Run Time?.
|




Webmaster Said:
Thank you.