CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: lechoo

Search: Search took 0.04 seconds.

  1. Matrices in solving equations - looking for a book

    Hi,
    I'm looking for a book on matrices, especially describing various methods used in solving equations like Gauss–Seidel method or SVD. Something for programmers or non-mathematicians, focused on...
  2. Replies
    0
    Views
    727

    OpenGL - display single color channel

    Hi,
    using imagemagick I'm loading image form file. Code below gives normal RGB colors.

    im.read(filename);
    im.write(&blob, "RGB", 8);
    glTexImage2D(GL_TEXTURE_2D, 0, 3, im.columns(), im.rows(),...
  3. Re: QuickTime API - GetMoviePict and extracting raw pixel values

    Thanks, that's exactly what I needed.
  4. QuickTime API - GetMoviePict and extracting raw pixel values

    Hi,
    I want to extract raw pixel values from quicktime movie. This is done with GetMoviePict function.


    PicHandle pich = (PicHandle)NewHandle(lMaxSize);
    /*......*/
    pich =...
  5. Replies
    0
    Views
    2,052

    Systemwide hook from C++ Borland Builder

    Hi,
    I created simple DLL in VS2005.


    TEST_API int InstallHook(void)
    {
    hHooks = SetWindowsHookEx(WH_GETMESSAGE,(HOOKPROC) GetMsgProc, (HINSTANCE) hInstance, 0);
    return (int)hHooks;
    }
  6. Replies
    0
    Views
    2,951

    LockFileEx problem

    Hi,
    I'm trying to do something like this: I lock file, so no other process can read from it, then I modify its contents, save it and release lock.

    This is Borland C++ Builder 6



    HANDLE...
  7. Re: Problem with ShellExt example from platform SDK

    Today, after another reboot I think, it started to work in Windows Explorer too. This is very strange. I don't understand what is so different in Windows Explorer.
  8. Problem with ShellExt example from platform SDK

    Hi,
    I have a problem with ShellExt example from platform sdk. Context menu items which it creates show up everywhere but in Windows Explorer. They show up in context menus in Total Commander, they...
  9. Replies
    5
    Views
    1,370

    Re: Threads crashing during memory allocation

    I have bit of a problem, I have no idea where to add /MT in Borland C++ Builder.
    BTW I already have switch (-tWM) which tells compiler to create multi-threaded output.
  10. Replies
    5
    Views
    1,370

    Re: Threads crashing during memory allocation

    Thanks Siddhartha. I'll try that.
  11. Replies
    5
    Views
    1,370

    Threads crashing during memory allocation

    First of all I'm using Borland C++ Builder 6 and it's TThread objects.
    My application is simple image converter. I have list of images and each of them is converted in a thread. I lauch only as many...
  12. Replies
    10
    Views
    12,091

    Re: Using VC6 lib in Borland C++ Builder 6

    Thanks for Your help. Right now I'm using LoadLibrary() and GetProcAddress() which works nicely.
  13. Replies
    10
    Views
    12,091

    Re: Using VC6 lib in Borland C++ Builder 6

    There's only one
    [Linker Error] Unresolved external 'CreateManager()' referenced from C:\TEMP\BACKBURNERCOMM\UNIT1.OBJ

    This is function I'm calling (obtained with dumpbin maxnet.dll /exports)
    46...
  14. Replies
    10
    Views
    12,091

    Re: Using VC6 lib in Borland C++ Builder 6

    Thanks for Your help. By no luck I mean I'm still getting unresolved external error.

    Possible. I'll try again from begining.

    regards
  15. Replies
    10
    Views
    12,091

    Using VC6 lib in Borland C++ Builder 6

    Hi everyone,
    I have following problem: I need to access maxnet.dll using BCB6. There's also lib for this dll. So what I do is convert it (lib file) using coss2omf. Then I add this new lib to project...
  16. Replies
    3
    Views
    1,932

    Re: Getting value form hex (example: 0x45 -> 45)

    Thanks for Your help and BCD tip, now some things make sense.
  17. Replies
    3
    Views
    1,932

    Getting value form hex (example: 0x45 -> 45)

    Hi,
    I have following problem: from hex value, let's say 0x45 i want to get unsigned char which it this case will should be equal 45. I don't have to consider case where there will be letters in hex...
  18. Re: Getting return code of application launched with ShellExecuteEx

    Mine is just like SuperKoko's.
  19. Replies
    1
    Views
    707

    How to confirm if user password is correct

    Hi,
    I have following problem: I have domain and few users.
    Now in my software I want to create log screen where user enters his/hers domain name and password. How can i confirm if entered password...
  20. Getting return code of application launched with ShellExecuteEx

    I think that title explains everything. I'm launching another application passing it some arguments in command line and return code tells me if everything was calculated or there was some error....
  21. Replies
    2
    Views
    3,668

    Re: How to end process tree?

    Works like a charm.
    Thanks a lot.
  22. Replies
    2
    Views
    3,668

    How to end process tree?

    I'm looking for something like "End process tree" form task manager.
    I start an application using ShellExecuteEx. I have its handle and TerminateProcess works just fine, however aplication starts...
Results 1 to 22 of 22





Click Here to Expand Forum to Full Width

Featured