Search:

Type: Posts; User: Arhaikos

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    2,329

    Anyway, wcout fixed it wchar_t...

    Anyway, wcout fixed it

    wchar_t username[UNLEN +1];
    DWORD username_len = UNLEN + 1;
    GetUserName(username, &username_len);
    wcout << username <<"\n";

    Thanks
  2. Replies
    4
    Views
    2,329

    Well I tried this one as well: wchar_t...

    Well I tried this one as well:


    wchar_t username[UNLEN +1];
    DWORD username_len = UNLEN + 1;
    GetUserName(username, &username_len);
    cout << username<<"\n";

    Still isn't...
  3. Replies
    4
    Views
    2,329

    Getting current user username

    Hello,

    I tried the code as follows:


    #include <windows.h>
    #include <stdio.h>
    #include <Lmcons.h>
    #include <string>
    #include <iostream>
  4. Replies
    18
    Views
    163,558

    Sticky: Thanks for the links!

    Thanks for the links!
  5. Replies
    4
    Views
    3,777

    When I had a forum in the past, I was...

    When I had a forum in the past, I was experiencing some "down" times which is clearly up server's fault.
  6. Replies
    12
    Views
    86,601

    Sticky: Yes I agree, this free tutorial is far from the...

    Yes I agree, this free tutorial is far from the best that exist on the internet on C++. Good job!
  7. Replies
    20
    Views
    2,059

    Have you tried making a new project with the same...

    Have you tried making a new project with the same code to see if that happens again?
    Also is codeblocks compatibility available for your version of win8? I haven't really checked code::blocks...
  8. Replies
    1
    Views
    3,287

    I would check the links that forum members...

    I would check the links that forum members provide above on the sticky and make a big google search.
  9. Replies
    8
    Views
    78,951

    Sticky: Thanks for the links ;)

    Thanks for the links ;)
  10. Replies
    27
    Views
    111,857

    Sticky: Very useful, thanks

    Very useful, thanks
  11. Replies
    60
    Views
    233,611

    Sticky: Thanks!

    Thanks!
  12. I'd go with Joomla, looks and feels more...

    I'd go with Joomla, looks and feels more proffesional
  13. How about this: #include...

    How about this:


    #include<iostream>
    #include<string>
    using namespace std;
    int main()
    {
    string s = "qwert\byui";
    cout << s << endl << endl;
  14. Replies
    4
    Views
    844

    Just a little boost: #include ...

    Just a little boost:



    #include <iostream>

    using namespace std;

    void fun(const int b[], int n)
    {
Results 1 to 14 of 16