Include schema information in a DataSet’s DiffGram
In the .NET Framework, the DataSet’s WriteXml method when used to create a DiffGram does not provide the capability to include schema information along with the data. This is more
In the .NET Framework, the DataSet’s WriteXml method when used to create a DiffGram does not provide the capability to include schema information along with the data. This is more
In the XmlNode class, that is the class that provides node functionality in an XMLDOM representation of an XML document, the SelectNodes (and the ancillary SelectSingleNode) method exploits the XPath
Suppose that your ASP.NET pages display contents read from database fields. Suppose also that some of those fields may contain URLs or email addresses. A typical example is when you
If you use VB6 to write COM programs that raise errors, it seems impossible to continue after hitting one of them. However, the (almost undocumented) commands ALT+F8 and ALT+F5 let
Use this function to generate random strings that abide by certain criteria. It
You can change database passwords from within VB to control more of your application
Many VB projects need a database connection string. But there
IF statements can become quite long when you’re testing for multiple values. Using the IN expression can make them more readable.So, instead of typing: IF (@testvar = 1 or @testvar
Always use an enum instead of defines and always close the list with an additional count. This makes life simpler and helps the compiler.Instead of defines: #define TypeA 0#define TypeB