Parse Simple XML C#

123456789101112131415string s @="<?xml version=""1.0"" encoding=""utf-8"" ?><Parent><Plate>ABC123</Plate></Parent>"; XmlDocument x = new XmlDocument(); x.LoadXml(s); XmlNode rootnode = x["Parent"]; if ((rootnode != null) && (rootnode.HasChildNodes)) {      XmlNodeList nodes = rootnode.ChildNodes;   …

VS2005 Build Warning “libbmt.pdb was not found”

Build Error in Visual Studio 2005: 123LIBCMT.lib(gshandler.obj) : warning LNK4099: PDB ‘libbmt.pdb’ was not found with  ‘C:\Program Files\Microsoft Visual Studio 8\VC\ce\lib\ARMV4I\LIBCMT.lib’ or at ‘c:\Source\AIMS Ticketer 4\Release\libbmt.pdb’; linking object as if …

Cisco ADSM Java Not Installed Error

When getting the error: Java Runtime Environment is not installed on this machine 1). Locate the asdm50-install.msi file and open it with 7zip 2). Extract all the jar files to …

MS SQL Server Determine Tables without Rows

123456789101112131415161718192021222324252627SELECT     t.NAME AS TableName,     i.name as indexName,     p.[Rows],     sum(a.total_pages) as TotalPages,     sum(a.used_pages) as UsedPages,     sum(a.data_pages) as DataPages,   …

Virtual Box VM Clone Error

When getting the error: 1A hard disk with UUID {55b773b8-cbcb-42ea-9a44-1368b30ed823} or with the same properties (‘D:\VM\VirtualBox\XP SP3\XP SP3.vdi’) is already registered. The error can be resolved by using the utility: …