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
B

BIJU Manjeri

@BIJU Manjeri
About
Posts
23
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Display current time as Label control text
    B BIJU Manjeri

    Hi Lucidation, I think, u are now in the wrong place.:confused:

    C / C++ / MFC c++ design help question

  • Data encryption
    B BIJU Manjeri

    For encrypting that much data (1-2 MB) you must use any symmetric algorithms like RC2, RC4, or Data Encryption Standard (DES)

    C / C++ / MFC algorithms security help question

  • How to remove default icon in caption of MessageBox
    B BIJU Manjeri

    hi am, I tested the code MessageBox(L"Please start application ",L"Test",MB_OK |MB_TOPMOST|MB_APPLMODAL); on windows 7. Its working fine for me. If the above code is also not working for you, then create your own message box, by specifyng the Window Styles in CreateWindow() :)

    C / C++ / MFC tutorial question

  • How to remove default icon in caption of MessageBox
    B BIJU Manjeri

    yes Mohan, your code seems working.. :)

    C / C++ / MFC tutorial question

  • How to remove default icon in caption of MessageBox
    B BIJU Manjeri

    Please try this.. MessageBox(L"Please start application ",L"Test",MB_OK |MB_APPLMODAL); :)

    C / C++ / MFC tutorial question

  • UAC and restarting an external service in my MFC app
    B BIJU Manjeri

    For that, you must set UAC options for your projects. linker option in the Visual Studio development environment must be changed. ->Open the project's Property Pages dialog box. ->Expand the Configuration Properties node. ->Expand the Linker node. ->Select the Manifest File property page. Modify the 1.Enable User Account Control (UAC)-Yes 2.UAC Execution Level-highestAvailable 3.UAC Bypass UI Protection properties-Yes BIJU

    C / C++ / MFC c++ com sysadmin security business

  • char array prblm
    B BIJU Manjeri

    Which type of string you mean.? CString or std::string? for CString--- CString strPath(szPathName); for std::string-- const char* szPathName; std::string strPath; ... szPathName = "c:\\Test"; strPath = szPathName;

    C / C++ / MFC data-structures question

  • how to use a html file in a mfc application?
    B BIJU Manjeri

    For a Dialog Based Application, you can use the WebBrowser Control ActiveX. http://msdn.microsoft.com/en-us/library/aa752046(VS.85).aspx[^] BIJU

    C / C++ / MFC c++ html help tutorial question

  • public/private key pair and digital certificate
    B BIJU Manjeri

    the public/private keys can be generated by using the function CryptGenKey http://msdn.microsoft.com/en-us/library/aa379941(VS.85).aspx[^] MSDN provide a lot of examples for the SECURITY section. For a better results from others, please explain your problem clearly, I mean, code snippet etc.. BIJU

    C / C++ / MFC question c++ cryptography json tutorial

  • Repainting of dialog box takes time.
    B BIJU Manjeri

    it depends on the actions performed by each controls or the size of the bitmap etc. Please check that also. Your system spec also have considerable role.. :)

    C / C++ / MFC question

  • CDAtataBase Example
    B BIJU Manjeri

    Please go through this link.. before that, you must download and install the mysql-connector-odbc-5.1.5-win32.msi (MY SQL Driver) http://vctipsplusplus.wordpress.com/2010/02/23/odbc-and-visual-c/[^]

    C / C++ / MFC help tutorial question

  • converting .ico file to .png file
    B BIJU Manjeri

    Please go through this http://msdn.microsoft.com/en-us/library/ms533837(VS.85).aspx[^]

    C / C++ / MFC tutorial

  • Dynamic created button Resizing [modified]
    B BIJU Manjeri

    Instead of that, you can try this one.. CWnd* m_pWndButton = new CWnd; m_pWndButton ->Create(_T("BUTTON"), _T("Click Me"), WS_CHILD | WS_VISIBLE, CRect(0, 0, 20, 20), this, 0);

    C / C++ / MFC help tutorial question

  • System Drive
    B BIJU Manjeri

    yes you are correct. Windows Vista and 7 have additional security features, please try CoInitializeSecurity() with following params. CoInitializeSecurity( NULL,-1,NULL,NULL,RPC_C_AUTHN_LEVEL_PKT ,RPC_C_IMP_LEVEL_IDENTIFY, NULL,EOAC_NONE,NULL);

    C / C++ / MFC question

  • RAM
    B BIJU Manjeri

    By using WMI, you can query the Physical Memory Size please have a look at Win32_ComputerSystem ->TotalPhysicalMemory http://msdn.microsoft.com/en-us/library/aa394102(VS.85).aspx[^] OR Win32_OperatingSystem ->TotalVisibleMemorySize http://msdn.microsoft.com/en-us/library/aa394239(VS.85).aspx[^] TotalVisibleMemorySize

    C / C++ / MFC question

  • DLL and .Exe
    B BIJU Manjeri

    COM servers come in two basic varieties: in-process and out-of-process. In-process servers (often referred to as in-proc servers) are DLLs. They're called in-procs because in the Win32 environment, a DLL loads and runs in the same address space as its client. EXEs, in contrast, run in separate address spaces that are physically isolated from one another. In most cases, calls to in-proc objects are very fast because they're little more than calls to other addresses in memory. Calling a method on an in-proc object is much like calling a subroutine in your own application. Out-of-process servers (also known as out-of-proc servers) come in EXEs. One advantage to packaging COM objects in EXEs is that clients and objects running in two different processes are protected from one another if one crashes. The disadvantage is speed. Calls to objects in other processes are roughly 1,000 times slower than calls to in-proc objects because of the overhead incurred when a method call crosses process boundaries. Please refer Programming Windows with MFC by Jeff Prosise ->COM

    C / C++ / MFC com question

  • By default run an exe in run as admin mode using MFC
    B BIJU Manjeri

    You can change that by using Projects Settings menu in VS IDE Project Settings > Linker > Manifest File or refer http://vctipsplusplus.wordpress.com/2009/10/21/windows-privileges-issues[^] :)

    C / C++ / MFC c++ help tutorial

  • How to add a Horizontal Scroll Bar to CListBox
    B BIJU Manjeri

    When you add a list box with a horizontal scroll bar to a dialog box using MFC classes, the scroll bar will not automatically appear in your application. To make the scroll bar appear Set a maximum width for the widest element by calling CListBox::SetHorizontalExtent in your code. Without this value set, the scroll bar will not appear, even when the items in the list box are wider than the box. void SetHorizontalExtent( int cxExtent ); http://msdn.microsoft.com/en-us/library/1s0xed6b(VS.80).aspx Cheers, BIJU

    C / C++ / MFC question tutorial

  • Reading CPU Fan Speed from the BIOS
    B BIJU Manjeri

    Thank you Dave.. Thanks for your reply..

    Hardware & Devices hardware performance help

  • Get hardware temperature, voltage, fan speed [modified]
    B BIJU Manjeri

    mm.. still i'm googling.. but no way !! :(

    Hardware & Devices hardware performance 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