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
N

Neagoe Gabriel

@Neagoe Gabriel
About
Posts
31
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • CTreeCtrl derived class problem
    N Neagoe Gabriel

    I am writing an C# plugin which contains a subclassed CTreeCtrl( in c++ ). I wrote my own OnKeyDown() function and I'm having a strange (may be normal?) behavior: VK_UP, VK_DOWN, VK_LEFT and VK_RIGHT keys do not enter this function, though other virtual keys do. I checked it out with Spy++ and WM_KEYDOWN messages **are** being sent to my control''s window for every VK. The problem is I wish my control to be navigated with keys (as in Explorer, you now), and somewhat I'm loosing it... I don't know where or how to catch those keys. Any clues? NG

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

  • Xp Like ScrollBar in VC++ 6.0
    N Neagoe Gabriel

    Hi, i want to use in vc++ 6.0 on windows Xp, xp like scrollbars, but i`m creating the scrollbar control in a dialog witch is in a dynamicaly linked dll... NG

    C / C++ / MFC c++

  • Howto know when a dialog ends
    N Neagoe Gabriel

    Overwrite Create in base class...:| NG

    C / C++ / MFC question

  • difference betwwen static & dynamic in MFC
    N Neagoe Gabriel

    static will have all the MFC in your exe no need for MFC dll`s a very large file dynamic will have mfc in separate dll`s ... NG

    Managed C++/CLI c++

  • random number generator
    N Neagoe Gabriel

    srand((unsigned) time(0)) -- initialize random number generator on a timer do int myNumber = rand(); NG

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

  • playing sound
    N Neagoe Gabriel

    DirectShow API PlaySound() function for wav sounds MCI for midi... NG

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

  • capturing bitmap and print
    N Neagoe Gabriel

    you can find here on codeproject 1: Window Capture 2: DDB to DIB 3: SaveDibToFile() 4: Create a printerDC 5: Bitblt the bitmap on the dc 6: EndDocument() --- print that are the steps... NG

    C / C++ / MFC graphics help

  • Dual Monitors - 1 needs to sleep
    N Neagoe Gabriel

    Use dual View Mode on your video card to have to separate display, and then you can create Direct3D surface on the second monitor, and to sleep it... NG

    C / C++ / MFC help question

  • Code To Terminate Application Using Key ?
    N Neagoe Gabriel

    void CYourStatic::PreSubclassWindow() { // TODO: Add your specialized code here and/or call the base class CWnd::PreSubclassWindow(); ModifyStyle(0, SS_NOTIFY); } NG

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

  • How to color the dialog leaving some user defined border?
    N Neagoe Gabriel

    here you have a memory leak HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor); hbr = CreateSolidBrush(RGB(255,0,0)); return hbr; creating a brush every time that a control of dialog, request it do on OnPaint() { CPaintDC dc(this); CRect rc; GetClientRect( &rc ); rc.DeflateRect(10,10,10,10); dc.FillSolidRect( &rc, RGB(0,0,0)); } NG

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

  • How to show the Bitmap at top ?
    N Neagoe Gabriel

    void MyDlg::OnPaint() { CPaintDC dc(this); ShowBitmap(&dc); } this is the only paint you need to do... NG

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

  • static constructors ?
    N Neagoe Gabriel

    [Message Deleted]

    C / C++ / MFC question csharp c++ json

  • antialiasing with MFC
    N Neagoe Gabriel

    for programming....:) NG

    C / C++ / MFC c++ graphics game-dev question discussion

  • C++ in Visual Studio.NET
    N Neagoe Gabriel

    add #include add before return 0 getch();:) NG

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

  • antialiasing with MFC
    N Neagoe Gabriel

    look over the internet for graphics gems books in pdf format and u have there everithing you need... NG

    C / C++ / MFC c++ graphics game-dev question discussion

  • File I/O
    N Neagoe Gabriel

    http://www.sysinternals.com/SourceCode.html[^] and u have there the source code for AccessEnum v1.2 NG

    C / C++ / MFC question

  • Adding CStringArray data into another CStringArray...help..
    N Neagoe Gabriel

    use this details in MSDN, it`s a member of CStringArray void InsertAt( int nStartIndex, CObArray* pNewArray ); CODE: CStringArray strInfo1; CStringArray strInfo2; CStringArray newStr; strInfo1.Add("TEST 1->1"); strInfo1.Add("TEST 1->2"); strInfo1.Add("TEST 1->3"); strInfo1.Add("TEST 1->4"); strInfo1.Add("TEST 1->5"); strInfo2.Add("TEST 2->1"); strInfo2.Add("TEST 2->2"); strInfo2.Add("TEST 2->3"); strInfo2.Add("TEST 2->4"); strInfo2.Add("TEST 2->5"); newStr.InsertAt( 0, &strInfo1); newStr.InsertAt( strInfo1.GetSize(), &strInfo2); for( int i=0; i

    C / C++ / MFC data-structures help

  • Memory requirement in CListCtrl
    N Neagoe Gabriel

    Make a virtual list... NG

    C / C++ / MFC question performance

  • Help with precompiled headers needed!!
    N Neagoe Gabriel

    add to your c files #include "stdafx.h" if u are using then into a visual c++ project with precompiled header project option :D NG

    Managed C++/CLI c++ visual-studio help csharp html

  • CHttp
    N Neagoe Gabriel

    you have define UNICODE in your project because TCHAR type will have a size of 2 bytes then.... an CFile will work different or u can send by mail(to me) your file to see where.... NG -- modified at 10:27 Monday 5th September, 2005

    C / C++ / MFC
  • Login

  • Don't have an account? Register

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