| |
Description | Compatibility | Level/ Author | Views/ Date Submitted | User Rating |
|
|
 |
Audio Player (MP3) | C# | Beginner / Dave Bowlin | 1441 since 1/24/2019 6:30:24 PM | Unrated
|
|
A simple and fast MP3 player written entirely from scratch in C#. Add tracks, remove tracks, save and load playlists, play tracks randomly or in order, loop tracks endlessly or stop at the end. Well documented code. Uses WMLib COM. (ScreenShot) |
|
|
|
 |
Audio Player 0.5 | C# | Beginner / Dave Bowlin | 962 since 5/13/2019 10:57:39 PM |
By 2 Users 2 Excellent Ratings
|
|
Audio Player - plays mp3 files. This is an update to the previous version. Drag and drop support, window position save/load support, context menu support, bug fixes, etc. (ScreenShot) |
|
|
|
 |
Batch Rename Files | C# | Beginner / Dave Bowlin | 1222 since 1/29/2019 4:39:01 PM | Unrated
|
|
Very quickly and easily rename unlimited files in any folder of a specific type. See screenshot. ** Updated to fix a small issue with numbering the renamed files. ** (ScreenShot) |
|
Please support the site by visiting our
sponsor:
|
|
|
 |
Been Alive For... | VB.NET | Beginner / Dave Bowlin | 3391 since 7/15/2016 8:47:17 PM |
By 1 Users
|
|
Shows how long a person has been alive in years, months, weeks, and days. Very small code, shows how to format numbers, convert to integers, strings, and use TimeSpan. (ScreenShot) |
|
|
|
 |
Binary and Hex Clock | C# | Beginner / Dave Bowlin | 1160 since 12/12/2018 8:38:42 PM | Unrated
|
|
Simple C# code that displays the current time in binary, hexadecimal, and standard formats. (ScreenShot) |
|
|
|
 |
Birthday Emails | C# | Beginner / Dave Bowlin | 5207 since 12/19/2017 7:30:33 PM | Unrated
|
|
Birthday Emails is a database application that runs on a Windows computer system and sends out an email to wish employees / group members a happy birthday wish on their birthday. It uses Microsoft SQL Server LocalDB edition (which is completely free). Cod ...(description truncated) (ScreenShot) |
|
|
|
 |
Blinking Controls | C# | Beginner / Dave Bowlin | 1683 since 2/6/2019 12:31:57 AM | Unrated
|
|
Use async and await to make blinking controls. Very easy, and doesn't require a timer. In the code sample, I've used a form with a button, textbox, label, listbox, and the form itself. |
|
|
|
 |
C# Classes example | C# | Beginner / Dave Bowlin | 1002 since 6/19/2019 4:25:21 PM |
By 1 Users
|
|
BEGINNERS. This small code shows how to use classes. Classes are a great way to keep your form design code separate from your logic code, which makes it much, much easier to maintain, debug, and update your code. This code demonstrates using classes from ...(description truncated) (ScreenShot) |
|
|
|
 |
C# RETURN keyword example | C# | Beginner / Dave Bowlin | 679 since 6/17/2019 8:44:57 PM | Unrated
|
|
BEGINNERS: This is in response to a Reddit question. Someone asked for a very simple explanation and example of using RETURN keyword in C# code. So, this is my take on it. This code will show you how to RETURN a variable to the calling method. First, it c ...(description truncated) (ScreenShot) |
|
|
|
 |
C# Reverse a string | C# | Beginner / Dave Bowlin | 663 since 6/18/2019 6:42:25 PM | Unrated
|
|
Got stuck on a conference call today, and this is the result. A simple little bit of code that will reverse a string. (ScreenShot) |
|
|
|
 |
C# Basic Calculator | C# | Beginner / Dave Bowlin | 3049 since 8/22/2016 5:49:26 PM |
By 1 Users
|
|
C# basic math calculator. My first try at C# programming. Pretty basic, but nice for beginners to learn from this code. (ScreenShot) |
|
|
|
 |
C# Birthday Emails (update) | C# | Beginner / Dave Bowlin | 1023 since 6/3/2019 5:57:58 PM | Unrated
|
|
This program will send out a "happy birthday" or any other greeting that you want via email for the names and dates in the database. This version uses MySQL instead of a local Microsoft SQL server being required. This is an update to the previous Birthday ...(description truncated) (ScreenShot) |
|
|
|
 |
