Search:

Type: Posts; User: silk.odyssey

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: Learn COM

    by silk.odyssey
    Replies
    4
    Views
    1,214

    Well my main interest at the moment is building...

    Well my main interest at the moment is building plugins for microsoft office and visual studio.
  2. Thread: Learn COM

    by silk.odyssey
    Replies
    4
    Views
    1,214

    Learn COM

    What is the best way to learn COM today? I see essential COM by Don Box has great reviews on amazon, but it's a decade old. Can it still be used today or is there another book that is better.
  3. Replies
    4
    Views
    2,083

    How do video capture programs work

    I would like to know how video capture applications are coded for the windows platform. By video capture I mean those applications that record the activities going on on the desktop. I would like to...
  4. Replies
    22
    Views
    4,890

    That's when C++ stops looking sexy. LOL. All we...

    That's when C++ stops looking sexy. LOL. All we are we want is C with classes :D
  5. Replies
    12
    Views
    4,247

    QT OpenSource edition is available for windows.

    QT OpenSource edition is available for windows.
  6. Replies
    10
    Views
    1,211

    http://www.jjj.de/fxt/fxtbook.pdf Have a look...

    http://www.jjj.de/fxt/fxtbook.pdf

    Have a look at the bit wizardry chapter.
  7. Replies
    14
    Views
    3,531

    Congratulations. It must be really satisfying to...

    Congratulations. It must be really satisfying to see the result of the hardwork pay off(pun intended :D ) so quickly :)
  8. Replies
    17
    Views
    5,093

    LOL thanks for the warning.

    LOL thanks for the warning.
  9. Replies
    17
    Views
    5,093

    Favorite Programming Authors

    Just thought it'll be interesting to know who the members of the board like to read. I think it will be using when choosing books. Some of my favorite authors are dan gookin who's C for dummies...
  10. Replies
    2
    Views
    1,356

    If this were my homework I'd look at the code for...

    If this were my homework I'd look at the code for another command then try to find out how commands are processed by the OS. If you're using the operating systems: design and implementation book I...
  11. Replies
    2
    Views
    2,376

    Maybe you can try a different theme for the...

    Maybe you can try a different theme for the window manager and see if that improves anything.
  12. Replies
    7
    Views
    1,638

    I think what slows down java desktop applications...

    I think what slows down java desktop applications is swing. Apps like azureus and eclipse don't seem that slow because they use SWT instead of swing for the GUI which uses the underlying OS's native...
  13. Thread: Yesno

    by silk.odyssey
    Replies
    4
    Views
    1,187

    You have to save the return value of the...

    You have to save the return value of the MessageBox function.



    retval = MessageBox(...);

    if( retval == IDYES)
    {
    ...
    }
  14. Thread: Read line

    by silk.odyssey
    Replies
    6
    Views
    1,438

    The strtok function may do the trick. ...

    The strtok function may do the trick.
    http://www.cppreference.com/stdstring/strtok.html
  15. Replies
    10
    Views
    1,697

    The best way I think is to disable the maximize...

    The best way I think is to disable the maximize button when you create the window. Another option may be to set the window size you want when you receive the WM_SIZE message. The MoveWindow function...
  16. Replies
    3
    Views
    6,017

    Anjuta, KDevelop.

    Anjuta, KDevelop.
  17. Replies
    5
    Views
    1,364

    This powerc...

    This powerc http://www.mixsoftware.com/product/powerc.htm? It says it's a dos compiler. You would need a windows compiler for windows programming. If you're interested in C only I would suggest...
  18. Replies
    5
    Views
    1,364

    You probably don't have the platform sdk...

    You probably don't have the platform sdk installed. A search on microsoft.com should provide you with download links.
  19. Replies
    18
    Views
    5,440

    >I guess you haven't read the FAQ then?...

    >I guess you haven't read the FAQ then?
    >http://faq.cprogramming.com/cgi-bin...8&id=1043284351

    Just read it thanks.

    >So, why did you cast it?
    >To hide your failure to include stdlib.h?

    Ah...
  20. Replies
    16
    Views
    4,797

    There are two forms of the increment operator....

    There are two forms of the increment operator. The prefix and the postfix version. The prefix version is ++a and the postfix version a++. Both have the same result if used by themselves but in when...
  21. Replies
    7
    Views
    1,816

    You may want to have a look at Qt...

    You may want to have a look at Qt http://www.trolltech.com/ or wxWidgets http://www.wxwidgets.org/ .
  22. Thread: C++ to C

    by silk.odyssey
    Replies
    5
    Views
    1,386

    Another C tutorial. Looks interesting. ...

    Another C tutorial. Looks interesting.

    http://www.friedspace.com/CProg.html.
  23. Replies
    18
    Views
    5,440

    An example: #include int...

    An example:



    #include <stdio.h>

    int main(int argc, char *argv[])
    {
    int num_strings;
  24. Replies
    2
    Views
    1,721

    For programming GUIs on linux there are a lot of...

    For programming GUIs on linux there are a lot of options. For portability with windows, wxWidgets and Qt are good options. KDE is based on qt.Gtk is portable with windows but it looks ugly there. As...
  25. Replies
    5
    Views
    2,917

    Thanks for the tips and the links. I am not...

    Thanks for the tips and the links. I am not thinking of doing anything too complex though. For that learning C++ would be a better option for me. I would prefer avoiding c++ because i prefer simpler...
Results 1 to 25 of 167
Page 1 of 7 1 2 3 4