-
Recent Posts
Categories
Meta
Tag Archives: c#
Copy DataGridView to Clipboard
Following on from exporting a DataGridView to a CSV file someone asked this week if it’s possible to copy the contents to the clipboard for pasting into another application. The code below copies the content of the passed DataGridView to … Continue reading
Dynamic CSS files in ASP.net Master Page using C#
I have a reporting portal that serves up SSRS (SQL Server Reporting Services) reports to users. The users are from different organisations, indicated by a user group. I needed to have the front end personalised for each different organisation. The … Continue reading
Posted in Programming
Tagged asp.net, c#, css, dynamic, master page, programming, web
Leave a comment
Shuffle an Array in C#
As part of a basic guessing game I wanted to be able to shuffle an array of n chars into a random order. The method I decided to use was the following. Create a loop to iterate n times (where … Continue reading
Loading Data into a DataReader and Looping Through Records OLEDB / C#
Just a quick example of loading data into a data reader using C#. My data source is MS SQL Server in this case, although you would just need the correct OLEDB connection string to use any other data source. Couple … Continue reading
Image Slideshow on Windows Form C# with Timer Control
Quick example of how to display an image control that loops through a folder of images. Firstly drop a timer control onto your form (name: tmrNextImage), set the Interval to 1000 milliseconds (1 second) and set enabled to true. Next … Continue reading
Find all Subdirectories from a given path using C# – With Error Handler
In my earlier post () I showed how you can iterate through folders and add the folder names to a list (lstDirs). The problem with this code was that if you encountered a folder you didn’t have access to it … Continue reading
Null Dates in SQL Stored Procedure called from C# – Conversion Error DateTime2 DateTime
One issue with calling stored procedures from C# is with null date parameters. If you try to pass an unassigned DateTime type to the parameter you will receive an error regarding conversion of DateTime2 to DateTime data type. One way … Continue reading
Posted in Programming
Tagged c sharp, c#, datetime, null, parameters, programming, stored procedure
1 Comment
Assign Event to Multiple Controls, Windows forms and C#
Lets say that you want the same event to be triggered by multiple controls. You don’t want to have to rewrite the code for all the controls. Here we’re going to use four buttons with one shared event that shows … Continue reading
Posted in Programming
Tagged c sharp, c#, controls, events, programming, windows forms
Leave a comment
Find all Subdirectories from a given path using C#
To load the subdirectories for a given file path. We simply need to use the GetDirectories method of DirectoryInfo (this example loads the results into a listbox lstDirs) E.g. N.B. sPath needs to be a full path including drive letter … Continue reading