Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/06/2009, 22:28
hackdie
 
Fecha de Ingreso: junio-2009
Mensajes: 2
Antigüedad: 14 años, 11 meses
Puntos: 0
Respuesta: numeros aleatorios no repetidos

Código PHP:
Public Class Form1
    
Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgsHandles Button1.Click
        Dim x
concont As Integer
        Dim matriz
(4) As Integer
        
For cont 0 To 4
            
For con 1 To 10
                x 
100 Rnd()

                
matriz(cont) = x
            Next
            Me
.TextBox1.Text matriz(0)
            
Me.TextBox2.Text matriz(1)
            
Me.TextBox3.Text matriz(2)
            
Me.TextBox4.Text matriz(3)
            
Me.TextBox5.Text matriz(4)
        
Next
    End Sub
End 
Class