以高优先级连接Wifi [无Internet]?

时间:2018-01-16 18:40:15

标签: android wifi wlan

我有问题。我开发了一个Android应用程序,它也应该连接到wifi [没有互联网,只是为了控制机器人,网络接口:10.10.0.1]。

我的问题:如果我连接到机器人wifi,Android会阻止连接并连接到我的默认主页wlan。

如果没有问题,我可以更改什么连接到机器人wifi?

我的连接功能:

Dim myValue As Date, retVal As String
retVal = InputBox("Enter current as of date (MM/DD/YY)")

If retVal = vbNullString Then
    Exit Sub
Else
    myValue = CDate(retVal)
End If

Dim dDate As Date
Dim NumberofRows As Long
Dim x As Long

With Worksheets("Transactions")
    NumberofRows = .Cells(.Rows.Count, "C").End(xlUp).row
    For x = 1 To NumberofRows
        If Not .Range("Q" & x) = myValue Then
            If delRng Is Nothing Then
                Set delRng = .Range("Q" & x)
            Else
                Set delRng = Union(delRng, .Range("Q" & x))
            End If
        End If
    Next x
    If Not delRng Is Nothing Then delRng.EntireRow.Delete
End With

0 个答案:

没有答案