如题

解决方案 »

  1.   

    应该可以直接使用dll中的方法调用就可以把
    具体没有用过,up一下
      

  2.   

    资源的ID已经知道,连接成功后,怎样将资源读出,比如知道了字符串ID为IDS_STR怎样才能读出里面的字符串?
      

  3.   

    The LoadString function loads a string resource from the executable file associated with a specified module, copies the string into a buffer, and appends a terminating null character. int LoadString(
      HINSTANCE hInstance,  // handle to module containing string resource
      UINT uID,             // resource identifier
      LPTSTR lpBuffer,      // pointer to buffer for resource
      int nBufferMax        // size of buffer
    );
      

  4.   

    恩,loadString 应该可以了吧可以使用GetWindowLong得到 HINSTANCE
      

  5.   

    hkbarton:
       我是新手,用loadlibrary调用动态链接库,然后在要怎么作就不知道了。请详细写写!!!!
      

  6.   

    loadString 的参数应该咋写?
      

  7.   

    function 函数名:integer ; cdecl ; external '***.dll';
      

  8.   

    function functionName:string(type);stdcall;external'***.dll';
    然后直接掉dll里的函数就可以了。