Hi

I am trying to open workbook @ network path using following code.

Excel.Application objexcel;

objexcel.Visible = false;
objexcel.DisplayAlerts = false;
objexcel.ScreenUpdating = false;

wbexcel = objexcel.Workbooks.Open(file1);

while opening using above code, am getting downloading message with file path.

I want to avoid that downloading message display, can anyone help me