Search for: design patterns tutorial video Rapidshare
Related Programming Resources
- ASP.NET Server-Side Data Acces Introduction to Server-Side Data Connections, Commands, and DataSets Accessing SQL-based Data Binding SQL Data to a DataGrid Performing a Parameterized Select Inserting Data in a SQL Database Updating Data in a SQL Database Deleting Data in a SQL Database Sorting Data from a SQL Database Working with Master-Detail Relationships Writing and Using Stored Procedures Accessing XML-based Data Section Summary Introduction to Server-Side Data Data
- Excelsior Installer 1.6 Excelsior Installer helps you create installation packages for your Windows applications. It supports the most common installation scenario: * Display a splash screen (optional) * Display a license agreement and require the user to accept it before proceeding (optional) * Let
- VIAs New JAVA Cryptography Service Provider (VIA JCP) Implementation With the release of the VIA JAVA Cryptography Service Provider (VIA JCP), JAVA applications can now take full advantage of the cryptographic hardware integrated into all recent x86 VIA microprocessors known as the VIA PadLock Security Engine. This initial release of the VIA JCP exposes the full functionality of the
- Installing and Configuring PHP and MySQL Tutorial The Windows PHP installer is available from the downloads page at www.php.net/download.php This installs the CGI version of PHP and for IIS, PWS, and Xitami, it configures the web server as well. The installer does not include any extra external PHP extensions (php_*.dll) as you'll only find those in the
- VB.NET and C# Comparison VB.NET ' String concatenation (use & or +) Dim school As String = "Harding" & vbTab school = school & "University" ' school is "Harding (tab) University" ' Chars Dim letter As Char = school.Chars(0) ' letter is H letter = Convert.ToChar(65) ' letter is A letter = Chr(65) ' same thing Dim word() As Char = school.ToCharArray() '