C# Connect to External MySQL DB | C# | Beginner / Dave Bowlin | 1358 since 3/22/2019 8:23:26 PM |
By 1 Users
|
|
Shows how to connect to a web-based / external MySQL database with C#. Add, update, delete records, etc. (ScreenShot) |
|
|
|
 |
C# Creative ways to close a form | C# | Beginner / Dave Bowlin | 913 since 6/19/2019 3:22:26 AM | Unrated
|
|
Shows some simple ways to creatively close a form. Not really sure what was the purpose of this, mostly just bored I think. Maybe someone can get something out of the code. (ScreenShot) |
|
|
|
 |
C# Cut and Paste controls at runtime | C# | Beginner / Dave Bowlin | 962 since 6/14/2019 2:11:02 PM |
By 1 Users
|
|
This small code shows how to cut and paste controls at runtime. For this example, I'm using textboxes and the data they contain, including all its properties. I made this when I needed the ability to move textboxes from one panel to a different one for a ...(description truncated) (ScreenShot) |
|
|
|
 |
C# dialogs examples | C# | Beginner / Dave Bowlin | 772 since 6/14/2019 6:23:03 PM | Unrated
|
|
This small code demonstrates how easy it is to use dialogs and menus used in C#, including: font, color, open, save dialogs, as well as status strip, menu strip, and context menus (right-click). Basics for beginners. (ScreenShot) |
|
|
|
 |
C# drag and drop example | C# | Beginner / Dave Bowlin | 682 since 5/1/2019 2:22:21 PM | Unrated
|
|
Demonstrates how easy it is to support drag and drop for your C# applications. In this example, I use text files and JPG images. Very small code, easy to use. (ScreenShot) |
|
|
|
 |
C# enum example | C# | Beginner / Dave Bowlin | 665 since 5/21/2019 2:50:49 PM | Unrated
|
|
A very simple demonstration of how easy ENUMs can be. To test this code, create a console app, copy and paste it, then run it. |
|
|
|
 |
C# Generating Different Types of Random Numbers | C# | Beginner / Dave Bowlin | 505 since 5/9/2019 2:58:32 PM | Unrated
|
|
Demonstrates how to generate pseudo-random numbers in C#, instead of just the standard int type. (ScreenShot) |
|
|
|
 |
C# Hashtable Example | C# | Beginner / Dave Bowlin | 822 since 6/17/2019 1:38:53 PM | Unrated
|
|
Hashtables are extremely convenient ways of retrieving data with a simple key/value pair. This small code shows how easy it is to use a hashtable. Hashtables would be an excellent choice for referencing indexes and data in a database. Hashtables have a ke ...(description truncated) (ScreenShot) |
|
|
|
 |
C# Image Progress Bar | C# | Beginner / Dave Bowlin | 1047 since 6/6/2019 12:34:49 AM | Unrated
|
|
The standard progressbar control is very bland and boring. Use a picture as your progress indicator instead. Simple code, and a very nice change. Use any picture you want in your home-built progressbar. (ScreenShot) |
|
|
|
 |
C# Prime Numbers | C# | Beginner / Dave Bowlin | 614 since 5/3/2019 3:36:51 PM | Unrated
|
|
Demonstrates how to find prime numbers, or check if a number is prime, with the algorithm explained. (ScreenShot) |
|
|
|
 |
C# ProgressBar Clock | C# | Beginner / Dave Bowlin | 1750 since 10/3/2019 2:05:11 PM | Unrated
|
|
A digital clock using three progress bars and a timer in C#. Based on VB code / idea by Jos Dickmann.
(http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=9199&lngWId=10)
This is the C# version of his idea. *** UPDATED to fix 12-hour logic error ...(description truncated) (ScreenShot) |
|
|
|
 |
C# simple game - 10 to Win | C# | Beginner / Dave Bowlin | 916 since 7/26/2019 7:18:22 PM | Unrated
|
|
A simple little game where you need to click on 10 randomly appearing colored boxes before they disappear. Speed is random. With this simple code, learn how to play sounds and respond to controls as a group. (ScreenShot) |
|
|
|
 |
C# Sizable Calendar | C# | Beginner / Dave Bowlin | 1114 since 6/5/2019 8:27:14 PM | Unrated
|
|
For some reason, the default MonthCalendar control's font in C# doesn't increase the actual calendar font. The resize that is allowed basically shows more months/dates instead of actually increasing the font size of the calendar. With this extremely small ...(description truncated) (ScreenShot) |
|