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

Search:

Type: Posts; User: Snoopy07

Search: Search took 0.02 seconds.

  1. Re: [c++] POP3 open source library (independent of MFC and .NET)

    no you have to do it yourself.

    there is help though in the shape of open ssl

    which can handle the secure socket layer for you.

    but there is plenty of info on the web showing how to do this.
  2. Replies
    8
    Views
    1,228

    Re: How to pass strings from a dll

    I have resolved all issues with this.

    As Igor said the issue was not with the dlll
    it was with the basic.

    Once I got my head around that I was able to get it to work.

    Thanks again Igor.
  3. Replies
    8
    Views
    1,228

    Re: How to pass strings from a dll

    OK thanks anyway
  4. Replies
    8
    Views
    1,228

    Re: How to pass strings from a dll

    Yes I understand that this Language handles strings in a non C++ way.

    The Basic copies the string in memory then adds a null terminator (An ASCII ZERO)
    This technique provides a copy of the...
  5. Replies
    4
    Views
    1,044

    Re: Bitmaps cutting off

    code snippet





    case WM_PAINT:


    Hdc=BeginPaint (hwnd,&ps);
  6. Replies
    8
    Views
    1,228

    Re: How to pass strings from a dll

    I want to return


    Either char or a pointer to string.

    Its for use in a basic compiler called Liberty Basic you might have heard of it or not

    I have written DLLs that return numbers for...
  7. Replies
    8
    Views
    1,228

    How to pass strings from a dll

    I am new to DLL writing
    I can return numbers from a DLL but seem unable to return strings.
    Anyone know how to do this in a DLL ?

    Thanks in advance !
  8. Thread: ssid

    by Snoopy07
    Replies
    3
    Views
    11,268

    Re: ssid

    This console application i have written might help you its fully working source code,



    //wifi prog
    //Copyright Madden Software ©
    #include <windows.h>
    #include <stdio.h>
    #include <iostream>...
  9. Re: Window Creation Failure (Can't seem to find the problem)

    You use HWND_MESSAGE in create window but dont declare it.

    You have to link to user32 this maybe your problem as well.

    Hope this helps.
  10. Re: Window Creation Failure (Can't seem to find the problem)

    You use HWND_MESSAGE in create window but dont declare it.

    You have to link to user32 this maybe your problem as well.

    Hope this helps.
  11. Thread: GUI in C++

    by Snoopy07
    Replies
    9
    Views
    9,422

    Re: GUI in C++

    const char g_szClassName[] = "myWindowClass";

    I think the problem is here
    try changing it to
    char g_szClassName[] = TEXT("myWindowClass");
  12. Thread: Edit box

    by Snoopy07
    Replies
    3
    Views
    901

    Re: Edit box

    Use n= atof (MyText);

    to convert MyText into an integer

    n=n+10;

    then
    sprintf (MyText, "%.2f", n);

    or whatever format you like
  13. Re: The Procedure entry point _mall-c_dbg could not be located in the DLL MSVCR71.dll

    Hi
    msvcr71.dll is a process belonging to the Microsoft C Runtime Library program . msvcr71.dll is a module containing standard C library functions such as printf, memcpy, and cos. It is a part of...
  14. Replies
    4
    Views
    2,193

    Re: Printing in C++ Win32

    Thanks for the reply that has sorted my little problem out.

    Sorry for not using code tags but I am a newbie to the site.

    If you dont mind telling me how do i use code tags ?

    Also I cant...
  15. Replies
    4
    Views
    2,193

    Printing in C++ Win32

    Hi,

    I was wondering if anyone can help me with a Printing problem I am having its Win32 program using GNU gcc compiler and the codeblocks IDE.

    I am using TextOut to the printer to try to print...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured