System.Data.DataColumn' does not contain a definition for 'Windows' ??

M

mfunkmann

Hi,

I recently got an error and I don't know how to fix it:
Error 1 'System.Data.DataColumn' does not contain a definition for
'Windows' C:\c#\CsharpPRO\Form1.Designer.cs 304 77 CsharpPRO

I am note sure what to do because all propertiers work, except the
System.Data.DataColumn..
I didn't write any code by hand and used the visual studio to set the
properties..

Whats wrong here?

(I commented the problematic parts out..)
-----------------
complete sourcefile:


using System.Windows;


namespace CsharpPRO
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete
Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Vom Windows Form-Designer generierter Code

/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor
geändert werden.
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new
System.Windows.Forms.ToolStripMenuItem();
this.neuToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new
System.Windows.Forms.ToolStripSeparator();
this.ladenToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.speichernToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.closeToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new
System.Windows.Forms.ToolStripSeparator();
this.beendenToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.extrasToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.generierePasswortToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.hilfeToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.infoToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.PasswordDB = new System.Data.DataSet();
this.PwData = new System.Data.DataTable();
this.Username = new System.Data.DataColumn();
this.Password = new System.Data.DataColumn();
this.System = new System.Data.DataColumn();
this.PasswordGridView1 = new
System.Windows.Forms.DataGridView();
this.tabControl1 = new
System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.checkSpecial = new
System.Windows.Forms.CheckBox();
this.check_Numbers = new
System.Windows.Forms.CheckBox();
this.check_HCase = new System.Windows.Forms.CheckBox();
this.check_LCase = new System.Windows.Forms.CheckBox();
this.openFileDialog1 = new
System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new
System.Windows.Forms.SaveFileDialog();
this.usernameDataGridViewTextBoxColumn = new
System.Windows.Forms.DataGridViewTextBoxColumn();
this.passwordDataGridViewTextBoxColumn = new
System.Windows.Forms.DataGridViewTextBoxColumn();
this.systemDataGridViewTextBoxColumn = new
System.Windows.Forms.DataGridViewTextBoxColumn();
this.menuStrip1.SuspendLayout();

((System.ComponentModel.ISupportInitialize)(this.PasswordDB)).BeginInit();

((System.ComponentModel.ISupportInitialize)(this.PwData)).BeginInit();

