HOLA!!!
Gracias Black, Buena idea, modificado.
Si, Sixtoes tu codigo estaba mal y era muy rebuscado.
GRACIAS POR LEER!!!
Gracias Black, Buena idea, modificado.
Si, Sixtoes tu codigo estaba mal y era muy rebuscado.
GRACIAS POR LEER!!!
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úDim Matriz(100) As Long
Private Sub Form_Load()
Dim Min As Long
Dim Max As Long
Call LlenarArrayAleatoriamente(1000) 'Lleno la matriz
For x = 0 To UBound(Matriz) 'Busco el mayor
If Matriz(x) > Max Then Max = Matriz(x)
Next
Min = Max 'Inicializo Min = Max
For x = 0 To UBound(Matriz) 'Busco el minimo
If Matriz(x) < Min Then If Matriz(x) <> 0 Then Min = Matriz(x)
Next
MsgBox "Minimo: " & Min & " Maximo: " & Max, , "Ejemplo para SixToes por 79137913" 'Muestro el resultado
End 'cierro
End Sub
Private Sub LlenarArrayAleatoriamente(MaxInt As Long)
On Error GoTo Err:
For x = 0 To UBound(Matriz)
Randomize Timer 'Hago que sea aleatorio
Matriz(x) = Int(Rnd() * MaxInt) 'Lleno la matriz
Next
Err:
End Sub
Cita de: $Edu$ en 11 Julio 2011, 20:00 PM[/Rustic Mode]
Hacer
Abrir archivo de texto desde codigo claro xD
Leer linea de archivo de texto
Dividir entre " " y poner los datos en textbox o donde ibas a poner
Hasta que no haya mas datos, es decir, hasta que sea el Fin del archivo
Private Function Existe(Archivo As String) As Integer
Existe = Len(Dir$(Archivo))
If Existe Then
'--------^ ACA ESTA EL ERROR PONE "IF EXISTE > 0 THEN"
Label1 = Archivo & " Si existe"
Else
Label1 = Archivo & " No existe"
End If
'ACA AGREGA ESTO:
IF EXISTE > 0 THEN EXISTE = 1
End Function
Private Function Existe(Archivo As String) As Boolean
If Len(Dir(Archivo)) > 0 Then Existe = True
End Function