View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Priyanka Choudhari Priyanka Choudhari is offline
external usenet poster
 
Posts: 1
Default how to diaplay compare merge dialog box

Hello,

I had hooked "Compare Merge workbook" button in Addin When button pressed
event occurs and control get pass to following function.


Private Shared Sub cmdComparMerge_Click(ByVal Ctrl As
Microsoft.Office.Core.CommandBarButton, ByRef CancelDefault As Boolean)
Handles cmdComparMerge.Click
Try
CancelDefault = True


Application.Dialogs(XlBuiltInDialog.xlDialogScenar ioMerge).Show(Arg1:=Application.ActiveWorkbook)
Catch ex as Exception
MessageBox.Show(ex.Message)
End Try
End Sub

but I am not able to display the Merge dialog box. Instead exception get
thrown as "Show method of Dialogs class Failed".

Could anybody tell me how to display a Compare Merge dialog box?

I am able to do this in Word addin. This is needed because I wanted to know
which document is going to be compared and does not allow user to compare
certain documents.

thanks,
Priyanka Choudhari.