Jump to content

Closing individual tab


allSystemsGo
 Share

Recommended Posts

I have been working on a log viewer for a bit, and with help from the great people on this forum have got the basic GUI down. Now, I need to be able to close single instances of a tab. I created a "Close Tab" button to perform this action...but I have tried the GuiCtrlTab_DeleteItem function and GuiCtrlTab_Destroy function neither have the desired affect...please help.

Here is my code.

#include <GUIConstantsEx.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <GuiEdit.au3>#include <GuiTab.au3> 

; Global variables should be declared OUTSIDE functions
Global $aTabData[1][3] = [[0]] ; 0=tab 1=file 2=edit

mainGUI()

Func mainGUI()

; Create the GUI
GUICreate("Log Viewer", 800, 700)
GUISetBkColor(0x00E0FFFF)
GUISetFont(9, 300)

$cTab = GUICtrlCreateTab(10, 10, 780, 640)
$Fing = GUICtrlCreateButton("Fing", 20, 670, 100, 20)
$Find = GUICtrlCreateButton("Find", 200, 670, 100, 20)
$new = GUICtrlCreateButton("Open", 550, 670, 100, 20)
$close= GUICtrlCreateButton("Close Tab", 700,670,100,20)

; Read a file before showing the GUI so that the tab and edit are create before we show the GUI
openNew()

; Now show the GUI
GUISetState(@SW_SHOW)

; Note there is only the one GUIGetMsg loop in the script
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
ExitLoop
Case $Fing
Run(@ComSpec & " /c " & "C:\fing.lnk")
Case $Find
; Which tab is displayed
$iIndex = GUICtrlRead($cTab) + 1
; So now we know which edit is displayed
_GUICtrlEdit_Find($aTabData[$iIndex][2])
Case $new
openNew() ; Every time we want a new tab we call the function again
Case $close
$iIndex=GUICtrlRead($cTab) + 1
_GUICtrlTab_DeleteItem($cTab,$iIndex)
EndSwitch
WEnd
EndFunc ;==>mainGUI

Func openNew()

; Choose a file
Local $var = FileOpenDialog("", @WindowsDir & "\", "Log Files (*.txt;*.log)", 1)
; Open it
Local $file = FileOpen($var)
If $file = -1 Then
MsgBox(0, "Error", "Unable to open file.")
Exit
EndIf
; Read it
$textx = FileRead($file)
If @error Then ; If you check for error it must be IMEDIATELY AFTER the function you check
MsgBox(4096, "", "No File(s) chosen")
Else
$var = StringReplace($var, "|", @CRLF)
MsgBox(4096, "", "You Chose " & $var)
; Create the tab and edit for this file ONLY if it was read
$aTabData[0][0] += 1
ReDim $aTabData[$aTabData[0][0] + 1][3]
$aTabData[$aTabData[0][0]][0] = GUICtrlCreateTabItem($var)
$aTabData[$aTabData[0][0]][1] = $var
; Sorry, you do need the NOHIDESEL style to see the found text
$aTabData[$aTabData[0][0]][2] = GUICtrlCreateEdit($textx, 20, 40, 760, 600, BitOR($GUI_SS_DEFAULT_EDIT, $ES_NOHIDESEL))
ConsoleWrite("Edit: " & $aTabData[$aTabData[0][0]][2] & @CRLF)
GUICtrlCreateTabItem("")
EndIf
; Close file
FileClose($file)

EndFunc ;==>openNew
Link to comment
Share on other sites

It works for me if you don't use + 1 in the second line.

Case $close
    $iIndex = GUICtrlRead($cTab)

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

You close the file right after you read it in, so how is it still open?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...