nlgma Posted October 30, 2008 Posted October 30, 2008 I need to know how to make a not visible excel file visible after the file has already been opened using $oExcel = _ExcelBookOpen($Excel,0) NOT VISIBLE ? Syntax.........: $oExcel = _ExcelBookOpen($sFilePath, $fVisible = 1, $fReadOnly = False, $sPassword = "", $sWritePassword = "") Parameters ....: $sFilePath - Path and filename of the file to be opened $fVisible - Flag, whether to show or hide the workbook (0=not visible, 1=visible) (default=1) $fReadOnly - Flag, whether to open the workbook as read-only (True or False) (default=False) $sPassword - The password that was used to read-protect the workbook, if any (default is none) $sWritePassword - The password that was used to write-protect the workbook, if any (default is none)
Achilles Posted October 30, 2008 Posted October 30, 2008 Do you mean something like FileSetAtrrib? Look at it in the helpfile, I'm not exactly sure if that's what you're talking about. My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
nlgma Posted October 30, 2008 Author Posted October 30, 2008 (edited) Do you mean something like FileSetAtrrib? Look at it in the helpfile, I'm not exactly sure if that's what you're talking about.FileSetAttrib - Sets the attributes of one or more files. I just need to make a not visible window visible. I can see the process running, just can't see the window. Edited October 30, 2008 by nlgma
nlgma Posted October 30, 2008 Author Posted October 30, 2008 Blow is an idea of what I'm trying to do. expandcollapse popup#include <GuiButton.au3> #include <GUIConstants.au3> #include <Excel.au3> $Test = GUICreate("Show / Hide", 305, 115, 320, 300) $Button0 = GUICtrlCreateButton("Open", 25, 70, 130, 30) $Button1 = GUICtrlCreateButton("Show", 155, 70, 130, 30) $Button2 = GUICtrlCreateButton("Hide", 155, 70, 130, 30) GUICtrlSetState($Button2 , $gui_Hide) $Input1 = GUICtrlCreateInput("", 25, 40, 210, 20) $Button3 = GUICtrlCreateButton("", 240, 25, 30,30, $BS_ICON) _GUICtrlButton_SetImage($Button3, "shell32.dll", 55, True) $Label1 = GUICtrlCreateLabel("Enter in the path to your excel file.", 25, 15, 215, 20) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button3 $var = FileOpenDialog("Choose a file.",@ScriptDir&"", "Excel (*.csv)|ALL (*.*)") GUICtrlSetData($Input1,$var) Case $Button0 $oExcel = _ExcelBookOpen(GUICtrlRead($Input1),0); 0 = NOT Visible | 1 = Visible Case $Button1 ;I need it to show the Excel window. GUICtrlSetState($Button1 , $gui_Hide) GUICtrlSetState($Button2 , $gui_Show) Case $Button2 ;I need it to hide the Excel window. GUICtrlSetState($Button1 , $gui_Show) GUICtrlSetState($Button2 , $gui_Hide) EndSwitch WEnd
PsaltyDS Posted October 30, 2008 Posted October 30, 2008 I think all you really want is: $oExcel.Visible = 1; Visible $oExcel.Visible = 0; Not visible Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
nlgma Posted October 30, 2008 Author Posted October 30, 2008 I think all you really want is: $oExcel.Visible = 1; Visible $oExcel.Visible = 0; Not visible Thank you ... thank you ... thank you
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now