Esto no es un chiste textual pero me ha hecho mucha gracia xDDD
(Fox): Hey... pssst pssst...
(Fox): Hey... pssst pssst...
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú70341602815107;C:\archivo1
48242686216352;C:\archivo2
65562921929452;C:\archivo3
240062826615990;C:\archivo4
11032263219974;C:\archivo5
etc...
11032263219974;C:\archivo5
240062826615990;C:\archivo4
48242686216352;C:\archivo2
65562921929452;C:\archivo3
70341602815107;C:\archivo1
etc...
C:\archivo5
C:\archivo4
C:\archivo2
C:\archivo3
C:\archivo1
CitarParse(Type, String, Boolean)
Private Enum Test
A
a
End Enum
Private Function Enum_Parser(Of T)(Value As Object) As T
Try
Return [Enum].Parse(GetType(T), Value, True)
Catch ex As ArgumentException
Throw New Exception("Value not found")
Catch ex As Exception
Throw New Exception(String.Format("{0}: {1}}", ex.Message, ex.StackTrace))
End Try
End Function
Cita de: @drvymonkey en 20 Octubre 2013, 17:39 PM
(...) freelancer.com yo no lo recomiendo para nada. (...)
Si quieres buscar algo puedes visitar los enlaces (...) http://foro.elhacker.net/dudas_generales/cual_es_la_mejor_forma_de_ganar_dinero_en_internet_en_la_actualidad-t394849.15.html
#Region " [ListBox] Select item without jump "
' [ListBox] Select item without jump
'
' // By Elektro H@cker
'
' Examples :
'
' Select_Item_Without_Jump(ListBox1, 50, ListBoxItemSelected.Select)
'
' For x As Integer = 0 To ListBox1.Items.Count - 1
' Select_Item_Without_Jump(ListBox1, x, ListBoxItemSelected.Select)
' Next
Public Enum ListBoxItemSelected
[Select] = 1
[Unselect] = 0
End Enum
Public Shared Sub Select_Item_Without_Jump(lb As ListBox, index As Integer, selected As ListBoxItemSelected)
Dim i As Integer = lb.TopIndex ' Store the selected item index
lb.BeginUpdate() ' Disable drawing on control
lb.SetSelected(index, selected) ' Select the item
lb.TopIndex = i ' Jump to the previous selected item
lb.EndUpdate() ' Eenable drawing
End Sub
#End Region
#Region " Enable-Disable Drawing on Control"
' Enable-Disable Drawing on Control
'
' // By Elektro H@cker
'
' Examples :
'
' To disable drawing:
' Control_Drawing(ListBox1, DrawingEnabled.Disable)
'
' To enable drawing:
' Control_Drawing(ListBox1, DrawingEnabled.Enable)
<System.Runtime.InteropServices.DllImport("user32.dll", _
EntryPoint:="LockWindowUpdate", SetLastError:=True, CharSet:=System.Runtime.InteropServices.CharSet.Auto)> _
Public Shared Function LockWindow(Handle As IntPtr) As IntPtr
End Function
Private Enum DrawingEnabled
Enable
Disable
End Enum
Private Sub Control_Drawing(ByVal ctrl As Control, ByVal DrawingEnabled As DrawingEnabled)
Select Case DrawingEnabled
Case DrawingEnabled.Enable
LockWindow(ctrl.Handle)
LockWindow(IntPtr.Zero)
Case DrawingEnabled.Disable
LockWindow(ctrl.Handle)
End Select
End Sub
#End Region
Cita de: Oblivi0n en 19 Octubre 2013, 13:29 PM
Me encanta el criterio de " no me gusta a mi y generalizo y digo que es una ***** " . Llevo un par de años (casi 3) con Windows 8 y cada vez que tengo que usar el menu de Windows 7 me parece mucho peor. Y en Windows 8.1 las mejoras son sustanciales.
#Region " Read TextFile Line Function "
' [ Read TextFile Line Function ]
'
' Examples :
'
' MsgBox(Read_TextFile_Line("C:\File.txt", 1))
' Dim str As String = Read_TextFile_Line("C:\File.txt", 3)
Private Function Read_TextFile_Line(ByVal File As String, ByVal Line_Number As Long) As String
Dim Lines() As String = {String.Empty}
Dim Line_Length As Long = 0
Try
Lines = IO.File.ReadAllLines(File)
Line_Length = Lines.LongLength - 1
Return Lines(Line_Number - 1)
Catch ex As IO.FileNotFoundException
MessageBox.Show(String.Format("File not found: ""{0}""", _
File), _
Nothing, _
MessageBoxButtons.OK, _
MessageBoxIcon.Error)
Catch ex As IndexOutOfRangeException
MessageBox.Show(String.Format("Attempted to read line {0}, but ""{1}"" has {2} lines.", _
Line_Number, _
File, _
Line_Length + 1), _
Nothing, _
MessageBoxButtons.OK, _
MessageBoxIcon.Error)
Catch ex As Exception
Throw New Exception(String.Format("{0}: {1}", _
ex.Message, _
ex.StackTrace))
Finally
Lines = Nothing
Line_Length = Nothing
End Try
Return Nothing
End Function
#End Region
Sub Main()
Dim str = <a><![CDATA[<param key="CATEGORY" fmt="utf8" max_len="4">SD</param>]]></a>.Value
Dim Value As String = _
System.Text.RegularExpressions.Regex.Match(str, "CATEGORY.+>(.*)<") _
.Groups(1).Value
Console.WriteLine(Value)
End Sub