Visual Studio error, debugger can’t start Dec 22, 2008 “The components for the 64-bit debugger are not registered. Please repair your Visual Studio 2008 Remote Debugger installation via ‘Add or Remove Programs’ in Control Panel” ...
WiX Installer Update Dec 20, 2008 One thing that has caused me quite a few problems with my WiX installer was optionally displaying a dialog to enter SQL information when the database is installed. ...
WiX: First impressions. Dec 16, 2008 After working with WiX today, I realized that it’s not perfect. But, it isn’t horrible. Maybe my issues are from following “tutorials” that are written for WiX 2. ...
Windows Installer Dilemma Dec 14, 2008 My current task is to create an installer. The dilemma: Visual Studio doesn’t provide a very robust Setup and Deployment project. ...
.NET development Dec 13, 2008 I consider myself a .NET developer. I don’t consider myself good at it. There are always things to learn, and new facets of development that I didn’t realize existed. ...
Computer Hardware & Software Jul 26, 2008 Semester: Summer 08 Instructor: Coss/Saunders Class: INFO 300 Assignment: Computer Hardware & Software ...
Systems Analysis & Design Apr 13, 2008 Semester: Summer 2008 Instructor: Wynne Class: INFO 361 Assignment: Systems Analysis & Design ...
Intermediate Programming Apr 12, 2008 Semester: Spring 08 Instructor: Babb Class: INFO 350 Assignment: Intermediate Programming Members: Al-Qahtani ...
C# Insertion Sorting alrgorithm. Feb 14, 2008 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace InsertionSorting { class Program { static void Main(string[] args) { // int[] A = {5, 2, 4, 6, 1, 3}; int initializer = 100000; int[] A = new int[initializer]; for (int my = 0; my < A. ...