Al Programming
Free source code programming in C#, VB.Net, Java, SQL
Wednesday, March 18, 2015
Remove database SQL Server with sp_dbremove
›
SQL Server > System Stored Procedures > sp_dbremove Removes a database. Example EXEC sp_dbremove HR;
Thursday, February 19, 2015
Write, read XML to memory stream using XmlWriter and XmlReader C#
›
C# > XML > XmlWriter XmlWriter writes XML data to a file, stream,, text reader, or string. It is fast, noncached and forwar...
Monday, February 16, 2015
Select DataTable rows with where LINQ C#
›
C# > LINQ > Where Where filters a sequence of values based on a predicate. Example Select DataTable rows with where. ...
Wednesday, February 11, 2015
Create new directory with DirectoryInfo C#
›
C# > Files > DirectoryInfo Class Use this class for create, move and enumerating directories and subdirectories. Example Creat...
Monday, February 2, 2015
Get Directory Size C#
›
C# > IO > FileInfo > Length Get the size of the file in bytes. Example Get Directory Size C# public long Di...
Monday, January 19, 2015
C# Capture Screen to PictureBox
›
C# > Drawing > Capture Screen Bitmap printscreen = new Bitmap ( Screen .PrimaryScreen.Bounds.Width, Screen .PrimaryScreen.Bound...
XmlDocument C# Example
›
C# > XML > XmlDocument Represents an XML document. Example XmlDocument doc = new XmlDocument (); doc.Load(xmlfile); ...
‹
›
Home
View web version