Thanks as soon as you posted this worked for me.
With ofdExcel
.Title = "Please Choose File"
.Filter = "Excel files (*.xls)|*.xls|All files (*.*)|*.*"
.FilterIndex = 1
End With
Thanks it worked well
'Excel App
Dim excelApp As New Excel.Application
' you dont want to see it
excelApp.Visible = False
'Open File
original = excelApp.Workbooks.Open(FileName)
WorksheetName = CStr(excelApp.ActiveWorkbook.Sheets(1).Name())
'close the workbook
'The entire excel app should...
I have an application that loads a dataset from an Excel document. For the dataadpater I use
Dim odaExcel As New OleDbDataAdapter("SELECT * FROM [Sheet1$]", conn)
I would like to get the actual value of Sheet1 before I pull the dataset. Is their a way to get the value by opening the...
Whenever I print a document from acrobat it prints with a gray background, however when I print the same document from any other computer it prints fine. I have the same version of Acrobat. Any suggestions on how to lose the greay background?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.