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
C

cje

@cje
About
Posts
87
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • VS 2003 in vista Find locking up IDE
    C cje

    we have some 3rd party stuff that doesn't compile under vs2005 so I would have to find some money to upgrade the components and then re-do the customization we did on the components in the new version...issues like that make it more attractive to stay with vs2003 since the product is not expected to live very much longer

    cje

    Visual Studio visual-studio help question

  • VS 2003 in vista Find locking up IDE
    C cje

    I am running VS 2003 in vista - the only problem that I am having is that when I do a 'find all' the IDE basically locks up. Any Ideas?

    cje

    Visual Studio visual-studio help question

  • DirectX SDK
    C cje

    if you develop with the DX10 SDK then you do need to run with DX10 runtime I have never seen anything for directx at the api function level with regards to minimum OS requirements but microsoft does tell you what the minimum os is for DirectX http://msdn.microsoft.com/directx/sdk/[^] I believe for DX10 it says: This SDK will install on Windows XP, Windows ServerĀ® 2003, Windows Vista RC2, and Windows Vista RTM using Visual Studio .NET 2003 or 2005.

    cje

    C / C++ / MFC question graphics game-dev json announcement

  • CFileDialog
    C cje

    so

    Nyarlatotep wrote:

    CFileDialog dlg( TRUE, "jpg", NULL, OFN_OVERWRITEPROMPT|OFN_HIDEREADONLY|OFN_PATHMUSTEXIST|OFN_FILEMUSTEXIST, szFilter, this ); if( dlg.DoModal() != IDOK ) { return; }

    does not cause a problem if cancel is pressed but does cause a problem if you press ok right? I suspect that the problem lies in the code beyond this call. Pressing cancel will cause a 'return' to execute, pressing ok will cause what ever code is after this to execute... CFileDialog dlg( TRUE, "jpg", NULL, OFN_OVERWRITEPROMPT|OFN_HIDEREADONLY|OFN_PATHMUSTEXIST|OFN_FILEMUSTEXIST, szFilter, this ); if( dlg.DoModal() != IDOK ) { return; } ...WHAT CODE IS HERE?

    cje

    C / C++ / MFC c++ database data-structures json help

  • How to simulate entering text in a CEdit
    C cje

    I may be totally misunderstanding your question but if the WM_SETTEXT gives you the desired functionality, to make it look like some one is typing could you not just call WM_SETTEXT multiple times...for example to 'type' Hello could you not do WM_SETTEXT 'H' WM_SETTEXT 'He' WM_SETTEXT 'Hel' WM_SETTEXT 'Hell' WM_SETTEXT 'Hello'

    cje

    C / C++ / MFC help tutorial question

  • Copy to clipboard problem.
    C cje

    I ran across the following code in one of our projects - not sure if it will help you or not HGLOBAL hData = 0; // open memory file CSharedFile clipb (GMEM_MOVEABLE|GMEM_DDESHARE|GMEM_ZEROINIT); clipb.Write(cstrString, cstrString.GetLength()*sizeof(TCHAR)); clipb.Write(_T("\0"), sizeof(TCHAR)); hData = clipb.Detach(); // Now, hand over memory block to clipboard if (hData) { VERIFY(OpenClipboard()); SetClipboardData(CF_TEXT, hData); VERIFY(CloseClipboard()); }

    cje

    C / C++ / MFC help question

  • changing of views
    C cje

    not that I am aware of

    cje

    C / C++ / MFC data-structures question

  • changing of views
    C cje

    I have a somewhat similar situation in that the right side of the view is actually a property sheet control (tree control fixed on the left) and I use the tree control to display different 'pages' of the property sheet. When a tree item is selected I simply call a SwitchPage rotuine to display the proper page. The property sheet doesn't display tabs or anything goofy so it is somewhat transparent to the user that the seperate views are actually property pages hope this helps

    cje

    C / C++ / MFC data-structures question

  • How do you use combo boxes with a Doc View SDI Application
    C cje

    have you looked at CFormView?

    cje

    C / C++ / MFC question c++

  • STL iterator
    C cje

    act_x wrote:

    Engineering is the effort !

    what happened when you tried it?

    cje

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

  • problem in Direct show
    C cje

    do a google search for GMFBridge written by Geraint Davies. His ClipPlayer example sounds like what you are looking for.

    cje

    C / C++ / MFC help adobe data-structures announcement

  • Pet Hates
    C cje

    I had to share an office once with a guy who clipped his toenails at his desk

    cje

    The Lounge csharp

  • One class with Multiple IDDs (is this possible)
    C cje

    could you put all of your handlers in to a single class derived from CDialog (I'm assuming MFC here) and then have the dialogs derive from your handler class? class HandlerClass : public CDialog { } class Dialog1 : public HandlerClass { } class Dialog2 : public HandlerClass { }

    cje

    C / C++ / MFC c++ help

  • Difficult computer science problem
    C cje

    he said 'no arrays' which I think means no arrays not iterators

    cje

    C / C++ / MFC data-structures graphics algorithms help question

  • Atheist terrorism?
    C cje

    I live in colorado and see more similarities between the Bailey shooting and the Amish shooting than Columbine. I am curious how much the media has an effect on these people...the shooter at the Amish school was an adult and lined up the kids (just like the Bailey shooter), let the males and adults go (just like the Bailey shooter) and the victims were girls (only 1 girl killed in Bailey but all 6 molested). I wonder what tipped this latest guy over the edge to get revenge for something that happened 20 years ago...why now...you may be on to something

    cje

    The Back Room html com question

  • What next?
    C cje

    I just read an article that said the shooter was 32 years old and didn't seem to indicate that he was living the Amish lifestyle - jumping to conclusions perhaps?

    cje

    The Back Room html com business question

  • The Average Developer
    C cje

    cykophysh39 wrote:

    what music do the guys listen too

    cykophysh39 wrote:

    What makes the dudes so crazy

    are you assuming that all developers are guys and dudes or is that 'guys and dudes' in a generic sense?

    cje

    The Lounge question

  • Scrollbar
    C cje

    are you getting the HScroll message in the dialog that is the parent of the scroll bar?

    cje

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

  • Interesting quotes from Score 1.0
    C cje

    I am also saddened by that...as the parent of a 16 year old I feel that it is my responsibility to provide my son with every opportunity to 'turn himself into' a productive member of society. If your parents truly do not care enough to even over see your schooling then your prospects for the future are dim indeed.

    cje

    The Back Room sharepoint com question announcement learning

  • Bitwise operators
    C cje

    yes, the ~ operator is the Bitwise NOT

    cje

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