diff --git a/AyaNovaQBI/CopyableMessageBox.Designer.cs b/AyaNovaQBI/CopyableMessageBox.Designer.cs index 45f56da..74b597e 100644 --- a/AyaNovaQBI/CopyableMessageBox.Designer.cs +++ b/AyaNovaQBI/CopyableMessageBox.Designer.cs @@ -86,7 +86,6 @@ this.Controls.Add(this.panel2); this.Controls.Add(this.panel1); this.Name = "CopyableMessageBox"; - this.ShowInTaskbar = false; this.Load += new System.EventHandler(this.CopyableMessageBox_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); diff --git a/AyaNovaQBI/CopyableMessageBox.cs b/AyaNovaQBI/CopyableMessageBox.cs index 63575c7..19a7347 100644 --- a/AyaNovaQBI/CopyableMessageBox.cs +++ b/AyaNovaQBI/CopyableMessageBox.cs @@ -17,6 +17,7 @@ namespace AyaNovaQBI { InitializeComponent(); mDisplay=Display; + this.Icon = AyaNovaQBI.Properties.Resources.logo; } private void btnCopy_Click(object sender, EventArgs e) diff --git a/AyaNovaQBI/devinfo.txt b/AyaNovaQBI/devinfo.txt index a76d9dd..7318118 100644 --- a/AyaNovaQBI/devinfo.txt +++ b/AyaNovaQBI/devinfo.txt @@ -6,4 +6,6 @@ Docs should not refer to autoclose anymore, it's status driven now DOCS UI use "Link" and do not use "map" anywhere TEST auto-linking not tested due to import not coded yet so would be fuckery to do Integration object is saved too often as copied the code from v7, oncce working change that to save when ops are done only as it's a much more potentially expensive operation now - e.g.Util.ImportAyaCustomer at bottom \ No newline at end of file + e.g.Util.ImportAyaCustomer at bottom +unselect first item in map for both grids as they currently open with the first tiem highlighted +link -> import from qb should re-initialize grids, also other direction too so that imported items appear in grid showing it worked \ No newline at end of file diff --git a/AyaNovaQBI/util.cs b/AyaNovaQBI/util.cs index 2d72a96..45dfd83 100644 --- a/AyaNovaQBI/util.cs +++ b/AyaNovaQBI/util.cs @@ -1729,7 +1729,7 @@ namespace AyaNovaQBI if (item == null) return 0; //Ok we have a matching vendor in the list, return the id of it - return item.Id; + return item.ObjectId; }