I've finally gotten around to doing this simple little update. Here is the
unified difference:
Index: C:/Program Files/TortoiseSVN/Diff-Scripts/diff-xls.vbs
===================================================================
--- C:/Program Files/TortoiseSVN/Diff-Scripts/diff-xls.vbs (revision 19)
+++ C:/Program Files/TortoiseSVN/Diff-Scripts/diff-xls.vbs (revision 21)
@@ -38,10 +38,8 @@
'Create a compare side by side view
objExcelApp.Windows.CompareSideBySideWith(objExcelApp.Windows(2).Caption)
If Err.Number <> 0 Then
- objExcelApp.DisplayAlerts = False
- objExcelApp.Quit()
- Wscript.Echo "You must have Excel 2003 or later installed to use compare
side-by-side feature."
- Wscript.Quit 1
+ objExcelApp.Application.WindowState = xlMaximized
+ objExcelApp.Windows.Arrange(-4128)
End If
'Mark differences in sNewDoc red
Here is the script again in it's current state and entirety:
<BEGIN SCRIPT>
dim objExcelApp, objArgs, objScript, objBaseDoc, objNewDoc
Set objArgs = WScript.Arguments
num = objArgs.Count
if num < 2 then
MsgBox "Usage: [CScript | WScript] compare.vbs base.doc new.doc",
vbExclamation, "Invalid arguments"
WScript.Quit 1
end if
sBaseDoc = objArgs(0)
sNewDoc = objArgs(1)
Set objScript = CreateObject("Scripting.FileSystemObject")
If objScript.FileExists(sBaseDoc) = False Then
MsgBox "File " + sBaseDoc +" does not exist. Cannot compare the
documents.", vbExclamation, "File not found"
Wscript.Quit 1
End If
If objScript.FileExists(sNewDoc) = False Then
MsgBox "File " + sNewDoc +" does not exist. Cannot compare the
documents.", vbExclamation, "File not found"
Wscript.Quit 1
End If
Set objScript = Nothing
On Error Resume Next
Set objExcelApp = Wscript.CreateObject("Excel.Application")
If Err.Number <> 0 Then
Wscript.Echo "You must have Excel installed to perform this operation."
Wscript.Quit 1
End If
'Open base excel sheet
objExcelApp.Workbooks.Open sBaseDoc
'Open new excel sheet
objExcelApp.Workbooks.Open sNewDoc
'Show Excel window
objExcelApp.Visible = True
'Create a compare side by side view
objExcelApp.Windows.CompareSideBySideWith(objExcelApp.Windows(2).Caption)
If Err.Number <> 0 Then
objExcelApp.Application.WindowState = xlMaximized
objExcelApp.Windows.Arrange(-4128)
End If
'Mark differences in sNewDoc red
objExcelApp.Workbooks(2).Sheets(1).Cells.FormatConditions.Delete
objExcelApp.Workbooks(1).Sheets(1).Copy
,objExcelApp.Workbooks(2).Sheets(objExcelApp.Workbooks(2).Sheets.Count)
objExcelApp.Workbooks(2).Sheets(objExcelApp.Workbooks(2).Sheets.Count).Name
= "Dummy_for_Comparison"
objExcelApp.Workbooks(2).Sheets(1).Activate
'To create a local formula the cell A1 is used
original_content = objExcelApp.Workbooks(2).Sheets(1).Cells(1,1).Formula
String sFormula
objExcelApp.Workbooks(2).Sheets(1).Cells(1,1).Formula =
"=INDIRECT(""Dummy_for_Comparison" & "!""&ADDRESS(ROW(),COLUMN()))"
sFormula = objExcelApp.Workbooks(2).Sheets(1).Cells(1,1).FormulaLocal
objExcelApp.Workbooks(2).Sheets(1).Cells(1,1).Formula = original_content
'with the local formula the conditional formatting is used to mark the cells
that are different
const xlCellValue = 1
const xlNotEqual = 4
objExcelApp.Workbooks(2).Sheets(1).Cells.FormatConditions.Add xlCellValue,
xlNotEqual, sFormula
objExcelApp.Workbooks(2).Sheets(1).Cells.FormatConditions(1).Interior.ColorIndex
= 3
<END SCRIPT>
Jared Silva wrote:
>
> Stefan Küng wrote:
>> kippspan wrote:
>>
>> > I've updated the script to work with Excel pre-2003 (see below). This
>> is
>> > similar to side-by-side comparison as it will horizontally tile two
>> > workbooks. It is not the quite same because you have to scroll in both
>> > workbooks.
>>
>> Great, thanks!
>> But could you add a check in the script for the Excel-Version and then
>> do the corresponding actions based on that version info? It's because we
>> only have one diff script per file extension.
>
> Kipp, here is an example of what Stefan is looking for (diff-doc.js)...
>
> http://tortoisesvn.tigris.org/source/browse/tortoisesvn/trunk/contrib/other/diff-scripts/diff-doc.js?rev=8957&r1=8418&r2=8543
>
> + // Microsoft Office versions for Microsoft Windows OS
> + var vOffice2000 = 9;
> + var vOffice2002 = 10;
> + var vOffice2003 = 11;
> + var vOffice2007 = 12;
>
> // Compare to the base document
> + if (Number(word.Version) <= vOffice2000)
> + {
> + // Compare for Office 2000 and earlier
> + destination.Compare(sBaseDoc);
> + }
> + else
> + {
> + // Compare for Office XP (2002) and later
> destination.Compare(sBaseDoc, "", wdCompareTargetNew, true, true);
> + }
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
> For additional commands, e-mail: users-help@tortoisesvn.tigris.org
>
>
>
--
View this message in context: http://www.nabble.com/Excel-diff-script-%28extended-version%29-tf3647535.html#a11701087
Sent from the tortoisesvn - users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: users-help@tortoisesvn.tigris.org
Received on Fri Jul 20 04:00:56 2007