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
_

_moved

@_moved
About
Posts
15
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • run at shutdown ...
    _ _moved

    it does, although application should be whole time in memory. not a big deal, dos times are over and we have enough memory :-D

    C / C++ / MFC windows-admin performance question

  • run at shutdown ...
    _ _moved

    is there any way to run exe at shutdown, any registry key ?. my app should check some things when windows exits. there is no reason to keep it during whole session in memory.

    C / C++ / MFC windows-admin performance question

  • Convert long to SYSTEMTIME
    _ _moved

    you mean, day,mm,year are stored in one long ? asume year is stored in high word and day+month in low word: systime.wDay= (BYTE)lDate; // low byte low word systime.wMonth= (WORD)(lDate>>8)&0xFF; // hi byte systime.wYear= (WORD)(lDate>>16)&0xFFFF; //hi word you may change it depending on sequence in which values are stored in long

    C / C++ / MFC question

  • old stuff needed...
    _ _moved

    thanks for suggestions. i've found very nice solution, Open Watcom. It supports multiple platforms win16/32 and dos, has lots of tools included, and is open source:-D

    The Lounge question

  • old stuff needed...
    _ _moved

    i mean SDK for windows 3.x,ant its a 16 bit os.

    The Lounge question

  • old stuff needed...
    _ _moved

    this is a point, i already have 16 bit MS C++ compiler with MFC, unfortunately it does not include SDK. There is also download link in readme file which is about 10 years death :). CD version may include SDK ,well, eBay seems to be only one way to get it.

    The Lounge question

  • old stuff needed...
    _ _moved

    does somebody know where to download 16 bit windows platform SDK ?, perhaps 3.1 or so.

    The Lounge question

  • iphlpapi.h error
    _ _moved

    may be iphlpapi.h utilizes types declared in some other header. i suggest you to check APIs used by your app and make sure that all necessary headers in right sequence are included.

    C / C++ / MFC help question learning

  • Intellisense not working
    _ _moved

    deleting intellisense database .ncb file helps sometimes VS will built an new and then it should work

    C / C++ / MFC c++ visual-studio help question

  • VS 6.0 or VS 7.0??
    _ _moved

    i would say there is not a lot of difference. Some debugger and code editor advantages, VB like UI. I think if you have 6 there is no reason to buy 7

    C / C++ / MFC c++ visual-studio question

  • DLL not found !!!
    _ _moved

    some years ago i’ve coded dlls for VB 6.0 and had the same trouble,I don’t know why an VB app needs full path to dll even if dll is in its folder. you can use some APIs like GetModuleFileName to get full path to your application then append dll name to it. I don’t know if there is some better way to solve it I’m not VB coder.

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

  • xp themes
    _ _moved

    Since all controls are rounded, it looks like win3x

    The Lounge csharp visual-studio question

  • Status bar gripper
    _ _moved

    I Never tried it but I think it can be done removing SBARS_SIZEGRIP style using ::SetWindowLong(GWL_STYLE ...) after statusbar was created.

    C / C++ / MFC tutorial

  • realloc(...) like function in C++
    _ _moved

    ok. thanks

    C / C++ / MFC c++ performance

  • realloc(...) like function in C++
    _ _moved

    Hi, I can't find any way to resize class arrays created using "new" is it right to use C memory allocation functions for class arrays and then call constructors/destructors :confused:

    C / C++ / MFC c++ performance
  • Login

  • Don't have an account? Register

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