-
Archives
- November 2023
- July 2023
- June 2023
- March 2023
- February 2023
- October 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- June 2021
- May 2021
- March 2021
- February 2021
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- April 2020
- March 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- July 2019
- June 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- January 2017
- December 2016
- November 2016
- October 2016
- August 2016
- July 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- September 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- January 2015
- November 2014
- October 2014
- September 2014
- August 2014
- June 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- April 2013
- March 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- February 2012
- November 2011
- October 2011
- August 2011
- July 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- August 2010
- June 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
-
Meta
Category Archives: C#
Easy way to apply filter to DataTable
Problem: Cannot directly apply a filter to a datatable. The application requires dynamic filtering for various criteria, altered at runtime by the user. Re-querying the database is not feasible; filters must be applied at the client upon a local DataTable. … Continue reading
Posted in C#, Programming
Leave a comment
Some free C# charting components / tools
Free C# Grid/Graph component http://stackoverflow.com/questions/433729/free-c-sharp-grid-graph-component Best Free Controls for .NET [closed] http://stackoverflow.com/questions/361271/best-free-controls-for-net Which .net charting library should I use? http://stackoverflow.com/questions/3201977/which-net-charting-library-should-i-use ZedGraph: A flexible charting library for .NET http://www.codeproject.com/Articles/5431/A-flexible-charting-library-for-NET Besides, the way that buy Kamagra viagra soft tabs online can … Continue reading
Posted in C#, Programming
1 Comment
Time to see what the other side is doing (moving from windows forms development to web apps)
I’ve been coding winforms for internal use. For the most part, I stick to professional standards, but I am willing to release less-polished applications than if I were selling them. Part of the implication of this is that I don’t … Continue reading
Posted in C#, Programming
Leave a comment
Replacing SSMS
Phil Factor’s thought-provoking article “Cold Turkey with SSMS” on a way to replace SQL Server Management Studio: https://www.simple-talk.com/blogs/2008/10/14/cold-turkey-with-ssms/ I am in a position where it would be NICE to have a replacement for SSMS, but I lack the time and budget to build or buy a … Continue reading
Posted in C#, Office, Programming, SQL Server, System/DB Administration
Leave a comment
Remove bold formatting from copied DataGridView column headers
When copying from DataGridView and pasting to Excel, the column headers were bolded. This was undesirable, requiring a manual Paste Special… as Text or Unicode Text every time data was copied. This problem was resolved by adjusting the clipped data’s … Continue reading
Posted in C#, Programming
Leave a comment
Heads-down data entry into a list
This is a concise, user-friendly way to add intuitive functionality to a form that controls one or more lists of entries. It is optimized for 10-Key operators but will also work for QWERTY-mode users. Drop a Textbox and a Listbox onto the … Continue reading
Posted in C#, Programming
Leave a comment
Working with Enum, Enumerated types, Enums, Enum tips
Whenever I work with Enums I find myself googling for the implementation details (aka, “command syntax”). Handling of Enums have improved in recent years, eliminating a lot of copy-n-paste hardcoding. In particular, it’s easy to get meta-level Enum information in C# / … Continue reading
Posted in C#, Programming
2 Comments
LINQ one-liner to determine selected radio button in group
Here is a LINQ one-liner to determine which radio button inside a groupbox is selected. To use it, pass the selected RadioButton object to another method for processing. Here is an example: Output Type [*] Excel 2007 [ ] Excel 2003 [ ] … Continue reading
Posted in C#, Programming
Leave a comment