// JP opened flex table

Click to See Complete Forum and Search --> : Visual C ++ 6.0 and LINK warning


Djibril
December 6th, 2000, 06:12 PM
Hello,
Since I started using Visual C++ 6.0, all of my projects that used to compile and link without neither error nor warning with version 5.0 start giving the following warning.

LINK : warning LNK4075: ignoring /EDITANDCONTINUE due to /INCREMENTAL:NO specification

Do u have any idea how to get rid of this?

Thanks.

--
Where there is a WISH, there is a WILL.

nikb
December 7th, 2000, 01:05 PM
Hello,

First of all, I wish to point out that this is a "harmless" warning. It does not mean your executable will not run, or is in some way corrupted. It explains that the new "Edit and Continue" feature of Visual C++ 6.0, which in some cases allows you to edit code while the program is being executed could not be used, because you have not enabled incremental linking.

You can stop the message from reappearing by following these steps:

For each project that is displaying that error message:

- Open the project in Visual C++
- Go to the "Project" menu
- Select "Settings"
- Click on the "Link" tab
- Make sure the button "Link incrementally" is checked

That should fix the problem. Note that you may need to repeat the above procedure for more that one configurations of your project.

I hope this helped,

-n

Djibril
December 7th, 2000, 01:28 PM
Thanks.

--
Where there is a WISH, there is a WILL.

//JP added flex table