elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Tutorial básico de Quickjs


  Mostrar Mensajes
Páginas: 1 ... 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 [47] 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 ... 128
461  Programación / Programación Visual Basic / Re: Ayuda! en: 6 Diciembre 2010, 01:21 am
.
Eso es vb.net
Te has equivocado de sección, la tuya es esta:
http://foro.elhacker.net/net-b62.0/

DoEvents! :P
462  Media / Juegos y Consolas / Re: Crear server Left 4 Dead [No Steam] en: 5 Diciembre 2010, 14:53 pm
Lo consegui!!! :D
Por fin!  ;-) ;-) ;-) ;-)
No se que paso ahora si me dejo entrar en Garena

Gracias por la ayuda aun asi ;)

DoEvents! :P
463  Media / Juegos y Consolas / Crear server Left 4 Dead [No Steam] en: 4 Diciembre 2010, 17:30 pm
Hola buenas, estoy intentando crear un server para el Left 4 Dead No Steam, he googleado y me he bajado unos parches, ademas ponia que tenia que usar Garena. (Según esto : http://www.taringa.net/posts/juegos/5682254/tutorial-para-jugar-al-left-4-dead-online-y-crear-partidas.html)
Me baje el programa de Garena, me registre, pero dice que es imposible conectar con el servidor...
Si alguien sabe que puede ocurrir o lo ha conseguido de otra manera agradecería su ayuda.

DoEvents! :P
464  Programación / Programación General / Re: [Ehn-Dev 2010] - Votaciones!!! en: 4 Diciembre 2010, 01:04 am
Buena raul! ;-)
Tu proyecto es uno de mis favoritos! ;)
Tambien aprobecho a dar las gracias a todo el mundo que me esta votando, me ha sorprendido la aceptación que está teniendo mi proyecto! :-*
Gracias

DoEvents! :P
465  Programación / Programación Visual Basic / Re: Valium 1.0 [Manda a tu pc a dormir] en: 2 Diciembre 2010, 02:59 am
Es medio cutre usar shutdown.exe, investiga sobre la API ExitWindowsEx asi te entretienes y lo haces mas original :P
Coincido.

Mirate esto: http://goo.gl/iREvo

Pd: A muchos del foro les vendriaa bien un Valium de estos... :silbar: :xD

DoEvents! :P
466  Foros Generales / Foro Libre / Re: 3 años en el foro!! vos cuantos llevas? en: 2 Diciembre 2010, 02:09 am
Registro
Citar
31 Mayo 2009, 21:41
Pero no postee/mire nada hasta :
Citar
2 Febrero 2010, 18:20
Ahi empieza mi vbida en este foro! :D

DoEvents! :P
467  Foros Generales / Foro Libre / Re: Ah 30 días!! Pide un deseo para el 2011. en: 2 Diciembre 2010, 02:04 am
Seguir con mi novia, seguir aprendiendo de todo, sacar buenas notas, que acabe la crisis, quedar en buena posiciona en el concurso de prog. , paz mundial... :xD
Pero sobretodo conservar a mis buenos amigos (como tú Raul ;) )

Les deseo lo mejor a todos! :D

Ya estoy preparando el arbol:

 :laugh: :laugh: :laugh: :laugh:

DoEvents! :P
468  Programación / Programación Visual Basic / Re: [SRC] FrogCheat v1.1 [by Mr. Frog ©] en: 2 Diciembre 2010, 00:42 am
.
Quedo impresionado por la aceptación que esta teniendo, miro la web y... :o
Ya tengo 106 descargas apenas a pasado un dia de postearlo ;-)
Tambien agradezco vuestros comentarios y los votos que me estais dejando en el concurso:
http://foro.elhacker.net/programacion_general/ehndev_2010_votaciones-t312301.0.html

Gracias a todos de verdad. ;)

DoEvents! :P
469  Programación / Programación Visual Basic / Re: Valium 1.0 [Manda a tu pc a dormir] en: 2 Diciembre 2010, 00:35 am
.
Voy a ver el código y comento Elemental !!  :D
Muy bueno el nombre! :laugh: :laugh: :laugh: :laugh:

DoEvents! :P
470  Programación / Programación Visual Basic / Re: Duda Leer Linea por Linea de Un textBox en: 30 Noviembre 2010, 21:43 pm
Yo al menos haria asi:
Código
  1. Option Explicit
  2.  
  3. Rem Añade un TextBox, un CommandButton y un Timer
  4.  
  5. Private sTextBoxLines$()
  6. Private lLimit&
  7. Private lLine&
  8.  
  9. Private Sub Form_Load()
  10.    With Timer1
  11.        .Enabled = False
  12.        .Interval = 1000
  13.    End With
  14.  
  15.    Command1.Caption = "Prueba"
  16.  
  17.    Text1.Text = "Que" & vbCrLf & _
  18.                 "vivan" & vbCrLf & _
  19.                 "las" & vbCrLf & _
  20.                 "ranas"
  21. End Sub
  22.  
  23. Public Function LoadLines(ByVal sText$) As Boolean
  24.    Erase sTextBoxLines$() : lLine& = 0
  25.    sTextBoxLines$() = Split(sText$, vbCrLf)
  26.    lLimit& = UBound(sTextBoxLines$())
  27.    LoadLines = CBool(lLimit&)
  28. End Function
  29.  
  30. Private Sub Timer1_Timer()
  31.    MsgBox sTextBoxLines$(lLine&)
  32.    lLine& = lLine& + 1
  33.    If lLine& > lLimit& Then
  34.        Timer1.Enabled = False
  35.        End
  36.    End If
  37. End Sub
  38.  
  39. Private Sub Command1_Click()
  40.    If LoadLines(Text1.Text) Then
  41.        Timer1.Enabled = True
  42.    End If
  43. End Sub

DoEvents! :P
Páginas: 1 ... 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 [47] 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 ... 128
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines