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

Search:

Type: Posts; User: CppMaster

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,158

    Re: IMAP and recv()

    Thank you very much! The problem was actually that I'd forgotten for my own command to add the CRLF sequence (it's in that very order). I will heed your advice aswell, with recv(). Thanks once again.
  2. Replies
    2
    Views
    1,158

    IMAP and recv()

    Hello,
    I am currently working on a small scale programming implementing IMAP4. I create a socket which connects an IMAP4 server fine. I receive the greeting from the server and then send a NOOP...
  3. Fatal: 16 bit segments not supported in module TEST.ASM

    I'm currently learning ASM and trying one of the code examples. I have no problem assembling, but when I get to linking, using TLINK32 on a computer running Windows XP with an Intel Pentium 3...
  4. Replies
    4
    Views
    836

    Unresolved External to constructor

    hello,
    I was trying to create an array class (to use instead of pointers). This was mostly to practice (I know about the vector and auto_pointer template). They compile, but when I get to linking,...
  5. Re: how a function to return a 2-dimension array back?

    I'm not an expert either in hardware, but I'm guessing you could define an assignment operator for arrays (if your using C++). You could also possibly copy your array in ASM (which would be much...
  6. Replies
    5
    Views
    653

    Re: Unresolved External

    I specified that I was using the namespace std (it wouldn't have compiled otherwise).

    That doesn't work, because the streams are modified, therefore can't be const and the operator I'm trying to...
  7. Replies
    5
    Views
    653

    Unresolved External

    Hello,
    I'm trying to create a console that would replace the ms-dos input and output (basically, the i/o would be done in an edit control). Using the Borland C++ compiler, I get the following:...
  8. Replies
    4
    Views
    1,271

    Re: Program runs out of memory

    Thx for the help.
  9. Replies
    4
    Views
    1,271

    Program runs out of memory

    Hello,
    I wrote a java exam in C++, but for some unknown reason to me, my program runs out of memory. Why would it do that?

    Here's the code:


    /*
    * Authors: The Master & Br0ken
    *...
  10. Replies
    4
    Views
    1,293

    Questions about C++ IO

    Hello, I have four questions.
    1. Is there a way to check if a file exists? if there is what is it?
    2. Does the creation of an ofstream object necessarily create a file if it does not exist? If it...
  11. Replies
    3
    Views
    528

    Re: casting to const

    Hmm...Hadn't thought of that ;p. Thanks a bunch.
  12. Replies
    3
    Views
    528

    casting to const

    In my program, I'm creating a 3 dimension int array dynamically, but the sizes vary depending on some variables.


    int*** data = new int[var1][var2][var3];

    I get compiler errors like var2 does...
  13. Re: [Linker error] undefined reference to `GetStockObject@4'

    It works! Thanks a bunch : )
  14. Re: [Linker error] undefined reference to `GetStockObject@4'

    It should be a win32 gui (tho I created an empty project with Dev-Cpp if that's what you were refering to).
  15. [Linker error] undefined reference to `GetStockObject@4'

    Hello. I'm currently building an application to solve a sort of game called Sudoku. I use Dev-C++. When I try to compile/link my program I get the following:

    C:\C++\Sudoku\Sudoku.o(.text+0xe5) In...
  16. Replies
    0
    Views
    593

    Problem with GetWindowContextHelpId

    Hello, in my program, a text editor, I'm using a menu and 2 edit box (keeping it simple for now). I had the following problem: When I maximized my window, the child windows would stay the same size....
  17. Replies
    5
    Views
    1,065

    Re: Getting linker error for unknown reason

    Oh ok. I didn't know that. Thank you very much.
    CppMaster
  18. Replies
    5
    Views
    1,065

    Re: Getting linker error for unknown reason

    actually I did initialize them in Gui.cpp.


    //...
    BOOL CALLBACK Gui::setChildWindows(HWND hwnd, LPARAM useless)
    {
    if(!childWindows)
    {
    Gui::childWindows = new HWND[5];
    ...
  19. Replies
    5
    Views
    1,065

    Getting linker error for unknown reason

    Hello, I'm new to win32 programming and I've been doing C++ for a few months. I'm building a program called CodeIn with a friend. Here's the code:
    [Gui.h]

    #include <windows.h>

    #ifndef _OK...
Results 1 to 19 of 20





Click Here to Expand Forum to Full Width

Featured