viernes, 9 de marzo de 2018
Historial de comandos en cmd
>doskey /history
Buscar servidores sql en una red
>osql /L
martes, 6 de marzo de 2018
Eliminar último salto de línea de un string
Dim str As String = getTipoDoc(txtResumen)
If str.EndsWith(vbCrLf) Then
Dim oTrim() As Char = {vbCr, vbLf}
str = str.TrimEnd(oTrim)
End If
fuente
If str.EndsWith(vbCrLf) Then
Dim oTrim() As Char = {vbCr, vbLf}
str = str.TrimEnd(oTrim)
End If
fuente
Suscribirse a:
Entradas (Atom)