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
P

pepe 0

@pepe 0
About
Posts
37
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to open a file in its designated application?
    P pepe 0

    You can do that with ShellExecute

    C / C++ / MFC tutorial question

  • disable drag&drop in RichEdit
    P pepe 0

    hello, can someone tell me how to disable the drag&drop in a RichEdit control ? Do I have to use IRichEditOleCallback and how ? 1MB of thanks in advance

    C / C++ / MFC tutorial question

  • CreateDIBSection
    P pepe 0

    It's just because I make memory access and they seem to be slow. Never mind, I'll do more tests. Thanks.

    C / C++ / MFC graphics performance question

  • CreateDIBSection
    P pepe 0

    The fourth parameter of CreateDIBSection (VOID **ppvBits) gives me values over 0x80000000, is it still system memory ?

    C / C++ / MFC graphics performance question

  • CreateDIBSection
    P pepe 0

    hello, Is it possible to have CreateDIBSection to allocate the bitmap in system memory rather than in video memory (without DDraw) ?

    C / C++ / MFC graphics performance question

  • XP backup
    P pepe 0

    Hello, is there a backup utility included in WinXP home edition that could backup a network drive ? thanks.

    System Admin sysadmin tools question

  • IGlobalInterfaceTable
    P pepe 0

    Oops, i forgot to call: CoInitializeEx(0, COINIT_APARTMENTTHREADED); Next time i'll read the docs more deeply.

    COM tutorial question

  • IGlobalInterfaceTable
    P pepe 0

    Hello, I'm writing a browser helper object (BHO). It seems that I cannot do this : IGlobalInterfaceTable *g_pGIT = NULL; /* ... */ void CALLBACK TimerProc(UINT uID, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2) { HRESULT hr; IDOMPeek* pIDOMPeek = NULL; hr = g_pGIT->GetInterfaceFromGlobal( dwUser, IID_IDOMPeek, (void**)&pIDOMPeek); /* ... */ I get hr == 0x800401f0 Why and how should i do it ? Does I have to use ITimer, ITimerService, ... But i cannot find samples how to use that. Thanks.

    COM tutorial question

  • load file in buffer
    P pepe 0

    file=fopen(m_pathname1,"r"); with a lowercase 'r' "640K ought to be enough for anybody." Bill Gates

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

  • Memory leakages
    P pepe 0

    There is also a very basic detection/debugging with _CrtDumpMemoryLeaks() and _CrtSetBreakAlloc() in crtdbg.h "640K ought to be enough for anybody." Bill Gates

    C / C++ / MFC performance question

  • Is there a fast method for doing this?
    P pepe 0

    There are lots of implementation of linked lists, you could try STL containers, they are very fast if they are used in a good way. There must be examples & tutorials here at CodeProject. You could also implement it yourself. Basically it should look like this : struct myList { long somedata; struct myList *next; }; "640K ought to be enough for anybody." Bill Gates

    C / C++ / MFC json tutorial question

  • Microsoft admit to quick hacks
    P pepe 0

    Daniel Turini wrote: So, explain me CoInitialize(NULL) and CoInitializeEx(NULL, APT_MODEL); Why do the hell they didn't use the dwReserved in CoInitialize to set the apt. model ? Why creating a Ex function that has the same dwReserved, plus the apt. model choice ? To be consistent with their inconsistency. "640K ought to be enough for anybody." Bill Gates

    The Lounge html com question

  • Keystroke characters to toggle.
    P pepe 0

    Alt+Tab

    C / C++ / MFC question

  • Is there a fast method for doing this?
    P pepe 0

    If you have many data you could use a linked list structure. If you want to use arrays, use memmove.

    C / C++ / MFC json tutorial question

  • Keystroke characters to toggle.
    P pepe 0

    Ctrl+Tab

    C / C++ / MFC question

  • Annoying Compiler Warning
    P pepe 0

    I'm not a guru but I suppose the the compiler interpret (well a compiler does'nt interpret code, but...) : char *str[] = {"one", "two"}; as char *str[2] = {"one", "two"}; I think (not shure) that your code might compile in old C but not in C++ (new behaviour).

    C / C++ / MFC c++ data-structures business help tutorial

  • Annoying Compiler Warning
    P pepe 0

    And like this ? : typedef struct { char *(*errors)[]; } ERROR_LIST; char *errors[]; ERROR_LIST err_list={&errors}; char *errors[]={"An error","Another error",};

    C / C++ / MFC c++ data-structures business help tutorial

  • CreateFont & underline
    P pepe 0

    Thanks, I'll have to code :(( ps : your .scr is cool !

    C / C++ / MFC question

  • CreateFont & underline
    P pepe 0

    I know how to set the underline attribute, but i want to set the position (relative to the baseline) of the line. If possible ! Thanks anyway.

    C / C++ / MFC question

  • CreateFont & underline
    P pepe 0

    Hello, Is there a way to specify the position of the underline of a font ? thanx

    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