_ Partial Class Form1 Inherits System.Windows.Forms.Form 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Wird vom Windows Form-Designer benötigt. Private components As System.ComponentModel.IContainer 'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich. 'Das Bearbeiten ist mit dem Windows Form-Designer möglich. 'Das Bearbeiten mit dem Code-Editor ist nicht möglich. _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1)) Me.Button1 = New System.Windows.Forms.Button() Me.txtBaseUrl = New System.Windows.Forms.TextBox() Me.txtUsername = New System.Windows.Forms.TextBox() Me.txtPassword = New System.Windows.Forms.TextBox() Me.txtCertFile = New System.Windows.Forms.TextBox() Me.txtCertPass = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() Me.Label4 = New System.Windows.Forms.Label() Me.Label5 = New System.Windows.Forms.Label() Me.txtResults = New System.Windows.Forms.TextBox() Me.txtQuery = New System.Windows.Forms.TextBox() Me.SuspendLayout() ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(15, 407) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(318, 31) Me.Button1.TabIndex = 0 Me.Button1.Text = "Run!" Me.Button1.UseVisualStyleBackColor = True ' 'txtBaseUrl ' Me.txtBaseUrl.Location = New System.Drawing.Point(86, 6) Me.txtBaseUrl.Name = "txtBaseUrl" Me.txtBaseUrl.Size = New System.Drawing.Size(247, 20) Me.txtBaseUrl.TabIndex = 1 Me.txtBaseUrl.Text = "https://data.api.wisag.de:8090" ' 'txtUsername ' Me.txtUsername.Location = New System.Drawing.Point(86, 32) Me.txtUsername.Name = "txtUsername" Me.txtUsername.Size = New System.Drawing.Size(247, 20) Me.txtUsername.TabIndex = 1 Me.txtUsername.Text = "j.jenne@digitaldata.works" ' 'txtPassword ' Me.txtPassword.Location = New System.Drawing.Point(86, 58) Me.txtPassword.Name = "txtPassword" Me.txtPassword.Size = New System.Drawing.Size(247, 20) Me.txtPassword.TabIndex = 1 Me.txtPassword.Text = "DigitalData01!" ' 'txtCertFile ' Me.txtCertFile.Location = New System.Drawing.Point(86, 84) Me.txtCertFile.Name = "txtCertFile" Me.txtCertFile.Size = New System.Drawing.Size(247, 20) Me.txtCertFile.TabIndex = 1 Me.txtCertFile.Text = "E:\JenneJ\WISAG\jonathanjenne.pfx" ' 'txtCertPass ' Me.txtCertPass.Location = New System.Drawing.Point(86, 110) Me.txtCertPass.Name = "txtCertPass" Me.txtCertPass.Size = New System.Drawing.Size(247, 20) Me.txtCertPass.TabIndex = 1 Me.txtCertPass.Text = "jonathanjenne" ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(12, 9) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(53, 13) Me.Label1.TabIndex = 2 Me.Label1.Text = "BaseURL" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(12, 35) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(32, 13) Me.Label2.TabIndex = 2 Me.Label2.Text = "Email" ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(12, 61) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(53, 13) Me.Label3.TabIndex = 2 Me.Label3.Text = "Password" ' 'Label4 ' Me.Label4.AutoSize = True Me.Label4.Location = New System.Drawing.Point(12, 87) Me.Label4.Name = "Label4" Me.Label4.Size = New System.Drawing.Size(45, 13) Me.Label4.TabIndex = 2 Me.Label4.Text = "Cert File" ' 'Label5 ' Me.Label5.AutoSize = True Me.Label5.Location = New System.Drawing.Point(12, 113) Me.Label5.Name = "Label5" Me.Label5.Size = New System.Drawing.Size(52, 13) Me.Label5.TabIndex = 2 Me.Label5.Text = "Cert Pass" ' 'txtResults ' Me.txtResults.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.txtResults.Location = New System.Drawing.Point(339, 6) Me.txtResults.Multiline = True Me.txtResults.Name = "txtResults" Me.txtResults.ScrollBars = System.Windows.Forms.ScrollBars.Vertical Me.txtResults.Size = New System.Drawing.Size(881, 432) Me.txtResults.TabIndex = 3 ' 'txtQuery ' Me.txtQuery.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.txtQuery.Location = New System.Drawing.Point(15, 136) Me.txtQuery.Multiline = True Me.txtQuery.Name = "txtQuery" Me.txtQuery.Size = New System.Drawing.Size(318, 265) Me.txtQuery.TabIndex = 4 Me.txtQuery.Text = resources.GetString("txtQuery.Text") ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(1232, 450) Me.Controls.Add(Me.txtQuery) Me.Controls.Add(Me.txtResults) Me.Controls.Add(Me.Label5) Me.Controls.Add(Me.Label4) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.txtCertPass) Me.Controls.Add(Me.txtCertFile) Me.Controls.Add(Me.txtPassword) Me.Controls.Add(Me.txtUsername) Me.Controls.Add(Me.txtBaseUrl) Me.Controls.Add(Me.Button1) Me.Name = "Form1" Me.Text = "GraphQL Interface Test" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button1 As Button Friend WithEvents txtBaseUrl As TextBox Friend WithEvents txtUsername As TextBox Friend WithEvents txtPassword As TextBox Friend WithEvents txtCertFile As TextBox Friend WithEvents txtCertPass As TextBox Friend WithEvents Label1 As Label Friend WithEvents Label2 As Label Friend WithEvents Label3 As Label Friend WithEvents Label4 As Label Friend WithEvents Label5 As Label Friend WithEvents txtResults As TextBox Friend WithEvents txtQuery As TextBox End Class