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

 

 


Tema destacado: Guía actualizada para evitar que un ransomware ataque tu empresa


  Mostrar Mensajes
Páginas: 1 ... 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 [42] 43 44 45 46 47 48 49 50
411  Programación / Programación Visual Basic / Re: [HELP] Invoke API's en: 24 Noviembre 2012, 17:51 pm
I did try mane but the thing is that it would take me too much time to debug this as I would need to test each param by each param which would be too long so I wondered if there was someone open to help but you doesn't seem to!

Its OK man if you don't wanna help just leave the thread :)

A forum is to ask help no? I'm just asking for some help nothing more...

exactly to ask no to ask for my stupid english Knowledge can diference between those words  :silbar:

I wanna help but don't want make your whole work.

regards
412  Programación / Programación Visual Basic / Re: [HELP] Invoke API's en: 24 Noviembre 2012, 14:59 pm
I think you are so lazy, You At least should come here with some doubt. But you always are here as if the people here work for you.  :silbar:

can someone make me a FUD,
can someone make my work for me, then go to my house and help me with my wife,
maybe someone can bring me money.
maybe can go to my work for me.
also make my homework.

413  Programación / Programación General / Re: [Delphi] Fake MSN 0.2 en: 22 Noviembre 2012, 20:13 pm
Deberías hacerlo para skype ahora que pasara a la historia.

esta muy guapo
414  Seguridad Informática / Seguridad / Re: Voces aleatorias en mi PC en inglés en: 21 Noviembre 2012, 13:56 pm
O postea uno de OTL

415  Programación / Programación Visual Basic / Re: ¿Cambiar el Color de un Item al agregarlo? en: 21 Noviembre 2012, 13:40 pm
Es así.

Código
  1. ListView1.ListItems(1).ForeColor = vbRed


saludos

EDITO:

un ejemplo mas claro para que no tengas dudas.

Código
  1. Private Sub Form_Load()
  2. Dim i As Integer
  3. Dim li As ListItem
  4.  
  5. ListView1.View = lvwReport
  6.  
  7. ListView1.ColumnHeaders.Add Text:="hola", Width:=1000
  8.  
  9. For i = 1 To 8
  10. Set li = ListView1.ListItems.Add(Text:="Item " & i)
  11. Next i
  12.  
  13. ListView1.ListItems(1).ForeColor = vbYellow
  14. ListView1.ListItems(2).ForeColor = vbBlue
  15. ListView1.ListItems(3).ForeColor = vbRed
  16. ListView1.ListItems(4).ForeColor = vbGreen
  17. ListView1.ListItems(5).ForeColor = vbCyan
  18. ListView1.ListItems(6).ForeColor = vbWhite
  19. ListView1.ListItems(7).ForeColor = vbBlack
  20. ListView1.ListItems(8).ForeColor = vbMagenta
  21. End Sub
  22.  
  23.  
  24.  

saludos
416  Programación / ASM / Re: ¿IDE Rad ASM funciona en windows 8 ? en: 18 Noviembre 2012, 14:24 pm
Pues creo que debería funcionar, si funciona en W7, no hay mucha diferencia.
417  Programación / .NET (C#, VB.NET, ASP) / Re: [VS] ¿clonar evento para varios elementos? ¿FOR? en: 18 Noviembre 2012, 13:49 pm
Si pones tus checkboxs en un groupbox puedes hacer esto.

Código
  1. Dim ChkBox As CheckBox = Nothing
  2.  
  3.        For Each xObject As Object In Me.GroupBox1.Controls
  4.            If TypeOf xObject Is CheckBox Then
  5.                ChkBox = xObject
  6.                ChkBox.Checked = True
  7.            End If
  8.        Next


creo que a eso te refieres.

y sin Groupbox así:

Código
  1. For Each ctrl As Control In Me.Controls
  2.  
  3.            If TypeOf ctrl Is CheckBox Then
  4.                DirectCast(ctrl, CheckBox).CheckState = CheckState.Checked
  5.            End If
  6.  
  7.        Next

saludos.
418  Programación / Scripting / Re: [Python] Qué número de los introducidos es el más grande...? en: 18 Noviembre 2012, 13:34 pm
Yo pense algo asi aunque no se si funcione :S  :rolleyes:

Código
  1. ar = []
  2. num=''
  3.  
  4. while (num!=0):
  5. num = int(input("Introduce un numero: "))
  6. ar.append(num)
  7.  
  8. r = max(ar)
  9. print ('Maximo: ' ,r)
  10.  
  11.  
  12.  

saludos

419  Programación / Scripting / Re: [Python] Qué número de los introducidos es el más grande...? en: 18 Noviembre 2012, 13:21 pm
No se nada de python. pero podrias ir agregando los valores a un array luego usas max y listo obtienes el valor máximo "mas alto".

420  Seguridad Informática / Análisis y Diseño de Malware / Re: [?] Indetectar Stub + Dudas en: 18 Noviembre 2012, 12:57 pm
@Danyfirex que penosidad de código.



si yo se algo, muy tonto  :-\ pero bueeeee.

saludos mDrinky.
Páginas: 1 ... 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 [42] 43 44 45 46 47 48 49 50
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines