Monthly Archives: February 2005

Two rules for success

Don’t tell anyone everything you know.

Posted in General | Comments Off

mozdev.org – forecastfox

Another cool firefox plugin :: forecastfox

Posted in General | Comments Off

Spellchecker plugin for FireFox

I’ve just installed the mighty Spellbound extension for Firefox. With a bit of luck, it might help me cut down on my blundering typos.

Posted in General | Comments Off

Hiding Columns in a dynamic DataGrid

resultDataGrid is populated from resultDataSet, which is populated directly from SQL. private void formatDataGridColumns() { for(int i=0;i<resultdataset .Tables[0].Columns.Count;i++) { BoundColumn objbc = new BoundColumn(); objbc.DataField = _ resultDataSet.Tables[0].Columns[i].ColumnName; objbc.HeaderText = _ resultDataSet.Tables[0].Columns[i].ColumnName; resultDataGrid.Columns.Add(objbc); objbc.Visible = false; if (objbc.HeaderText == _ … Continue reading

Posted in C# Snippets | Comments Off