'****************************************************************************
'* Copyright (C) 2004 Peter Mortensen and Matthias Mann *
'* This file is part of MSQuant. *
'* *
'* MSQuant is distributed under the terms of *
'* the GNU General Public License. See src/COPYING.TXT or *
'* <http://www.gnu.org/licenses/gpl.txt> for details. *
'* *
'* MSQuant is free software; you can redistribute it *
'* and/or modify it under the terms of the GNU *
'* General Public License as published by the Free *
'* Software Foundation; either version 2 of the *
'* License, or (at your option) any later version. *
'* *
'* MSQuant is distributed in the hope that it will be *
'* useful, but WITHOUT ANY WARRANTY; without even the *
'* implied warranty of MERCHANTABILITY or FITNESS FOR *
'* A PARTICULAR PURPOSE. See the GNU General Public *
'* License for more details. *
'* *
'* You should have received a copy of the GNU General *
'* Public License along with MSQuant; if not, write to *
'* the Free Software Foundation, Inc., 59 Temple *
'* Place, Suite 330, Boston, MA 02111-1307 USA *
'* *
'* Purpose: Holds Class frmEndOfParse, see below for documentation. *
'* *
'****************************************************************************
'****************************************************************************
'* CEBI *
'* Software Development Group *
'* Peter Mortensen *
'* E-mail: NUKESPAMMERSdrmortensen@get2netZZZZZZ.dk *
'* WWW: http://www.cebi.sdu.dk/ *
'* *
'* Program for post-processing of result from search in mass *
'* spectrometric data. *
'* *
'* FILENAME: frmEndOfParse.vb *
'* TYPE: VISUAL_BASIC *
'* *
'* CREATED: PM 2006-08-15 Vrs 1.0. *
'* UPDATED: PM 2006-xx-xx *
'* *
'****************************************************************************
'Future:
' 1.
Option Strict On
Option Explicit On
Imports System.Windows.Forms
Public Class frmEndOfParse
Private mParentForm As frmProteinList
'****************************************************************************
'* <placeholder for header> *
'****************************************************************************
Public Sub New(ByRef anInParentForm As frmProteinList)
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
mParentForm = anInParentForm
End Sub
'****************************************************************************
'* <placeholder for header> *
'****************************************************************************
Private Sub OK_Button_Click( _
ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles OK_Button.Click
Me.DialogResult = System.Windows.Forms.DialogResult.OK
mParentForm.endOfParseDialogResult(chkDoNotShowDialogAgain.Checked)
Me.Close()
End Sub 'OK_Button_Click
End Class 'frmEndOfParse
Generated by script codePublish.pl at 2008-09-23T11:59:18.