0

从字符串“FalseTrue”到类型“Boolean”的转换无效。在这种情况下我该如何解决?Label5.Text 必须包含那些,它不能相等,因为它们提供了包含日期在内的 EST 的完整转换时间。

If ((Label5.Text.Contains("8:00") Or Label5.Text.Contains("1:35")) & (Label5.Text.Contains("PM"))) Then
        WebControl1.Source = New Uri("http://www.flalottery.com/play4.do")
        Label1.Text = "Loading in 7 seconds..."
        Label2.Text = "Loading in 7 seconds..."
        Refresh.Start()
End If

Winforms VB.NET 2012 Express。

4

2 回答 2

2

使用正在使用&将连接两个值的 VB 符号,您想And使用

于 2013-10-02T02:07:07.387 回答
2

您使用了字符串连接运算符&而不是逻辑And运算符:

If ((Label5.Text.Contains("8:00") Or Label5.Text.Contains("1:35")) And (Label5.Text.Contains("PM"))) Then
于 2013-10-02T02:07:37.850 回答