Search:

Type: Posts; User: josh_d

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,383

    Codeplug, The memory is not actually leaked, I...

    Codeplug,
    The memory is not actually leaked, I forgot to include the free statement.

    The edit box is actually a text editor window. I am modifying an open source text editor for my own purposes....
  2. Replies
    3
    Views
    1,383

    Problems posting a message from the buffer

    Hi all,
    I am new to windows programming (and not much better at programming in general) and am having a problem.

    This is the readers digest version of my code (hopefully I havent left out...
  3. Replies
    4
    Views
    1,087

    No, Its NoteXPad. Its a pretty good little...

    No, Its NoteXPad. Its a pretty good little engine.
  4. Replies
    4
    Views
    1,087

    On the off chance that anyone is interested, I...

    On the off chance that anyone is interested, I had a flash of inspiration last night, but its sort of a hack.

    Im setting up the keystrokes Im looking for as Accelerators in the resource file.
    ...
  5. Replies
    4
    Views
    1,087

    Need help intercepting the buffer

    Hi All,

    I am modifying an open source text editor for use in our test department. We have script files that are a nightmare to interpret and create. I want to modify a text editor to display and...
  6. Replies
    0
    Views
    2,192

    MSVC resource script in Dev-C++

    Hi All,
    I have ported a text editor called NoteXpad2 from MSVC to a Dev-C++ project. It works fine, but now im tweaking it for my own nefarious purposes (well, maybe not so nefarious, but its a...
  7. Replies
    2
    Views
    1,076

    That did it, thanks anon. Im tweaking an open...

    That did it, thanks anon.

    Im tweaking an open source Text editor to let me view some testing scripts in a readable format without changing their actual content.

    I didnt realize a unicode flag...
  8. Replies
    2
    Views
    1,076

    Problems with appendMenu

    Hi all,

    Im having problems with the below code. I am trying to add a new menu option to a menu. With the below code I get the menu, but its name is 4 squares (the unprintable control characters ...
  9. Replies
    4
    Views
    3,435

    Wow, this was a HUGE learning experience for me. ...

    Wow, this was a HUGE learning experience for me. I finnaly got it to compile. My thanks to the many folks who helped out.

    In the end it came down to something relatively simple. _WIN32_IE is...
  10. Replies
    4
    Views
    3,435

    fun with _VARIANT_BOOL and __unaligned

    This is related to my previous post:
    "Dev C++ linker error: undefined reference"
    But I have progressed past those symptoms and figured I should start a new thread.

    I have imported an MSVC...
  11. Replies
    11
    Views
    9,031

    No sir, Win2k pro.

    No sir,
    Win2k pro.
  12. Replies
    11
    Views
    9,031

    One last piece of probably useless information....

    One last piece of probably useless information.
    I can explicitly typecast it by:
    (DWORD(*)(void*))glLogoDrawThread

    and I then go on my merry way to the the "SetLayeredWindowAttributes@16" issue...
  13. Replies
    11
    Views
    9,031

    Hold the phone. This is just getting more and...

    Hold the phone. This is just getting more and more bizzarre.

    I narrowed the offending parameter to glLogoDrawThread through trial and error. I passed zero for this and it worked, only now the...
  14. Replies
    11
    Views
    9,031

    Thanks Ken

    Thanks Ken,
    That was indeed the solution.

    Thanks also for the link to CreateThread information. I dont have a solution yet, but this is my first time working with threads, so thats not...
  15. Replies
    11
    Views
    9,031

    sorry, should include some info

    You probably cant help much without info on the line in question...


    glData->hThread = CreateThread(NULL, 0, glLogoDrawThread, glData, 0, &glData->dwThread); // create the rendering thread
    ...
  16. Replies
    11
    Views
    9,031

    Salems suggestion still didnt work

    I didnt like the solution, because it will mask any future changes to this system include, but at I needed to try something.

    I copied

    BOOL SetLayeredWindowAttributes(
    HWND hwnd,
    COLORREF...
  17. Replies
    11
    Views
    9,031

    Dev C++ linker error: undefined reference

    This is the first time Ive done any programming since a few classes 6 years ago, so the answer is likely to be pretty basic.

    I am compliling a Text editor in Dev C++ and getting the following...
Results 1 to 17 of 17