You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ITSM/.svn/pristine/b5/b5fb1934e51499fe595bddfcdcc...

130 lines
11 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML xmlns:MSHelp="http://msdn.microsoft.com/mshelp" DIR="LTR"><HEAD>
<meta name="GENERATOR" content="VBdocman .NET - documentation generator; http://www.vbdocman.com">
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=UTF-8">
<TITLE>frmMsgBox.InitializeComponent -Methode</TITLE>
<xml>
<MSHelp:TOCTitle Title="frmMsgBox.InitializeComponent -Methode"/>
<MSHelp:RLTitle Title="frmMsgBox.InitializeComponent -Methode"/>
<MSHelp:Keyword Index="A" Term="topic_0000000000000DB9"/>
<MSHelp:Keyword Index="K" Term="frmMsgBox.InitializeComponent -Methode"/>
<MSHelp:Keyword Index="K" Term="Vertragsverwaltung.frmMsgBox.InitializeComponent -Methode"/>
<MSHelp:Keyword Index="F" Term="Vertragsverwaltung.frmMsgBox.InitializeComponent"/>
<MSHelp:Keyword Index="F" Term="frmMsgBox.InitializeComponent"/>
<MSHelp:Keyword Index="F" Term="Vertragsverwaltung.frmMsgBox.frmMsgBox.InitializeComponent"/>
<MSHelp:Attr Name="DevLang" Value="VB"/>
<MSHelp:Attr Name="DevLangVers" Value="kbLangVB"/>
<MSHelp:Attr Name="DocSet" Value="Visual Basic"/>
<MSHelp:Attr Name="DocSet" Value="Visual Studio"/>
<MSHelp:Attr Name="DocSet" Value="VSM"/>
<MSHelp:Attr Name="Product" Value="VB"/>
<MSHelp:Attr Name="ProductVers" Value="kbVBp700"/>
<MSHelp:Attr Name="Product" Value="VSA"/>
<MSHelp:Attr Name="ProductVers" Value="kbVSA"/>
<MSHelp:Attr Name="Technology" Value="ManagedCode"/>
<MSHelp:Attr Name="TechnologyVers" Value="kbManagedCode"/>
<MSHelp:Attr Name="TopicType" Value="kbSyntax"/>
<MSHelp:Attr Name="TargetOS" Value="Windows"/>
<MSHelp:Attr Name="Locale" Value="kbEnglish"/>
</xml>
<META name="rtfFileName" content="">
<META NAME="save" CONTENT="history">
<!--CSS_START-->
<SCRIPT SRC="MSHelp/scripts/dtuelink.js"></SCRIPT>
<!--CSS_END-->
<SCRIPT language="JavaScript">
function indent(level) {
for (i=1; i<=level; i++) {
document.write("&nbsp;&nbsp;&nbsp;");
}
}
</SCRIPT>
</HEAD>
<body topmargin=0 id="bodyID" class = "dtBODY"><!--NONSCROLLING BANNER START-->
<div id="nsbanner">
<div id="bannerrow1">
<TABLE CLASS="bannerparthead" CELLSPACING=0>
<TR ID="hdr">
<TD CLASS="runninghead" nowrap>Vertragsverwaltung-Klassenbibliothek</TD>
<TD CLASS="product" nowrap>&nbsp;</TD>
</TR>
</TABLE>
</div>
<div id="TitleRow">
<H1 class="dtH1"><A NAME="topic_0000000000000DB9"></A>frmMsgBox.InitializeComponent -Methode</H1>
</div></div>
<!--NONSCROLLING BANNER END-->
<DIV id="nstext" valign="bottom"><!---->
<PRE class="syntax"><SPAN class="lang">[Visual&nbsp;Basic]
</SPAN><B>&lt;System.Diagnostics.DebuggerStepThrough()&gt; _&nbsp;<br>Private Sub InitializeComponent()</B></PRE>
<H4 class="dtH4">Quellcode</H4>
<pre class="code"><SPAN class="lang">[Visual&nbsp;Basic]</SPAN>
Private Sub InitializeComponent()&nbsp;<br> Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmMsgBox))&nbsp;<br> Me.btnYes = New System.Windows.Forms.Button&nbsp;<br> Me.btnno = New System.Windows.Forms.Button&nbsp;<br> Me.btnAbbruch = New System.Windows.Forms.Button&nbsp;<br> Me.txtmsg = New System.Windows.Forms.TextBox&nbsp;<br> Me.btnOK = New System.Windows.Forms.Button&nbsp;<br> Me.Panel1 = New System.Windows.Forms.Panel&nbsp;<br> Me.imgQuestion = New System.Windows.Forms.PictureBox&nbsp;<br> Me.imgInformation = New System.Windows.Forms.PictureBox&nbsp;<br> Me.imgExclamation = New System.Windows.Forms.PictureBox&nbsp;<br> Me.imgCritical = New System.Windows.Forms.PictureBox&nbsp;<br> Me.Panel1.SuspendLayout()&nbsp;<br> CType(Me.imgQuestion, System.ComponentModel.ISupportInitialize).BeginInit()&nbsp;<br> CType(Me.imgInformation, System.ComponentModel.ISupportInitialize).BeginInit()&nbsp;<br> CType(Me.imgExclamation, System.ComponentModel.ISupportInitialize).BeginInit()&nbsp;<br> CType(Me.imgCritical, System.ComponentModel.ISupportInitialize).BeginInit()&nbsp;<br> Me.SuspendLayout()&nbsp;<br> '&nbsp;<br> 'btnYes&nbsp;<br> '&nbsp;<br> Me.btnYes.Location = New System.Drawing.Point(71, 84)&nbsp;<br> Me.btnYes.Name = &quot;btnYes&quot;&nbsp;<br> Me.btnYes.Size = New System.Drawing.Size(75, 23)&nbsp;<br> Me.btnYes.TabIndex = 0&nbsp;<br> Me.btnYes.Text = &quot;&amp;Ja&quot;&nbsp;<br> Me.btnYes.UseVisualStyleBackColor = True&nbsp;<br> '&nbsp;<br> 'btnno&nbsp;<br> '&nbsp;<br> Me.btnno.Location = New System.Drawing.Point(162, 84)&nbsp;<br> Me.btnno.Name = &quot;btnno&quot;&nbsp;<br> Me.btnno.Size = New System.Drawing.Size(75, 23)&nbsp;<br> Me.btnno.TabIndex = 1&nbsp;<br> Me.btnno.Text = &quot;&amp;Nein&quot;&nbsp;<br> Me.btnno.UseVisualStyleBackColor = True&nbsp;<br> '&nbsp;<br> 'btnAbbruch&nbsp;<br> '&nbsp;<br> Me.btnAbbruch.Location = New System.Drawing.Point(254, 84)&nbsp;<br> Me.btnAbbruch.Name = &quot;btnAbbruch&quot;&nbsp;<br> Me.btnAbbruch.Size = New System.Drawing.Size(75, 23)&nbsp;<br> Me.btnAbbruch.TabIndex = 2&nbsp;<br> Me.btnAbbruch.Text = &quot;&amp;Abbrechen&quot;&nbsp;<br> Me.btnAbbruch.UseVisualStyleBackColor = True&nbsp;<br> '&nbsp;<br> 'txtmsg&nbsp;<br> '&nbsp;<br> Me.txtmsg.BackColor = System.Drawing.Color.White&nbsp;<br> Me.txtmsg.BorderStyle = System.Windows.Forms.BorderStyle.None&nbsp;<br> Me.txtmsg.Location = New System.Drawing.Point(67, 20)&nbsp;<br> Me.txtmsg.Multiline = True&nbsp;<br> Me.txtmsg.Name = &quot;txtmsg&quot;&nbsp;<br> Me.txtmsg.ReadOnly = True&nbsp;<br> Me.txtmsg.Size = New System.Drawing.Size(258, 44)&nbsp;<br> Me.txtmsg.TabIndex = 3&nbsp;<br> Me.txtmsg.TabStop = False&nbsp;<br> '&nbsp;<br> 'btnOK&nbsp;<br> '&nbsp;<br> Me.btnOK.Location = New System.Drawing.Point(133, 84)&nbsp;<br> Me.btnOK.Name = &quot;btnOK&quot;&nbsp;<br> Me.btnOK.Size = New System.Drawing.Size(75, 23)&nbsp;<br> Me.btnOK.TabIndex = 5&nbsp;<br> Me.btnOK.Text = &quot;&amp;OK&quot;&nbsp;<br> Me.btnOK.UseVisualStyleBackColor = True&nbsp;<br> '&nbsp;<br> 'Panel1&nbsp;<br> '&nbsp;<br> Me.Panel1.BackColor = System.Drawing.Color.White&nbsp;<br> Me.Panel1.Controls.Add(Me.imgQuestion)&nbsp;<br> Me.Panel1.Controls.Add(Me.imgInformation)&nbsp;<br> Me.Panel1.Controls.Add(Me.imgExclamation)&nbsp;<br> Me.Panel1.Controls.Add(Me.txtmsg)&nbsp;<br> Me.Panel1.Controls.Add(Me.imgCritical)&nbsp;<br> Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top&nbsp;<br> Me.Panel1.Location = New System.Drawing.Point(0, 0)&nbsp;<br> Me.Panel1.Name = &quot;Panel1&quot;&nbsp;<br> Me.Panel1.Size = New System.Drawing.Size(337, 78)&nbsp;<br> Me.Panel1.TabIndex = 6&nbsp;<br> '&nbsp;<br> 'imgQuestion&nbsp;<br> '&nbsp;<br> Me.imgQuestion.Image = CType(resources.GetObject(&quot;imgQuestion.Image&quot;), System.Drawing.Image)&nbsp;<br> Me.imgQuestion.InitialImage = CType(resources.GetObject(&quot;imgQuestion.InitialImage&quot;), System.Drawing.Image)&nbsp;<br> Me.imgQuestion.Location = New System.Drawing.Point(12, 20)&nbsp;<br> Me.imgQuestion.Name = &quot;imgQuestion&quot;&nbsp;<br> Me.imgQuestion.Size = New System.Drawing.Size(39, 36)&nbsp;<br> Me.imgQuestion.TabIndex = 7&nbsp;<br> Me.imgQuestion.TabStop = False&nbsp;<br> '&nbsp;<br> 'imgInformation&nbsp;<br> '&nbsp;<br> Me.imgInformation.Image = CType(resources.GetObject(&quot;imgInformation.Image&quot;), System.Drawing.Image)&nbsp;<br> Me.imgInformation.InitialImage = CType(resources.GetObject(&quot;imgInformation.InitialImage&quot;), System.Drawing.Image)&nbsp;<br> Me.imgInformation.Location = New System.Drawing.Point(12, 20)&nbsp;<br> Me.imgInformation.Name = &quot;imgInformation&quot;&nbsp;<br> Me.imgInformation.Size = New System.Drawing.Size(39, 36)&nbsp;<br> Me.imgInformation.TabIndex = 6&nbsp;<br> Me.imgInformation.TabStop = False&nbsp;<br> '&nbsp;<br> 'imgExclamation&nbsp;<br> '&nbsp;<br> Me.imgExclamation.Image = CType(resources.GetObject(&quot;imgExclamation.Image&quot;), System.Drawing.Image)&nbsp;<br> Me.imgExclamation.InitialImage = CType(resources.GetObject(&quot;imgExclamation.InitialImage&quot;), System.Drawing.Image)&nbsp;<br> Me.imgExclamation.Location = New System.Drawing.Point(12, 20)&nbsp;<br> Me.imgExclamation.Name = &quot;imgExclamation&quot;&nbsp;<br> Me.imgExclamation.Size = New System.Drawing.Size(39, 36)&nbsp;<br> Me.imgExclamation.TabIndex = 5&nbsp;<br> Me.imgExclamation.TabStop = False&nbsp;<br> '&nbsp;<br> 'imgCritical&nbsp;<br> '&nbsp;<br> Me.imgCritical.Image = CType(resources.GetObject(&quot;imgCritical.Image&quot;), System.Drawing.Image)&nbsp;<br> Me.imgCritical.InitialImage = CType(resources.GetObject(&quot;imgCritical.InitialImage&quot;), System.Drawing.Image)&nbsp;<br> Me.imgCritical.Location = New System.Drawing.Point(12, 20)&nbsp;<br> Me.imgCritical.Name = &quot;imgCritical&quot;&nbsp;<br> Me.imgCritical.Size = New System.Drawing.Size(39, 36)&nbsp;<br> Me.imgCritical.TabIndex = 4&nbsp;<br> Me.imgCritical.TabStop = False&nbsp;<br> '&nbsp;<br> 'frmMsgBox&nbsp;<br> '&nbsp;<br> Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)&nbsp;<br> Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font&nbsp;<br> Me.ClientSize = New System.Drawing.Size(337, 116)&nbsp;<br> Me.Controls.Add(Me.Panel1)&nbsp;<br> Me.Controls.Add(Me.btnOK)&nbsp;<br> Me.Controls.Add(Me.btnAbbruch)&nbsp;<br> Me.Controls.Add(Me.btnno)&nbsp;<br> Me.Controls.Add(Me.btnYes)&nbsp;<br> Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog&nbsp;<br> Me.Icon = CType(resources.GetObject(&quot;$this.Icon&quot;), System.Drawing.Icon)&nbsp;<br> Me.MaximizeBox = False&nbsp;<br> Me.MinimizeBox = False&nbsp;<br> Me.Name = &quot;frmMsgBox&quot;&nbsp;<br> Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent&nbsp;<br> Me.Text = &quot;Vertragsverwaltung&quot;&nbsp;<br> Me.Panel1.ResumeLayout(False)&nbsp;<br> Me.Panel1.PerformLayout()&nbsp;<br> CType(Me.imgQuestion, System.ComponentModel.ISupportInitialize).EndInit()&nbsp;<br> CType(Me.imgInformation, System.ComponentModel.ISupportInitialize).EndInit()&nbsp;<br> CType(Me.imgExclamation, System.ComponentModel.ISupportInitialize).EndInit()&nbsp;<br> CType(Me.imgCritical, System.ComponentModel.ISupportInitialize).EndInit()&nbsp;<br> Me.ResumeLayout(False)&nbsp;<br>&nbsp;<br> End Sub
</pre>
<H4 class="dtH4">Forderungen</H4>
<P><b class="le">Plattformen:&nbsp;</b>Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition</P>
<H4 class="dtH4">Siehe auch</H4>
<p>
<a href="topic_000000000000053C.html">frmMsgBox</a>
</p>
<DIV CLASS="footer">
<HR>
Generated by VBdocman .NET
<p>
</div></div>
</BODY>
</HTML>