Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Iverson3

    UpnpNAT API

    sorry, it's the Microsoft's Net Traversal API,to be more precise.
  2. Iverson3

    UpnpNAT API

    HI, I have recently been trying to compile a code using UpnpNAT API for NAT Traversal application. My IDE is VC++ 6.0, MS PSDK (for sever 2003 sp1) on Windows XP. For some reasons, I can't compile the code. I always get the following error msg: uuid.lib(oaidl_i.obj) : fatal error...
  3. Iverson3

    Compilation error

    HI, I recently tried to compile a project, which links to another project. If I build these two projects independently, there is no problem at all. However, if I tried to build them together: namely, linking one to the other. Then I got the following compilation error: (Here is just a...
  4. Iverson3

    Link a dll to a lib

    Hi PerFnurt, Thanks for the reply. However, I just would like to clarify the following pts. Problem: In the lib project, I need to create object of classes, which are declared in another dll file. so i guess a possible solution might be follow: 1. I include all the necessary header files...
  5. Iverson3

    Link a dll to a lib

    HI, My question is just what's the steps need to be taken to link a dll file to a lib file for compliation. I can find some instructions on the web for linking a dll to an exe, but not for a dll to a lib file. Can anyone help on this? Thanks
  6. Iverson3

    Rearrange Mysql Columns

    Hi, Thanks for the solution provided, it's exactly what i m after
  7. Iverson3

    Rearrange Mysql Columns

    Hi all, I recently created a table with mysql. To simplify the matter, let's say the table has 3 fields: Name, Sex, Age. Now, I would like to drop Sex and add one more new column named Location. By default, the new Table should have the following column order: Name, Age, Location. Is there...
  8. Iverson3

    Passing parameter to dll in VC++

    sorry, you were actually right. I just found that I still had line of List = " " ; embedded somewhere down in the code, which triggered the problem, once this line is removed, everything just worked perfectly. thanks
  9. Iverson3

    Passing parameter to dll in VC++

    i see, thanks for all the help =) Note: case 1 was stringstream, sorry for the typo However, I did try to use Strcpy function in both cases to store the values in C character array. but I get runtime memory problem with the method suggested. I believe it's the same problem with case 1, though...
  10. Iverson3

    Passing parameter to dll in VC++

    HI, I encountered a problem while I try to pass a char* object to a class method wrapped in a dll in VC++. In the exe file, I have the following line char List[255] = "hi"; vv Connection; // object declaration //calling the function Connection.UpdateList(char* ID, char*List); ccout << List...

Part and Inventory Search

Back
Top