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

sheetal_06

@sheetal_06
About
Posts
53
Topics
26
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Bitmap not getting loaded
    S sheetal_06

    In Visual Studio 6.0 it was working.In Visual Studio 2005 it is not working.

    C / C++ / MFC c++ graphics

  • Bitmap not getting loaded
    S sheetal_06

    Hi, We are settignowner draw to true and then trying to load the bitmap on to the button.It was working properly before VS2005. Please help. Thanks.

    C / C++ / MFC c++ graphics

  • Bitmap not getting loaded
    S sheetal_06

    Hi, Thanks for your suggestion. Bitmap is set to false.That way it is working before VS2005 conversion.Not only that if we make the base class CDialog then tha bitmap is coming.CPropertyPage also has tha base class as CDialog. But as per the design i cannot chabge the base class to CDialog. Please suggest a solution. Regards.

    C / C++ / MFC c++ graphics

  • Bitmap not getting loaded
    S sheetal_06

    yes,bitmap id is valid.If i go into Autoload,it is returning success. Please help.It is urgent. Thanks.

    C / C++ / MFC c++ graphics

  • Bitmap not getting loaded
    S sheetal_06

    Hi, I have written a code like this: .h file ======= class CPressuresResultsPropertyPage : public CPropertyPage { CBitmapButton m_BitMapButton; }; .cpp file ========= BOOL CPressuresResultsPropertyPage::OnInitDialog() { CPropertyPage::OnInitDialog(); m_BitMapButton.AutoLoad(IDC_ROTATE,this); } After VS2005 conversion the button is not loading the bitmap IDC_ROTATE.Before that it was working properly. If the dialogs immediate base class is CDialog then it is loading the bitmap.Eventhough CPropertyPage is inherited from CDialog the bitmap is not getting loaded. Thanks.

    C / C++ / MFC c++ graphics

  • SetWindowPos in COM application
    S sheetal_06

    Hi, I am using SetWindowPos(&wndTopMost,0,0,0,0,SWP_NOSIZE); inside OnInitDialog() to place the dialog as the top most.But after that if i click on any other opened application this window is not getting minimized on to the taskbar. This dialog is displayed through a com interface. Please help,it is urgent.

    COM com help

  • Server busy message [modified]
    S sheetal_06

    Hi, I have one MDI application TrialApp.exe and a COM exe MathOperation.exe.COM exe was generated through ATL.Now from a modeless dialog in TrialApp.exe i am accessing a model dialog in MathOperation.exe. 1.Run TrialApp.exe 2.Modeless dialog pops up. 3.Enter the input values. 4.Press a button->calculate. 5.Pops up a dialog from MathOperation.exe 6.Now without closing the dialog(from MathOperation.exe) just click on the modeless dialog(TrialApp.exe) 7.Shows server busy message. This happens in XP and Vista.If i make the dialog model in TrialApp.exe then the message is not coming.Please help. Thankyou

    modified on Wednesday, March 19, 2008 1:30 AM

    COM c++ com sysadmin help

  • How to restore dialog?
    S sheetal_06

    No code for minimizing. This behaviour is only in Vista. In xp it is not getting minimized.It is displayed on top of all other windows.

    C / C++ / MFC tutorial question

  • How to restore dialog?
    S sheetal_06

    Hi, In vista os,when i am trying to open a dialog in application b.exe through another application a.exe the dialog is always appearing on the taskbar.It is not getting displayed on the screen unless you press on the minimized dialog on taskbar.How to change this behaviour?This happens only in vista not in XP. Thanks, Sheetal

    C / C++ / MFC tutorial question

  • UAC
    S sheetal_06

    We will give Admin right,limited access etc.That details i want.

    C / C++ / MFC tutorial question

  • virtual registry entries.
    S sheetal_06

    I have a piece of code which checks whether the current user has the permission to access a HKEY_LOCAL_MACHINE registry entry.When i change the access right for the user to limited actually the user should not be allowed to acess the particular registry entry.But vista is allowing where as xp is not allowing.In vista i think it is getting written into the virtual registry entries(since it doesn't allow in the actual registry).How to prevent this? Any help would b of great use. Thanks

    Windows API windows-admin help tutorial question

  • UAC
    S sheetal_06

    How to get details from User Acoount Control?Especially about the privileges guven to the particular user through coding? Thanks

    C / C++ / MFC tutorial question

  • privilege given to a user [modified]
    S sheetal_06

    for the windows system(xp and above)

    C / C++ / MFC tutorial question

  • privilege given to a user [modified]
    S sheetal_06

    How to find out the privilege given to a user(admin/limited access..)through coding? Thanks -- modified at 6:53 Tuesday 31st July, 2007

    C / C++ / MFC tutorial question

  • application crash in tree control
    S sheetal_06

    ya all have sub directories.

    C / C++ / MFC data-structures help

  • application crash in tree control
    S sheetal_06

    The following is a code snippet for checking the subdirectories. This code is crashing in the highligted line when sStr is "C:\".If it is "D:\" or "E:" it is working. void CBatchPrintDlg::ChkForSubDir( CString sStr, HTREEITEM hTree ) { struct _finddata_t c_file; long hFile; ::SetCurrentDirectory((LPCTSTR)sStr); if( (hFile = _findfirst( "*.*", &c_file )) != -1L ) { if ( IsDirectory ( c_file.attrib ) ) InsertItemTOTree( (LPCTSTR)c_file.name, hTree ); //m_tree.InsertItem((LPCTSTR)c_file.name, hTree ); while( _findnext( hFile, &c_file ) == 0 ):confused: { if ( IsDirectory ( c_file.attrib ) ) { InsertItemTOTree( (LPCTSTR)c_file.name, hTree ); //m_tree.InsertItem((LPCTSTR)c_file.name, hTree ); //break; } } _findclose( hFile ); } } Please help. Thanks.

    C / C++ / MFC data-structures help

  • xp or vista?
    S sheetal_06

    Ya through code.. Thankyou very much.

    Windows API tutorial question

  • xp or vista?
    S sheetal_06

    How to check whether the os is xp or vista? Thanks

    Windows API tutorial question

  • KeyDown
    S sheetal_06

    Thankyou very much...

    C / C++ / MFC tutorial question

  • KeyDown
    S sheetal_06

    How to detect which key has been pressed along with ctrl key? Thankyou

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

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