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.P asswordDB)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.P wData)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.P asswordGridView1)).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_Clic k);
//
// 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_Cl ick);
//
// 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.speichernToolStripMenuIte m_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_Cl ick);
//
// 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.AddRang e(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.generierePasswortToolStri pMenuItem_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_Cli ck);
//
// 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.AutoSizeMod e =
System.Windows.Forms.DataGridViewAutoSizeColumnMod e.Fill;
this.usernameDataGridViewTextBoxColumn.DataPropert yName
= "Username";
this.usernameDataGridViewTextBoxColumn.HeaderText =
"Username";
this.usernameDataGridViewTextBoxColumn.Name =
"usernameDataGridViewTextBoxColumn";
// this.usernameDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// passwordDataGridViewTextBoxColumn
//
//
this.passwordDataGridViewTextBoxColumn.AutoSizeMod e =
System.Windows.Forms.DataGridViewAutoSizeColumnMod e.Fill;
this.passwordDataGridViewTextBoxColumn.DataPropert yName
= "Password";
this.passwordDataGridViewTextBoxColumn.HeaderText =
"Password";
this.passwordDataGridViewTextBoxColumn.Name =
"passwordDataGridViewTextBoxColumn";
//this.passwordDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// systemDataGridViewTextBoxColumn
//
// this.systemDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMod e.Fill;
this.systemDataGridViewTextBoxColumn.DataPropertyN ame =
"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.P asswordDB)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.P wData)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.P asswordGridView1)).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;
}
} 1 7764
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. mf*******@yahoo.com wrote:
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.P asswordDB)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.P wData)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.P asswordGridView1)).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_Clic k);
//
// 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_Cl ick);
//
// 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.speichernToolStripMenuIte m_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_Cl ick);
//
// 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.AddRang e(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.generierePasswortToolStri pMenuItem_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_Cli ck);
//
// 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.AutoSizeMod e =
System.Windows.Forms.DataGridViewAutoSizeColumnMod e.Fill;
this.usernameDataGridViewTextBoxColumn.DataPropert yName
= "Username";
this.usernameDataGridViewTextBoxColumn.HeaderText =
"Username";
this.usernameDataGridViewTextBoxColumn.Name =
"usernameDataGridViewTextBoxColumn";
// this.usernameDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// passwordDataGridViewTextBoxColumn
//
//
this.passwordDataGridViewTextBoxColumn.AutoSizeMod e =
System.Windows.Forms.DataGridViewAutoSizeColumnMod e.Fill;
this.passwordDataGridViewTextBoxColumn.DataPropert yName
= "Password";
this.passwordDataGridViewTextBoxColumn.HeaderText =
"Password";
this.passwordDataGridViewTextBoxColumn.Name =
"passwordDataGridViewTextBoxColumn";
//this.passwordDataGridViewTextBoxColumn.Resizable =
System.Windows.Forms.DataGridViewTriState.False;
//
// systemDataGridViewTextBoxColumn
//
// this.systemDataGridViewTextBoxColumn.AutoSizeMode =
System.Windows.Forms.DataGridViewAutoSizeColumnMod e.Fill;
this.systemDataGridViewTextBoxColumn.DataPropertyN ame =
"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.P asswordDB)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.P wData)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.P asswordGridView1)).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;
}
}
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Penn Markham |
last post by:
Hello all,
I am writing a script where I need to use the system() function to call
htpasswd. I can do this just fine on the command line...works great
(see attached file, test.php). When my...
|
by: elcc1958 |
last post by:
I need to support a VB6 application that will be receiving
disconnected ADODB.Recordset from out DotNet solution. Our dotnet
solution deals with System.Data.DataTable. I need to populate a...
|
by: Bilo |
last post by:
I have a Windows Forms Class MainGUI
I have declared
MainGUI maingui;
public System.ComponentModel.Container components = new Container();
in the Class
I call another class MediaDriver with...
|
by: Luis Esteban Valencia |
last post by:
Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source...
|
by: djc |
last post by:
I get this *intermittently* on a utility I am working on. I don't know whats
going on but here are a few points about it:
- using VS 2005, running on xp sp2
- program uses multiple threadpool...
|
by: Carlos |
last post by:
Hi all,
I have 2 asp .net 2.0 projects currently being developed. One is in
VB .Net and the other in C#. In the VB .Net project I can cross-reference
a datatable object using the...
|
by: forest demon |
last post by:
for example, let's say I do something like,
System.Diagnostics.Process.Start("notepad.exe","sample.txt");
if the user does a SaveAs (in notepad), how can i capture the path that
the user...
|
by: mfunkmann |
last post by:
Hi there!
I have a problem here: I am using System.Data.Column and the Designer
wrote follwing Code for me:
this.System = new System.Data.DataColumn();
So far great, but furthermore I was...
|
by: =?Utf-8?B?VGFtbXkgTmVqYWRpYW4=?= |
last post by:
Hi, I am using Visual Studio C# windows. Every time I want to use some of the
methods in System.Windows.Form such as Clear(), it gives me error message and
saying "System.Windows.Forms.TextBox does...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |