by Rick Miller | 29 Jun 2017 | C#.NET, Programming Languages
You don’t need Visual Studio for simple C# projects. Everything you need is included when you install the .NET Framework, except a decent text editor. (I highly recommend Notepad++) To get started, you’ll need to install the .NET Framework, if you haven’t already done...
by Rick Miller | 25 Jun 2017 | C#.NET, Programming Languages
In an earlier blog post I explained how to populate a Windows forms ComboBox with settings stored in an App.config file. It’s easy to read settings from an App.config file and it’s just as easy to save application settings to configuration files as well. The Video...
by Rick Miller | 3 Jun 2017 | C#.NET, Programming Languages
A ComboBox control allows you to make a selection from a dropdown list of choices. You can populate a ComboBox from a variety of sources including static initialization in the code or fetching the items dynamically from a database just to name a few. These methods...