CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: VB & C DLL

  1. #1
    Guest

    VB & C DLL

    I have a C DLL. I want to access functions in it through VB. I did everything according to MSDN docs.
    I am getting an error "Run-time error '28': Out of stack space". I have tried to increase the stack size through EDITBIN program,
    but still I am getting same error.
    Any help in solving this problem is appreciated.

    Thanks in advance.


  2. #2
    Guest

    Re: VB & C DLL

    If there is String parameter, you need to allocate the space for it, otherwise it reads endlessly. Look MSDN regarding using API with parameters.
    Vlad


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured