Does IVssItem.IsDifferent work for you?
http://msdn2.microsoft.com/en-us/library/microsoft.visualstudio.sourcesafe.inter
op.ivssitem.isdifferent(VS.80).aspx
You have to get a VSSItem for the item in the VSS database, and call
IsDifferent to compare it against the local version.
If you want to display a visual diff of the files, "ssexp /diff" might be
what you're looking for
http://msdn2.microsoft.com/en-us/library/ms181130(VS.80).aspx
You have to use first IVssItem.Get to get a local copy C:\temp\file.tmp of
the item from the VSS project $/VssProject/File.txt, then run ssexp in diff
mode.
E.g: ssexp /diff C:\temp\file.tmp C:\MyProject\File.txt
$/VssProject/File.txt

Signature
Alin Constantin
This posting is provided "AS IS" with no warranties, and confers no rights.
> Hi all,
>
[quoted text clipped - 5 lines]
>
> Thomas Bodell
Thomas Bodell - 30 Mar 2006 09:47 GMT
Thank you the tip with using ssexp was just what I was looking for.
Thomas Bodell
> Does IVssItem.IsDifferent work for you?
> http://msdn2.microsoft.com/en-us/library/microsoft.visualstudio.sourcesafe.inter
op.ivssitem.isdifferent(VS.80).aspx
[quoted text clipped - 19 lines]
>>
>> Thomas Bodell