Search:

Type: Posts; User: publikum

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    17
    Views
    2,370

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

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

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

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

    ShellExecute...

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

    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,082

    Can you give me an example?

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

    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,082

    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,124

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

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

    Crypto++...

    Crypto++
  10. Replies
    13
    Views
    1,639

    I usualy do it like this: ...

    I usualy do it like this:

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

    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,272

    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,124

    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
    910

    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,090

    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,058

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

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

    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,326

    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
    833

    #include using namespace std; ...

    #include <iostream>

    using namespace std;

    int main()
    {
    char cstring[100];

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

    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,230

    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,054

    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,451

    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,230

    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,451

    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