Monthly Archives: January 2009
Mysql could not fetch schema table status
To fix MySQL Administrator error ”Could not fetch schema table status”, simply disable McAfee and your problem should be solved
Posted in Database, MySQL, Programming, Tutorials
Tagged Administrator, Could not fetch schema table status, McAfee, MySQL, MySQL error
1 Comment
Disable Column Sort in DataGridView
DataGridView has column sorting enabled by default. It’s usually a good thing but in some rare cases it can be a problem and should be disabled. To disable it, add a ColumnAdded event: this.dataGridView1.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler( this.dataGridView1_ColumnAdded); and add … Continue reading
Posted in C#, Programming, Tutorials
3 Comments