Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Sujan Christo

@Sujan Christo
About
Posts
134
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • WaitCursor and form disable
    S Sujan Christo

    Hi Use the following code void CTestDlg::OnLongProcess() { CWaitCursor wait; . . . Sleep(4000); //Some Long Process . . . . wait.Restore(); //Restore the Wait cursor //Continue process } This may help you Sujan

    C / C++ / MFC help c++

  • Printout Bmp image
    S Sujan Christo

    Hi, One of the procedure which you can follow is load the image into a dc and print the contents of the DC. Have a look @ the following link, although it is related to OpenGl, i think that you'll get little hints from it http://www.codeproject.com/opengl/opengl_printing.asp[^] Sujan

    C / C++ / MFC question c++

  • customizing MS Word Menubar
    S Sujan Christo

    Hi, For custom menu handling you have to use the concept of C0M Addin. Please have a look @ the following links. This may help you http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dno2kta/html/comaddins.asp[^] http://support.microsoft.com/?kbid=230689[^] http://www.cheztabor.com/AtlAddIn/[^] Sujan

    C / C++ / MFC question tools help tutorial learning

  • disabling Excel toolbars from within VC
    S Sujan Christo

    Hi, You have to user Com add-in for doing these type of manipulations. Have a look @ the article below, http://support.microsoft.com/kb/q199691/[^] this may help you Sujan

    C / C++ / MFC question com

  • Getting the HWND from Filename
    S Sujan Christo

    Hi, You can use the SPY++ Utility which comes with Visual Studio Tools Sujan

    C / C++ / MFC help question

  • DirectShow : Linker Error
    S Sujan Christo

    Hi, You have to link the needed libs. Think that you have to add strmiids.lib explicity in the linker options Hope that this will help you Sujan

    C / C++ / MFC help graphics game-dev debugging question

  • Color Palette Toolbar
    S Sujan Christo

    Hi, I don't know how the color palette of corel looks like, but have a look @ the following articles, These may help you to start developing your own Palette http://www.codeproject.com/miscctrl/gradient.asp[^] http://www.codeproject.com/docking/prod_profuis.asp[^] http://www.codeproject.com/miscctrl/colour_picker.asp[^] Best of Luck Sujan

    C / C++ / MFC

  • KeyWord and Reserved Word
    S Sujan Christo

    Hi, Have a look @ the following links, it may help you http://en.wikipedia.org/wiki/Keyword[^] http://www.atis.org/tg2k/_reserved_word.html[^] Sujan

    C / C++ / MFC

  • help!!!!!i have got an error.....
    S Sujan Christo

    Hi, Seems that you have deleted some of the needed headers/endif statement.Have a look @ the msdn with the error code C1010 Sujan

    C / C++ / MFC help

  • Rename VC++ project name
    S Sujan Christo

    Hi, Think it is difficult ! Sujan

    C / C++ / MFC question c++

  • Timer in a non-CWnd class
    S Sujan Christo

    Hi, Within the Func() function use SetTimer as SetTimer( NULL, 1, 500, (TIMERPROC)TimerProc); This will work SUjan

    C / C++ / MFC tutorial question

  • VC++ .net and serial communication
    S Sujan Christo

    Hi, What error message r u getting. I had done serial comm in VC++. Have a look at the following link http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnfiles/html/msdn_serial.asp[^] it will surely help you Sujan

    C / C++ / MFC c++ csharp

  • Program wont write to file
    S Sujan Christo

    Hi, I took tried ur code. Seems that fstream is havin some prob. I tried with a different stream for writing after closing the current stream and it worked !. ie added the following code after stream.close(); fstream stream2("database.txt", ios::in | ios::out|ios::app ); stream2 << current << endl; stream2.close(); This means that the first stream is having some problem Sujan

    C / C++ / MFC help ios database

  • How to show the hint text in a dialog?
    S Sujan Christo

    Hi, Use the following code. It will work In Dialog's header add CToolTipCtrl tooltip; in Dialog's on initdialog add tooltip.Create(this,TTS_ALWAYSTIP); CWnd *pWnd = GetDlgItem(IDC_BUTTON_BC1); tooltip.AddTool(pWnd,"Hello Testing ",NULL,NULL); Add the PreTranslateMessage for the dialog and add the following code tooltip.RelayEvent(pMsg); Sujan

    C / C++ / MFC help tutorial question

  • UI Style
    S Sujan Christo

    Hi, Have a look @ this link http://web-bloopers.com/gui-bloopers/[^]sometimes this may help you Sujan

    C / C++ / MFC com graphics design game-dev algorithms

  • Please Help:: CEdit
    S Sujan Christo

    Hi, In the styles page of Edit Ctrl enable multiline and use "\r\n" Sujan

    C / C++ / MFC help question

  • Integrate
    S Sujan Christo

    Hi, Using SDK is quiet straight forward.Create a MFC Application, add the necessary libraries to the library path and use the SDK, code. What sort of SDK are you using ?. What is the problem which you are facing ?. Sujan

    C / C++ / MFC c++ tutorial question

  • What's wrong with this????
    S Sujan Christo

    Hi, myThreadFunc function must have 2 be a global function. So you are using a worker thread.Have a look @ this link this will surely help you http://www.flounder.com/workerthreads.htm[^] Sujan

    C / C++ / MFC com help question

  • Resolution independent programming?
    S Sujan Christo

    Hi, i think that you have to include the resizing code Have a look @ msdn related to CWnd::OnSize it does have an example Hope that this might help you Sujan

    C / C++ / MFC wpf question

  • close applications
    S Sujan Christo

    Hi, Get the handle of the running application using FindWindow function and send the WM_CLOSE message using SendMessage like SendMessage(hWnd,WM_CLOSE,0,0); Hope this will help you Sujan

    C / C++ / MFC help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups