sábado, 16 de julio de 2011

CodeLobster - Download free portable PHP IDE with support Drupal, Smarty, WordPress, Joomla, JQuery, CodeIgniter, HTML, CSS, JavaScript, CakePHP, Facebook, Symfony, Yii

CodeLobster - Download free portable PHP IDE with support Drupal, Smarty, WordPress, Joomla, JQuery, CodeIgniter, HTML, CSS, JavaScript, CakePHP, Facebook, Symfony, Yii

Quick PHP Framework | Event-driven, Component-based, Asp.net-like

Quick PHP Framework | Event-driven, Component-based, Asp.net-like

F-engine welcome page

F-engine welcome page

¿Cómo hacer un login de usuarios con el framework php Codeigniter?

¿Cómo hacer un login de usuarios con el framework php Codeigniter?

Open Blog Demo - Kick-ass Blog application built using the CodeIgniter PHP Framework

Open Blog Demo - Kick-ass Blog application built using the CodeIgniter PHP Framework

jueves, 14 de julio de 2011

Crear una conexión JDBC « Linux, Java y programación

Crear una conexión JDBC « Linux, Java y programación

Programación en Java « Linux, Java y programación

Programación en Java « Linux, Java y programación

Parámetros opcionales en C# 4.0 | Programando a medianoche

Parámetros opcionales en C# 4.0 | Programando a medianoche

Programando a medianoche

Programando a medianoche

Curso de C#: Sexta entrega

Curso de C#: Sexta entrega

Subconsultas - Tutorial SQL

Subconsultas - Tutorial SQL: "SELECT CO_CLIENTE, NOMBRE, MARCA, MODDELO
FROM ALQUILERES
WHERE CO_CLIENTE = 1
AND FECHA_ALQUILER = (SELECT MAX(FECHA_ALQUILER)
FROM ALQUILERES
WHERE CO_CLIENTE = 1)"

SQL TOP Clause

SQL TOP Clause: "SELECT TOP 50 PERCENT * FROM Persons"

101 LINQ Samples

101 LINQ Samples

viernes, 1 de julio de 2011

Expresiones regulares

Expresiones regulares

Control.Validating Event (System.Windows.Forms)

Control.Validating Event (System.Windows.Forms)

VB Helper: HowTo: Use validation events in VB .NET

VB Helper: HowTo: Use validation events in VB .NET: "Private Sub txtZip_Validating(ByVal sender As Object, ByVal _
e As System.ComponentModel.CancelEventArgs) Handles _
txtZip.Validating
' See if the text is 5 digits.
If Not (txtZip.Text Like '#####') Then
' The Zip code is invalid.
' Cancel the event moving off of the control.
e.Cancel = True

' Select the offending text.
txtZip.Select(0, txtZip.Text.Length)

' Give the ErrorProvider the error message to
' display.
ErrorProvider1.SetError(txtZip, 'Invalid ZIP code ' & _
'format')
End If
End Sub

' The ZIP code is valid. Clear the error.
Private Sub txtZip_Validated(ByVal sender As Object, ByVal _
e As System.EventArgs) Handles txtZip.Validated
ErrorProvider1.SetError(txtZip, '')
End Sub"

VB Helper: HowTo: Use validation events in VB .NET

VB Helper: HowTo: Use validation events in VB .NET