Wrote this little diddy to convert an Excel 2003 file to Excel 2010 file. ‘ http://technet.microsoft.com/en-us/library/ff198017.aspx Const xlExcel12 = 50 Set oExcel = CreateObject(“Excel.Application”) ‘ Set below value to false to hide the Excel window oExcel.Visible = True ‘ Convert Set oWorkbook = oExcel.Workbooks.Open(“C:\filename.xls”) Set oWorksheet = oWorkbook.Worksheets(1) oWorkbook.SaveAs “C:\filename.xlsb”, xlExcel12 ‘ End oExcel.quit (oWorkbook.Close) [...]![]()

Gary Blok: Does it matter which option you do first? Say I want to setup the MBA...
Dwayne Allen: I ran into the same issue with $Form.TopMost = $True not applying when...
roncrumbaker: Great link! Lots of information out there...and yes, there are many v...
Geoff Buckingham: Been trying to get some work done on mine for a long time ... without ...
Clint Huffman: Page file sizing depends on the crash dump setting of the system as we...