liangxm 发表于 2009-4-28 17:11:51

请问!(非)怎么表示?

本帖最后由 liangxm 于 2009-4-28 17:15 编辑

比如
If !ProcessExists("ttt.exe") Then
                exit
EndIf

但好像!ProcessExists("ttt.exe")是不对的,不知道该怎么表示呢?

qqq

liangxm 发表于 2009-4-28 17:13:27

哦,难道用not。。。

thesnow 发表于 2009-4-28 17:26:13

If not ProcessExists("ttt.exe") Then
                exit
EndIf
If ProcessExists("ttt.exe") <> 1 Then
                exit
EndIf

If ProcessExists("ttt.exe") <> true Then
                exit
EndIf

页: [1]
查看完整版本: 请问!(非)怎么表示?