Monday, July 30, 2007
VS.PHP
VS.Php is a Php integrated development environment based on Visual Studio. With VS.Php you can design, develop, debug and deploy Php applications within the Visual Studio IDE. VS.Php key features are around providing rich Php and Smarty editing capabilities as well as its ability to debug Php scripts locally as well as remotely.
More.....
Wednesday, July 25, 2007
XmlTextWriter Class Sample
XmlTextWriter xmlWriter = new XmlTextWriter("c:\\menus.xml", null);
xmlWriter.Formatting = Formatting.Indented;
xmlWriter.WriteStartElement("menus");
for (int i = 0; i < 10; i++)
{
xmlWriter.WriteStartElement("menu");
xmlWriter.WriteAttributeString("id", "000000-00000-00000-0000");
xmlWriter.WriteAttributeString("name", "coffee");
xmlWriter.WriteFullEndElement();
}
xmlWriter.Close();
xmlWriter.Formatting = Formatting.Indented;
xmlWriter.WriteStartElement("menus");
for (int i = 0; i < 10; i++)
{
xmlWriter.WriteStartElement("menu");
xmlWriter.WriteAttributeString("id", "000000-00000-00000-0000");
xmlWriter.WriteAttributeString("name", "coffee");
xmlWriter.WriteFullEndElement();
}
xmlWriter.Close();
Monday, July 16, 2007
Visual Studio 2008, Windows Server 2008 and SQL Server 2008
SQL Server 2008 (Click Here for more)
Videos
Visual Studio 2008 (Click Here for more)
Windows Server 2008 (Click Here for more)
Videos
Visual Studio 2008 (Click Here for more)
Windows Server 2008 (Click Here for more)
Thursday, July 12, 2007
Tuesday, July 10, 2007
Tuesday, July 03, 2007
Convert CString to LPBYTE
CString str = "la-la-la";
LPBYTE pByte = new BYTE[str.GetLength() + 1];
memcpy(pByte, (VOID*)LPCTSTR(str), str.GetLength());
LPBYTE pByte = new BYTE[str.GetLength() + 1];
memcpy(pByte, (VOID*)LPCTSTR(str), str.GetLength());
Monday, July 02, 2007
Sunday, July 01, 2007
Subscribe to:
Posts (Atom)