This is an update to a previous post. In another post on this site, it…
Category: C#
Script Storage
Update here: Script Storage Update Throughout my career, my scripts have been a vital piece…
C# Database Connections and Queries
Create connection string:SqlConnection conn = new SqlConnection(“Data Source=DATASOURCE\\\\SQLEXPRESS;Initial Catalog=DATABASE_NAME;Integrated Security=True”); try { conn.Open(); SqlCommand sql…
Silverlight Treeview – Using C#
On your design page: Margin=”76,400,0,328″ Width=”300″> In the C# code: private void populateSchemaTree() { //…