((System.ComponentModel.ISupportInitialize)(this.PasswordGridView1)).BeginInit();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1,
this.extrasToolStripMenuItem,
this.hilfeToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0,
0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(443,
24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.DropDownItems.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.neuToolStripMenuItem,
this.toolStripSeparator2,
this.ladenToolStripMenuItem,
this.speichernToolStripMenuItem,
this.closeToolStripMenuItem,
this.toolStripSeparator1,
this.beendenToolStripMenuItem});
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new
System.Drawing.Size(35, 20);
this.toolStripMenuItem1.Text = "File";
//
// neuToolStripMenuItem
//
this.neuToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.buch;
this.neuToolStripMenuItem.Name =
"neuToolStripMenuItem";
this.neuToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.neuToolStripMenuItem.Text = "New";
this.neuToolStripMenuItem.Click += new
System.EventHandler(this.neuToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new
System.Drawing.Size(108, 6);
//
// ladenToolStripMenuItem
//
this.ladenToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.ordner;
this.ladenToolStripMenuItem.Name =
"ladenToolStripMenuItem";
this.ladenToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.ladenToolStripMenuItem.Text = "Load";
this.ladenToolStripMenuItem.Click += new
System.EventHandler(this.ladenToolStripMenuItem_Click);
//
// speichernToolStripMenuItem
//
this.speichernToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.action_save;
this.speichernToolStripMenuItem.Name =
"speichernToolStripMenuItem";
this.speichernToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.speichernToolStripMenuItem.Text = "Save";
this.speichernToolStripMenuItem.Click += new
System.EventHandler(this.speichernToolStripMenuItem_Click);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name =
"closeToolStripMenuItem";
this.closeToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.closeToolStripMenuItem.Text = "Close";
this.closeToolStripMenuItem.Click += new
System.EventHandler(this.closeToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new
System.Drawing.Size(108, 6);
//
// beendenToolStripMenuItem
//
this.beendenToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.action_stop;
this.beendenToolStripMenuItem.Name =
"beendenToolStripMenuItem";
this.beendenToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.beendenToolStripMenuItem.Text = "Exit";
this.beendenToolStripMenuItem.Click += new
System.EventHandler(this.beendenToolStripMenuItem_Click);
//
// extrasToolStripMenuItem
//
this.extrasToolStripMenuItem.DropDownItems.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.generierePasswortToolStripMenuItem});
this.extrasToolStripMenuItem.Name =
"extrasToolStripMenuItem";
this.extrasToolStripMenuItem.Size = new
System.Drawing.Size(50, 20);
this.extrasToolStripMenuItem.Text = "Extras";
//
// generierePasswortToolStripMenuItem
//
this.generierePasswortToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.zip_add;
this.generierePasswortToolStripMenuItem.Name =
"generierePasswortToolStripMenuItem";
this.generierePasswortToolStripMenuItem.Size = new
System.Drawing.Size(186, 22);
this.generierePasswortToolStripMenuItem.Text =
"Password generation";
this.generierePasswortToolStripMenuItem.Click += new
System.EventHandler(this.generierePasswortToolStripMenuItem_Click);
//
// hilfeToolStripMenuItem
//
this.hilfeToolStripMenuItem.DropDownItems.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.infoToolStripMenuItem});
this.hilfeToolStripMenuItem.Name =
"hilfeToolStripMenuItem";
this.hilfeToolStripMenuItem.Size = new
System.Drawing.Size(40, 20);
this.hilfeToolStripMenuItem.Text = "Help";
//
// infoToolStripMenuItem
//
this.infoToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.help;
this.infoToolStripMenuItem.Name =
"infoToolStripMenuItem";
this.infoToolStripMenuItem.Size = new
System.Drawing.Size(105, 22);
this.infoToolStripMenuItem.Text = "Info";
this.infoToolStripMenuItem.Click += new
System.EventHandler(this.infoToolStripMenuItem_Click);
//
// PasswordDB
//
this.PasswordDB.DataSetName = "PasswordDB";
this.PasswordDB.Tables.AddRange(new
System.Data.DataTable[] {
this.PwData});
//
// PwData
//
this.PwData.Columns.AddRange(new
System.Data.DataColumn[] {
this.Username,
this.Password,
this.System});
this.PwData.TableName = "PwData";
//
// Username
//
this.Username.ColumnName = "Username";
//
// Password
//
this.Password.ColumnName = "Password";
//
// System
//
this.System.ColumnName = "System";
//
// PasswordGridView1
//
this.PasswordGridView1.AutoGenerateColumns = false;
this.PasswordGridView1.Columns.AddRange(new
System.Windows.Forms.DataGridViewColumn[] {
this.usernameDataGridViewTextBoxColumn,
this.passwordDataGridViewTextBoxColumn,
this.systemDataGridViewTextBoxColumn});
this.PasswordGridView1.DataMember = "PwData";
this.PasswordGridView1.DataSource = this.PasswordDB;
this.PasswordGridView1.Location = new
System.Drawing.Point(0, 0);
this.PasswordGridView1.Name = "PasswordGridView1";
this.PasswordGridView1.Size = new
System.Drawing.Size(429, 225);
this.PasswordGridView1.TabIndex = 1;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(0,
27);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(443,
251);
this.tabControl1.TabIndex = 2;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.PasswordGridView1);
this.tabPage1.Location = new System.Drawing.Point(4,
22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new
System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(435, 225);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Password Database";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.checkSpecial);
this.tabPage2.Controls.Add(this.check_Numbers);
this.tabPage2.Controls.Add(this.check_HCase);
this.tabPage2.Controls.Add(this.check_LCase);
this.tabPage2.Location = new System.Drawing.Point(4,
22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new
System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(435, 225);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Password Generator";
this.tabPage2.UseVisualStyleBackColor = true;
//
// checkSpecial
//
this.checkSpecial.AutoSize = true;
this.checkSpecial.Location = new
System.Drawing.Point(326, 154);
this.checkSpecial.Name = "checkSpecial";
this.checkSpecial.Size = new System.Drawing.Size(61,
17);
this.checkSpecial.TabIndex = 3;
this.checkSpecial.Text = "Special";
this.checkSpecial.UseVisualStyleBackColor = true;
//
// check_Numbers
//
this.check_Numbers.AutoSize = true;
this.check_Numbers.Location = new
System.Drawing.Point(326, 130);
this.check_Numbers.Name = "check_Numbers";
this.check_Numbers.Size = new System.Drawing.Size(68,
17);
this.check_Numbers.TabIndex = 2;
this.check_Numbers.Text = "Numbers";
this.check_Numbers.UseVisualStyleBackColor = true;
//
// check_HCase
//
this.check_HCase.AutoSize = true;
this.check_HCase.Location = new
System.Drawing.Point(237, 154);
this.check_HCase.Name = "check_HCase";
this.check_HCase.Size = new System.Drawing.Size(75,
17);
this.check_HCase.TabIndex = 1;
this.check_HCase.Text = "High Case";
this.check_HCase.UseVisualStyleBackColor = true;
this.check_HCase.CheckedChanged += new
System.EventHandler(this.checkBox1_CheckedChanged);
//
// check_LCase
//
this.check_LCase.AutoSize = true;
this.check_LCase.Location = new
System.Drawing.Point(237, 130);
this.check_LCase.Name = "check_LCase";
this.check_LCase.Size = new System.Drawing.Size(82,
17);
this.check_LCase.TabIndex = 0;
this.check_LCase.Text = "Lower Case";
this.check_LCase.UseVisualStyleBackColor = true;
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// usernameDataGridViewTextBoxColumn
//

this.usernameDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.usernameDataGridViewTextBoxColumn.DataPropertyName
= "Username";
this.usernameDataGridViewTextBoxColumn.HeaderText =
"Username";
this.usernameDataGridViewTextBoxColumn.Name =
"usernameDataGridViewTextBoxColumn";
// this.usernameDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// passwordDataGridViewTextBoxColumn
//
//
this.passwordDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.passwordDataGridViewTextBoxColumn.DataPropertyName
= "Password";
this.passwordDataGridViewTextBoxColumn.HeaderText =
"Password";
this.passwordDataGridViewTextBoxColumn.Name =
"passwordDataGridViewTextBoxColumn";
//this.passwordDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// systemDataGridViewTextBoxColumn
//

// this.systemDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.systemDataGridViewTextBoxColumn.DataPropertyName =
"System";
this.systemDataGridViewTextBoxColumn.HeaderText =
"System";
this.systemDataGridViewTextBoxColumn.Name =
"systemDataGridViewTextBoxColumn";
// this.systemDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// Form1
//
this.ClientSize = new System.Drawing.Size(443, 275);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Passwordmanager 2007 Pro";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();

((System.ComponentModel.ISupportInitialize)(this.PasswordDB)).EndInit();

((System.ComponentModel.ISupportInitialize)(this.PwData)).EndInit();

((System.ComponentModel.ISupportInitialize)(this.PasswordGridView1)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem
toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem
speichernToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
ladenToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
beendenToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
hilfeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
infoToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
extrasToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
generierePasswortToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
neuToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator
toolStripSeparator2;
private System.Windows.Forms.ToolStripSeparator
toolStripSeparator1;
private System.Data.DataSet PasswordDB;
private System.Data.DataTable PwData;
private System.Data.DataColumn Username;
private System.Data.DataColumn Password;
private System.Data.DataColumn System;
private System.Windows.Forms.DataGridView
PasswordGridView1;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.CheckBox check_LCase;
private System.Windows.Forms.CheckBox check_Numbers;
private System.Windows.Forms.CheckBox check_HCase;
private System.Windows.Forms.CheckBox checkSpecial;
private System.Windows.Forms.OpenFileDialog
openFileDialog1;
private System.Windows.Forms.SaveFileDialog
saveFileDialog1;
private System.Windows.Forms.ToolStripMenuItem
closeToolStripMenuItem;
private System.Windows.Forms.DataGridViewTextBoxColumn
usernameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
passwordDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
systemDataGridViewTextBoxColumn;
}
}
 
D

Duggi

Hi

Insted of pasting this long code can you please write down the steps
that you performed???

Also try performing the same steps again,,, I mean try to reproduce the
issue. List down all the steps. (I am sure this will help resolving the
problem, as you said all the code is genarated by VS and there should
not be any problem unless you did not install visual studio properly).

Thanks
-Srinivas.


Hi,

I recently got an error and I don't know how to fix it:
Error 1 'System.Data.DataColumn' does not contain a definition for
'Windows' C:\c#\CsharpPRO\Form1.Designer.cs 304 77 CsharpPRO

I am note sure what to do because all propertiers work, except the
System.Data.DataColumn..
I didn't write any code by hand and used the visual studio to set the
properties..

Whats wrong here?

(I commented the problematic parts out..)
-----------------
complete sourcefile:


using System.Windows;


namespace CsharpPRO
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete
Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Vom Windows Form-Designer generierter Code

/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor
geändert werden.
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new
System.Windows.Forms.ToolStripMenuItem();
this.neuToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new
System.Windows.Forms.ToolStripSeparator();
this.ladenToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.speichernToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.closeToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new
System.Windows.Forms.ToolStripSeparator();
this.beendenToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.extrasToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.generierePasswortToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.hilfeToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.infoToolStripMenuItem = new
System.Windows.Forms.ToolStripMenuItem();
this.PasswordDB = new System.Data.DataSet();
this.PwData = new System.Data.DataTable();
this.Username = new System.Data.DataColumn();
this.Password = new System.Data.DataColumn();
this.System = new System.Data.DataColumn();
this.PasswordGridView1 = new
System.Windows.Forms.DataGridView();
this.tabControl1 = new
System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.checkSpecial = new
System.Windows.Forms.CheckBox();
this.check_Numbers = new
System.Windows.Forms.CheckBox();
this.check_HCase = new System.Windows.Forms.CheckBox();
this.check_LCase = new System.Windows.Forms.CheckBox();
this.openFileDialog1 = new
System.Windows.Forms.OpenFileDialog();
this.saveFileDialog1 = new
System.Windows.Forms.SaveFileDialog();
this.usernameDataGridViewTextBoxColumn = new
System.Windows.Forms.DataGridViewTextBoxColumn();
this.passwordDataGridViewTextBoxColumn = new
System.Windows.Forms.DataGridViewTextBoxColumn();
this.systemDataGridViewTextBoxColumn = new
System.Windows.Forms.DataGridViewTextBoxColumn();
this.menuStrip1.SuspendLayout();

((System.ComponentModel.ISupportInitialize)(this.PasswordDB)).BeginInit();

((System.ComponentModel.ISupportInitialize)(this.PwData)).BeginInit();

((System.ComponentModel.ISupportInitialize)(this.PasswordGridView1)).BeginInit();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1,
this.extrasToolStripMenuItem,
this.hilfeToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0,
0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(443,
24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.DropDownItems.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.neuToolStripMenuItem,
this.toolStripSeparator2,
this.ladenToolStripMenuItem,
this.speichernToolStripMenuItem,
this.closeToolStripMenuItem,
this.toolStripSeparator1,
this.beendenToolStripMenuItem});
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new
System.Drawing.Size(35, 20);
this.toolStripMenuItem1.Text = "File";
//
// neuToolStripMenuItem
//
this.neuToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.buch;
this.neuToolStripMenuItem.Name =
"neuToolStripMenuItem";
this.neuToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.neuToolStripMenuItem.Text = "New";
this.neuToolStripMenuItem.Click += new
System.EventHandler(this.neuToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new
System.Drawing.Size(108, 6);
//
// ladenToolStripMenuItem
//
this.ladenToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.ordner;
this.ladenToolStripMenuItem.Name =
"ladenToolStripMenuItem";
this.ladenToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.ladenToolStripMenuItem.Text = "Load";
this.ladenToolStripMenuItem.Click += new
System.EventHandler(this.ladenToolStripMenuItem_Click);
//
// speichernToolStripMenuItem
//
this.speichernToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.action_save;
this.speichernToolStripMenuItem.Name =
"speichernToolStripMenuItem";
this.speichernToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.speichernToolStripMenuItem.Text = "Save";
this.speichernToolStripMenuItem.Click += new
System.EventHandler(this.speichernToolStripMenuItem_Click);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name =
"closeToolStripMenuItem";
this.closeToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.closeToolStripMenuItem.Text = "Close";
this.closeToolStripMenuItem.Click += new
System.EventHandler(this.closeToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new
System.Drawing.Size(108, 6);
//
// beendenToolStripMenuItem
//
this.beendenToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.action_stop;
this.beendenToolStripMenuItem.Name =
"beendenToolStripMenuItem";
this.beendenToolStripMenuItem.Size = new
System.Drawing.Size(111, 22);
this.beendenToolStripMenuItem.Text = "Exit";
this.beendenToolStripMenuItem.Click += new
System.EventHandler(this.beendenToolStripMenuItem_Click);
//
// extrasToolStripMenuItem
//
this.extrasToolStripMenuItem.DropDownItems.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.generierePasswortToolStripMenuItem});
this.extrasToolStripMenuItem.Name =
"extrasToolStripMenuItem";
this.extrasToolStripMenuItem.Size = new
System.Drawing.Size(50, 20);
this.extrasToolStripMenuItem.Text = "Extras";
//
// generierePasswortToolStripMenuItem
//
this.generierePasswortToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.zip_add;
this.generierePasswortToolStripMenuItem.Name =
"generierePasswortToolStripMenuItem";
this.generierePasswortToolStripMenuItem.Size = new
System.Drawing.Size(186, 22);
this.generierePasswortToolStripMenuItem.Text =
"Password generation";
this.generierePasswortToolStripMenuItem.Click += new
System.EventHandler(this.generierePasswortToolStripMenuItem_Click);
//
// hilfeToolStripMenuItem
//
this.hilfeToolStripMenuItem.DropDownItems.AddRange(new
System.Windows.Forms.ToolStripItem[] {
this.infoToolStripMenuItem});
this.hilfeToolStripMenuItem.Name =
"hilfeToolStripMenuItem";
this.hilfeToolStripMenuItem.Size = new
System.Drawing.Size(40, 20);
this.hilfeToolStripMenuItem.Text = "Help";
//
// infoToolStripMenuItem
//
this.infoToolStripMenuItem.Image =
global::CsharpPRO.Properties.Resources.help;
this.infoToolStripMenuItem.Name =
"infoToolStripMenuItem";
this.infoToolStripMenuItem.Size = new
System.Drawing.Size(105, 22);
this.infoToolStripMenuItem.Text = "Info";
this.infoToolStripMenuItem.Click += new
System.EventHandler(this.infoToolStripMenuItem_Click);
//
// PasswordDB
//
this.PasswordDB.DataSetName = "PasswordDB";
this.PasswordDB.Tables.AddRange(new
System.Data.DataTable[] {
this.PwData});
//
// PwData
//
this.PwData.Columns.AddRange(new
System.Data.DataColumn[] {
this.Username,
this.Password,
this.System});
this.PwData.TableName = "PwData";
//
// Username
//
this.Username.ColumnName = "Username";
//
// Password
//
this.Password.ColumnName = "Password";
//
// System
//
this.System.ColumnName = "System";
//
// PasswordGridView1
//
this.PasswordGridView1.AutoGenerateColumns = false;
this.PasswordGridView1.Columns.AddRange(new
System.Windows.Forms.DataGridViewColumn[] {
this.usernameDataGridViewTextBoxColumn,
this.passwordDataGridViewTextBoxColumn,
this.systemDataGridViewTextBoxColumn});
this.PasswordGridView1.DataMember = "PwData";
this.PasswordGridView1.DataSource = this.PasswordDB;
this.PasswordGridView1.Location = new
System.Drawing.Point(0, 0);
this.PasswordGridView1.Name = "PasswordGridView1";
this.PasswordGridView1.Size = new
System.Drawing.Size(429, 225);
this.PasswordGridView1.TabIndex = 1;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(0,
27);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(443,
251);
this.tabControl1.TabIndex = 2;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.PasswordGridView1);
this.tabPage1.Location = new System.Drawing.Point(4,
22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new
System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(435, 225);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Password Database";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.checkSpecial);
this.tabPage2.Controls.Add(this.check_Numbers);
this.tabPage2.Controls.Add(this.check_HCase);
this.tabPage2.Controls.Add(this.check_LCase);
this.tabPage2.Location = new System.Drawing.Point(4,
22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new
System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(435, 225);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Password Generator";
this.tabPage2.UseVisualStyleBackColor = true;
//
// checkSpecial
//
this.checkSpecial.AutoSize = true;
this.checkSpecial.Location = new
System.Drawing.Point(326, 154);
this.checkSpecial.Name = "checkSpecial";
this.checkSpecial.Size = new System.Drawing.Size(61,
17);
this.checkSpecial.TabIndex = 3;
this.checkSpecial.Text = "Special";
this.checkSpecial.UseVisualStyleBackColor = true;
//
// check_Numbers
//
this.check_Numbers.AutoSize = true;
this.check_Numbers.Location = new
System.Drawing.Point(326, 130);
this.check_Numbers.Name = "check_Numbers";
this.check_Numbers.Size = new System.Drawing.Size(68,
17);
this.check_Numbers.TabIndex = 2;
this.check_Numbers.Text = "Numbers";
this.check_Numbers.UseVisualStyleBackColor = true;
//
// check_HCase
//
this.check_HCase.AutoSize = true;
this.check_HCase.Location = new
System.Drawing.Point(237, 154);
this.check_HCase.Name = "check_HCase";
this.check_HCase.Size = new System.Drawing.Size(75,
17);
this.check_HCase.TabIndex = 1;
this.check_HCase.Text = "High Case";
this.check_HCase.UseVisualStyleBackColor = true;
this.check_HCase.CheckedChanged += new
System.EventHandler(this.checkBox1_CheckedChanged);
//
// check_LCase
//
this.check_LCase.AutoSize = true;
this.check_LCase.Location = new
System.Drawing.Point(237, 130);
this.check_LCase.Name = "check_LCase";
this.check_LCase.Size = new System.Drawing.Size(82,
17);
this.check_LCase.TabIndex = 0;
this.check_LCase.Text = "Lower Case";
this.check_LCase.UseVisualStyleBackColor = true;
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// usernameDataGridViewTextBoxColumn
//

this.usernameDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.usernameDataGridViewTextBoxColumn.DataPropertyName
= "Username";
this.usernameDataGridViewTextBoxColumn.HeaderText =
"Username";
this.usernameDataGridViewTextBoxColumn.Name =
"usernameDataGridViewTextBoxColumn";
// this.usernameDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// passwordDataGridViewTextBoxColumn
//
//
this.passwordDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.passwordDataGridViewTextBoxColumn.DataPropertyName
= "Password";
this.passwordDataGridViewTextBoxColumn.HeaderText =
"Password";
this.passwordDataGridViewTextBoxColumn.Name =
"passwordDataGridViewTextBoxColumn";
//this.passwordDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// systemDataGridViewTextBoxColumn
//

// this.systemDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.systemDataGridViewTextBoxColumn.DataPropertyName =
"System";
this.systemDataGridViewTextBoxColumn.HeaderText =
"System";
this.systemDataGridViewTextBoxColumn.Name =
"systemDataGridViewTextBoxColumn";
// this.systemDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// Form1
//
this.ClientSize = new System.Drawing.Size(443, 275);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Passwordmanager 2007 Pro";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();

((System.ComponentModel.ISupportInitialize)(this.PasswordDB)).EndInit();

((System.ComponentModel.ISupportInitialize)(this.PwData)).EndInit();

((System.ComponentModel.ISupportInitialize)(this.PasswordGridView1)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem
toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem
speichernToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
ladenToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
beendenToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
hilfeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
infoToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
extrasToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
generierePasswortToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem
neuToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator
toolStripSeparator2;
private System.Windows.Forms.ToolStripSeparator
toolStripSeparator1;
private System.Data.DataSet PasswordDB;
private System.Data.DataTable PwData;
private System.Data.DataColumn Username;
private System.Data.DataColumn Password;
private System.Data.DataColumn System;
private System.Windows.Forms.DataGridView
PasswordGridView1;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.CheckBox check_LCase;
private System.Windows.Forms.CheckBox check_Numbers;
private System.Windows.Forms.CheckBox check_HCase;
private System.Windows.Forms.CheckBox checkSpecial;
private System.Windows.Forms.OpenFileDialog
openFileDialog1;
private System.Windows.Forms.SaveFileDialog
saveFileDialog1;
private System.Windows.Forms.ToolStripMenuItem
closeToolStripMenuItem;
private System.Windows.Forms.DataGridViewTextBoxColumn
usernameDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
passwordDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn
systemDataGridViewTextBoxColumn;
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top