I made a button open an excel file, but my problem is when it opens the excel program it opens maximized but the spreadsheet file opens as a smaller window in excel. Is there a way I can tell it to open to the max size? When the file gets open by double clicking it it opens maximized like I want so it appears to only be when opening it through my database that it doesnt. I've linked it by using the code below:
dim ctl as CommandButton
set ctl = Me!Button1
with ctl
.hyperlinkaddress = "C:\Desktop\ExcelFile.xlsx"
.hyperlink.follow
end with
dim ctl as CommandButton
set ctl = Me!Button1
with ctl
.hyperlinkaddress = "C:\Desktop\ExcelFile.xlsx"
.hyperlink.follow
end with