New Utility Window. scraping of StockGroups, and coupled Stocks, Show in listview on UtilityWindow

This commit is contained in:
2022-09-29 12:51:57 +02:00
parent 13f4613fb8
commit 6e2eb207a3
10 changed files with 283 additions and 2 deletions

View File

@ -51,6 +51,7 @@ namespace StockInfoCore
this.cmbOwners = new System.Windows.Forms.ComboBox();
this.pbInitial = new System.Windows.Forms.ProgressBar();
this.tmrProgBar = new System.Windows.Forms.Timer(this.components);
this.btnUtils = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.gB1.SuspendLayout();
this.gbStockMgmnt.SuspendLayout();
@ -264,11 +265,22 @@ namespace StockInfoCore
this.tmrProgBar.Interval = 250;
this.tmrProgBar.Tick += new System.EventHandler(this.tmrProgBar_Tick);
//
// btnUtils
//
this.btnUtils.Location = new System.Drawing.Point(18, 421);
this.btnUtils.Name = "btnUtils";
this.btnUtils.Size = new System.Drawing.Size(75, 23);
this.btnUtils.TabIndex = 12;
this.btnUtils.Text = "Utilities";
this.btnUtils.UseVisualStyleBackColor = true;
this.btnUtils.Click += new System.EventHandler(this.btnUtils_Click);
//
// frmInitial
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(895, 538);
this.Controls.Add(this.btnUtils);
this.Controls.Add(this.pbInitial);
this.Controls.Add(this.gpOwners);
this.Controls.Add(this.lblStockRows);
@ -316,6 +328,7 @@ namespace StockInfoCore
private System.Windows.Forms.Button btnBackupAll;
private ProgressBar pbInitial;
private System.Windows.Forms.Timer tmrProgBar;
private Button btnUtils;
}
}