User Profile

Collapse

Profile Sidebar

Collapse
vincentt
vincentt
Last Activity: Jul 19 '07, 09:33 AM
Joined: Jul 16 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • vincentt
    replied to Remove MSVCR80D.dll Dependency in VC++.NET
    in .NET
    I did realize one more thing, that when compiling, I get messages like sprintf() and fopen() are now deprecated. Where can I find the function dependency list of MSVCR80D.dll so that if I see a list of functions, I probably could hunt thru the source code to see if any references are being made to the library.

    Secondly I also tried to remove some .lib references in the Project, Properties, Linker, Input - section. But even after that,...
    See more | Go to post

    Leave a comment:


  • vincentt
    replied to fgets() vs fread()
    in C
    HI Vasu,

    Generally fgets() is used to read from text files and fputs() to write to a text file. Fread() and fwrite() are usually associated with binary files or files where you have kind of structured records to be written. You need to give the size of the record etc to read. fread() also does not bother about carriage return when reading thru files, as it can read thru n-length files as well without Carriage return.

    ...
    See more | Go to post

    Leave a comment:


  • vincentt
    replied to check content of char array
    in C
    Checking it character by character is not necessary when you already have a function like strstr() to do the job of searching a string in an array.

    However if you need to do it character by character, you can try it this way, you could try it this way ... this is the longer version, you could use loop within a loop...

    i = 0
    while (str[i]!= '\0')
    {
    if (str[i] == '.')
    {
    //asuming...
    See more | Go to post

    Leave a comment:


  • vincentt
    started a topic Remove MSVCR80D.dll Dependency in VC++.NET
    in .NET

    Remove MSVCR80D.dll Dependency in VC++.NET

    Hi,
    We code DLL's and so far it was done using VS6.0. We are planning to migrate the VS.NET 2005 and use the VS6 VC++ code which generated the DLL to VS 2005 VC++.NET.

    However we donot plan to use any of .NET features as of now. I just need the C++ code to compile and generate me the .dll file. When I tried porting it to VC++.NET, the project file was converted and an adding the dependency include / bin folders, the project...
    See more | Go to post
No activity results to display
Show More
Working...