Search:

Type: Posts; User: publikum

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds; generated 9 minute(s) ago.

  1. Replies
    17
    Views
    2,362

    http://www.andypike.com/tutorials/directx8/

    http://www.andypike.com/tutorials/directx8/
  2. Replies
    4
    Views
    3,708

    Here (http://winprog.org/tutorial/)'s another...

    Here's another good tutorial...
  3. Replies
    20
    Views
    2,575

    ShellExecute...

    ShellExecute is also a good way....
  4. Replies
    20
    Views
    2,575

    Do you mean executing an executable file (.exe)...

    Do you mean executing an executable file (.exe) or you mean how to open and read file with ASCII content (.txt for example) ?
  5. Replies
    5
    Views
    2,076

    Can you give me an example?

    Can you give me an example?
  6. Replies
    5
    Views
    2,076

    Thanks, but how can I glue dialog to MDI Child...

    Thanks, but how can I glue dialog to MDI Child Window ?
  7. Replies
    5
    Views
    2,076

    Transforming dialogs to MDI

    It's possible to convert dialogs into MDI Child Windows without loosing everything I've done with resources ?
  8. Replies
    4
    Views
    3,117

    I solved it out myself (using std::string)....

    I solved it out myself (using std::string). Thanks anyway!!
  9. Replies
    3
    Views
    1,547

    Crypto++...

    Crypto++
  10. Replies
    13
    Views
    1,634

    I usualy do it like this: ...

    I usualy do it like this:

    (string)(char*)variable
  11. Replies
    4
    Views
    3,117

    config is a namespace - equal to boost ::...

    config is a namespace - equal to boost :: program_options...
  12. Thread: %i, %d, %f ??

    by publikum
    Replies
    3
    Views
    1,269

    http://si.php.net/sprintf It's for PHP, but I...

    http://si.php.net/sprintf
    It's for PHP, but I think there isn't much difference between PHP's sprintf() and sprintf() in C++ :)
  13. Replies
    4
    Views
    3,117

    Boost::program_options

    I have a problem when I try to convert value which I get from config file - i believe it is vector, although I don't know anything about vectors...

    I get an exception error:


    And here's the...
  14. Replies
    4
    Views
    909

    Thanks - i made it work like this..: HMENU...

    Thanks - i made it work like this..:


    HMENU hMenu = GetMenu(hwnd);
    EnableMenuItem(hMenu, (UINT)MAKEINTRESOURCE(IDC_RESOURCE), MF_DISABLED | MF_GRAYED);
  15. Thread: Exe???

    by publikum
    Replies
    7
    Views
    1,081

    You need a compiler and a linker. For Windows I...

    You need a compiler and a linker. For Windows I suggest DevC++ (IDE and compiler/linker) or Borland 5.5 Command Tools (compiler/linker)...
  16. Replies
    3
    Views
    1,050

    I think there's nothing wrong with that...

    I think there's nothing wrong with that...
  17. Replies
    4
    Views
    909

    Showing menu if value is true

    I have menu in my resource file, but I want for parts of menu (popups) to be visible and accessible only if user is allowed to see (or for example, if the variable is true). How to do it?

    Thanks...
  18. Replies
    9
    Views
    1,325

    Here's the MySQL C API Reference:...

    Here's the MySQL C API Reference: http://dev.mysql.com/doc/mysql/en/c.html
  19. Replies
    4
    Views
    832

    #include using namespace std; ...

    #include <iostream>

    using namespace std;

    int main()
    {
    char cstring[100];

    cout<<"hi";
    cstring = "hi";
  20. Replies
    16
    Views
    3,217

    Thanks guys, you're great! I read the whole...

    Thanks guys, you're great! I read the whole thread 3 times and then I finally got up with a working idea!

    Thanks again for all help and answers!!!
  21. Replies
    16
    Views
    3,217

    Here's the code that I use in all .cpp files: ...

    Here's the code that I use in all .cpp files:



    const char* DataAll::sqlite_path = "program.db";
    DataAll Data;
    CppSQLite3DB db = Data.GetDbConn();
    const char* sqlite_path =...
  22. Replies
    3
    Views
    2,039

    reivaj7999: LIKE in SQL is not regullar...

    reivaj7999: LIKE in SQL is not regullar expression... You can look Perl's regex, which is most common today...
  23. Replies
    8
    Views
    15,419

    http://msdn.microsoft.com/library/default.asp?url=...

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/htm/_win32_multimedia_command_strings.asp
  24. Thread: c++ help

    by publikum
    Replies
    12
    Views
    1,224

    Even for this you could use better way...:) ...

    Even for this you could use better way...:)

    neg_i = i - 2*i ;)
  25. Replies
    8
    Views
    15,419

    Here's C++ code, which works perfectly in DevC++...

    Here's C++ code, which works perfectly in DevC++ (you can found SDL on one of updates servers) - but you must copy $DEVCPP/bin/SDL.dll to directory where you have this code...:



    #include...
Results 1 to 25 of 117
Page 1 of 5 1 2 3 4