Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ArvindKumar17

  1. ArvindKumar17

    I need to send an extra parameter with SendMessage fn

    hi friends, I am using the CWnd::SendMessage function. I am sending the message to the WM_LBUTTONDOWN. OnLButtonDown(UINT nFlags, CPoint point) contains an extra parameter point of type CPoint which I am unable to send. I have tried...
  2. ArvindKumar17

    how do i intergrate different type of windows in one program

    Hi friends, I have an MFC application. I have some codes that should be run before any other code are executed. I would like to know where do I exactly put it. I am thinking about the InitInstance() function of the Application class. It might just prove to be the correct place...
  3. ArvindKumar17

    how do i intergrate different type of windows in one program

    hi friends, I have a number of windows of different type but they are all derived from the same base class CMDIChild Window. I need to intergrate all the different windows such that I can call the different window from one place , say menu by clicking the different options...
  4. ArvindKumar17

    problem with listbox

    hi, I am displaying one ListBox which is derived from the CListBox. The recquirement for the ListBox are as follows: the width of the row should be fixed. But I should be able to increase the height of the row from code. In fact, my program should be able to do that kind of thing...
  5. ArvindKumar17

    make eraser

    hi friends, I wonder most of u people have used the paint program. I have to build a erasor program similar to that in VC++ program. I already have my vc++ program but I have to implement my erasor. regards -arvind
  6. ArvindKumar17

    Do I need to Build a custom list box to make that work

    hi, I am displaying one ListBox which is derived from the CListBox. The recquirement for the ListBox are as follows: the width of the row should be fixed. But I should be able to increase the height of the row from code. In fact, my program should be able to do that kind of...
  7. ArvindKumar17

    how to intergrate differnt windows

    hi friends, I have a number of windows of different type but they are all derived from the same base class CMDIChild Window. I need to intergrate all the different windows such that I can call the different window from one place , say menu by clicking the different options...
  8. ArvindKumar17

    is vc++ program portable on linux? can i make it portable?

    hi, I know that I can communicate via CORBA. But if the client program has been programmed in VC++ will it be portable on linux. You have to consider that in VC++, the client program was build using the windows API but on linux those API will not be there making it not portable. PLease...
  9. ArvindKumar17

    is vc++ program portable on linux? can i make it portable?

    hi, Are programs developped in VC++ portable in linux. Are there are anyway to make them portable - like the use of DLL. It is not as if C/C++ is not available on linux. Then, how can I make a program from VC++ portable on linux. I have to develop my client program in C++. Is...
  10. ArvindKumar17

    template as member variable of view class ????

    Hi friends, How do I put a template as a member variable in VC++. I even have a program where this is possible but I am unable to do it in a new application. Here goes the code . . . regards gunheaa@softhome.net
  11. ArvindKumar17

    how use getFocus()

    thanks friend for u help
  12. ArvindKumar17

    how use getFocus()

    How do I use the getFocus() function. I have used the following code but still when my application opens ups. I do not have focus on my CRichEditCtrl. PLEASE help. .. . CRichEditCtrl* typeBox = new CRichEditCtrl(); typeBox->Create(WS_CHILD|WS_VISIBLE|WS_BORDER|ES_MULTILINE...
  13. ArvindKumar17

    why does my code does not work. I am unable to create a class

    hi friends, I have created my own class and put the member vairables there. They are being intialised in the class contructor. But when I create an instance of the class in ONDraw() funtion of its view, I am having no response. Can anyone say why ? ? ? Here goes the code myClass...

Part and Inventory Search

Back
Top