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
_

_AnsHUMAN_

@_AnsHUMAN_
About
Posts
2.1k
Topics
34
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Changing Treeview control apperance
    _ _AnsHUMAN_

    See Full-Featured Tree Control[^]

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC c++ data-structures question

  • Icon on Button not display in XP.
    _ _AnsHUMAN_

    Can you change the icon to bitmap and try CBitmapButton class to load it on the button?

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC question

  • how to start
    _ _AnsHUMAN_

    Once a USB drive is attached to another computer, the drivers will install on the other computer as well. On this being done and said, you can then access the contents of the USB drive just like any other remote drive. Not sure what do you mean by "all operation". the above is answered assuming you are querying for copy/paste and other basic functionalities.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC tutorial question

  • Does ActiveX ctrl work as seperate process?
    _ _AnsHUMAN_

    As the name ActiveX CONTROL suggests that it is a control you will need something (some app) to host it. You can call the activex's functions from the host which can be an executable. ActiveX doesn't work as a separate process. Does main program waits on ActiveX ctrl or I can do sperate processing simultaneously in my main program. This depends on the implementation.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC com question

  • C Basic
    _ _AnsHUMAN_

    See this;

    &a[2] - &a[0]
    (a + 2) - (a + 0)
    a + 2 - a - 0
    2 - 0
    2

    the above is true because use pointers you will always get the difference of elements

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC

  • How to resize tab controls in mfc.?
    _ _AnsHUMAN_

    See CResizableSheet and CResizablePage[^] and ResizableLib[^]

    You talk about Being HUMAN. I have it in my name AnsHUMAN

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

  • RegOpenKeyEx
    _ _AnsHUMAN_

    Then there might be an issue in the path you create or the value type you use.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC apache windows-admin help announcement

  • RegOpenKeyEx
    _ _AnsHUMAN_

    What is the return value for RegQueryValueEx. You can check here[^] for the issues you can face and identify why RegQueryValueEx is failing. Below are the failure scenarios mentioned at the above location: If the function succeeds, the return value is ERROR_SUCCESS. If the function fails, the return value is a system error code. If the lpData buffer is too small to receive the data, the function returns ERROR_MORE_DATA. If the lpValueName registry value does not exist, the function returns ERROR_FILE_NOT_FOUND.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC apache windows-admin help announcement

  • What is the MFC future
    _ _AnsHUMAN_

    I would develop the user interface in C# and try to put the logic in VC++ if at all it is a mandate.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC c++ question design discussion

  • Load an image dynamically in win32 using VC++
    _ _AnsHUMAN_

    This should help[^]

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC c++ question json learning

  • reading cell value from excel through C++
    _ _AnsHUMAN_

    A csv file is nothing other than having values separated by a , So, in essence if you create a simple .txt file which contains values separated by a comma operator, the file should open quite happily in Excel. Steps: 1. From your code create a file ABC.csv 2. Put values in the file as 1,2,3.... and so on 3. Save the file from your code. 4. Open excel and you should see the correct contents in the format you wished.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

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

  • How to execute java exe in VC++ 2010 ?
    _ _AnsHUMAN_

    I think there is a problem in the command line arguments you are passing to the executable in the ShellExecute Function. This should be one string something like: "D:\\NSRM3443\\Test\\ch21\\ENC_ROOT\\IN121MTM.000 C:\\CASM_IKRYPT_JAVA\\Support\\Inputs\\CellKeys.txt D:\\"

    You talk about Being HUMAN. I have it in my name AnsHUMAN

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

  • disabele right click popup menu in win32 browser control
    _ _AnsHUMAN_

    Is it your application wherein you are going to do this, or do you want this to be across the SYSTEM?

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC

  • Video Capture using DirectShow only works for first time.?
    _ _AnsHUMAN_

    You can debug to check if the code flow path is different from the first one in the second case. If this doesn't help consider reinitialization of variables you are using before you display the video on the canvas.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC help question

  • CStatusbar and Menubar Background color change
    _ _AnsHUMAN_

    Here[^]. here[^] Also, you can find many other examples relating to owner drawn controls

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC c++ tutorial

  • CStatusbar and Menubar Background color change
    _ _AnsHUMAN_

    You will have to owner draw it. For ex: For the status bar you can do something like: m_statusBar.SendMessage (/*setback color msg/*, 0 , (LPARAM)RGB (128,128,128)) ;

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC c++ tutorial

  • How to get which Radio button is Checked?
    _ _AnsHUMAN_

    Group boxes might be causing the issue. See here

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC help tutorial question

  • How to associate an index value with the cstring objects in a CStringArray in MFC.?
    _ _AnsHUMAN_

    HINT:

    map,

    use this to create association between index and CString object.

    You talk about Being HUMAN. I have it in my name AnsHUMAN

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

  • Random Number
    _ _AnsHUMAN_

    This should do it.

    int randomizedValueInRange = (rand()%(maxRange-minRange+1))+minRange;

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC question c++ lounge

  • Write to Text file using fprintf
    _ _AnsHUMAN_

    Are you building your project with "Use Unicode Character Set" or "Use Multi-Byte Character Set" character set. Change it to "Not Set" Other alternative would be to use string instead of CString. or like this with the above options set:

    FILE *fptr;
    CString Text;
    Text = "asdasdasdasd";
    fptr = _wfopen (_T("D:\\Test.txt"),_T("w+"));
    if(fptr== NULL)
    exit(1);
    fwprintf(fptr,_T("%s"),Text);
    fclose(fptr);

    You talk about Being HUMAN. I have it in my name AnsHUMAN

    C / C++ / MFC help 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