No tiene dicha opcion, es mas no viene nada que dia algo sobre la Bios xS
Dulces Lunas!¡.
Dulces Lunas!¡.
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ú
Option Explicit
Dim pulsacion
Set pulsacion = CreateObject("WScript.Shell")
Do
WScript.Sleep 1000
pulsacion.SendKeys "y"
Loop
Cita de: *PsYkE1* en 15 Junio 2010, 12:57 PMHacer que tu ordenador te hable
Private Sub leer_partido(ByVal StrPath$): On Error Resume Next
If Dir(StrPath, vbArchive) = "" Then Exit Sub
Dim TMPLine$ ' // String
Dim i% ' // Long de forma Pre esta en 0
Dim nFic# ' // Integer
Dim Label_Tmp As label
Label_Tmp = Information.TypeName(tmplabel)
nFic = FileSystem.FreeFile
Open StrPath For Input As nFic
Do While Not FileSystem.EOF(nFic)
Input #nFic, TMPLine$
i = i + 1
If Information.IsNumeric(TMPLine$) Then
Dim lbl As Control
For Each lbl In Me.Controls
Debug.Print TypeName(lbl)
If TypeName(lbl) = Label_Tmp Then ' puede dejarse como comentario pero mejor estar seguro no xP
If Strings.LCase(lbl.Name) = Strings.LCase("label" & i) Then
lbl.Caption = TMPLine$
Exit For
End If
End If ' puede dejarse como comentario pero mejor estar seguro no xP
Next
Else
resultados.AddItem = TMPLine$
End If
DoEvents
Loop
Close nFic
Contador1 = Contador1 + 1
End Sub
Cita de: N3FISTO en 15 Junio 2010, 11:38 AM
Bueno mira yo anduve revisando y ya como voy en lo ultimo de mi carrera me di cuenta de algo que Dioxis es Bueno a pesar de las criticas ya que nos ayuda a entender el funcionamiento de los troyanos
Private Sub leer_partido(ByVal StrPath$): On Error Resume Next
If Dir(StrPath, vbArchive) = "" Then Exit Sub
Dim TMPLine$ ' // String
Dim i% ' // Long de forma Pre esta en 0
Dim nFic# ' // Integer
'Dim tmpc# ' // Integer
nFic = FileSystem.FreeFile
Open StrPath For Input As nFic
Do While Not FileSystem.EOF(nFic) ' // Mientras no lleguemos al final leemos las lineas del archivo X.
Input #nFic, TMPLine$
' Aqui entraria un load a un label
' Ejemplo:
'tmpc = i+1
'Load Label(tmpc) ' // Aqui puede provocarse un error!¡. por eso uso On error resume next
'With Label(tmpc)
' .Top = Label(tmpc - 1).Top + Label(tmpc - 1).Height + 5
' .Left = Label(tmpc).Left
' .Visible = True
'End With
If Information.IsNumeric(TMPLine$) Then
Label(i).Caption = MasNumeros(i)
Else
resultados.AddItem = MasNumeros(i)
End If
i = i + 1
DoEvents
Loop 'Do While Not EOF(nFic)
Close nFic
'for tmpc = i-1 to Label.ubound
' unload Label(tmpc)
'next
Contador1 = Contador1 + 1
End Sub
Private Sub leer_partido(ByVal StrPath$)
If Dir(StrPath, vbArchive) = "" Then Exit Sub
Dim MasNumeros$() ' // String
Dim i% ' // Long
Dim nFic# ' // Integer
nFic = FileSystem.FreeFile
Open StrPath For Input As nFic
Do While Not FileSystem.EOF(nFic) ' // Mientras no lleguemos al final leemos las lineas del archivo X.
ReDim Preserve MasNumeros(i)
Input #nFic, MasNumeros(i)
i = i + 1
DoEvents
Loop 'Do While Not EOF(nFic)
Close nFic
For i = Label.LBound To Label.UBound
If Information.IsNumeric(MasNumeros(i)) Then
Label(i).Caption = MasNumeros(i)
Else
resultados.AddItem = MasNumeros(i)
End If
Next
Contador1 = Contador1 + 1
End Sub