Option ExplicitDim x, y As IntegerPrivate Sub cmdComenzar_Click() x = CInt(Rnd() * (9 - 1) + 1)End SubPrivate Sub cmdComparar_Click() txty = y If x > y Then MsgBox " Intente de nuevo el numero es Mayor" If x < y Then MsgBox " Intente de nuevo el numero es Memor" else x = y Then MsgBox "Enhorabuena aceptaste vuelve a jugar" End SubPrivate Sub cmdLimpiar_Click() txty = Empty txty.SetFocusEnd SubPrivate Sub cmdSalir_Click() EndEnd SubPrivate Sub Form_Activate() Randomize cmdLimpiar.Enabled = False cmdComparar.Enabled = FalseEnd SubPrivate Sub txty_Change() cmdLimpiar.Enabled = True cmdComparar.Enabled = TrueEnd Sub