vb if語句求教

2022-06-25 04:21:50 字數 657 閱讀 3983

1樓:匿名使用者

if not (pwd1.text<>0) thenmsgbox"your information is not full"

elseif pwd.text<>pwd1.text thenmsgbox"different"

else

...end if

2樓:匿名使用者

private subw() 』要呼叫的過程dim user as string

dim pwd as string

dim pwd_1 as string '習慣性用下劃線if user = "" or pwd = "" or pwd_1 = "" then

msgbox "輸入資訊不完整!", , "提示"

else

if pwd <> pwd_1 then

msgbox "兩次密碼不一樣", , "提示"

end if

end if

end sub

3樓:

if user = "" or pwd = "" or pwd1 = "" then msgbox "您輸入的資訊不完整"

if pwd <> pwd1 then msgbox "您輸入密碼不一樣"

求教EXCEL中IF語句的問題,求教一個EXCEL中IF語句的問題

if type e8 2,e8,if e8 94,a if e8 82,b if e8 77,c if e8 72,d if e8 0,e e8 改了一下最後的 e 的判斷條件。這麼理解吧,文字其實作為數字來看待,它是 0的。前面type的判斷是為了判斷e8是不是文字。因為在excel中 邏輯值大於...

求教VBFOR迴圈語句中step的意思

是的,for i 1 to 10 step 2 表示從1開始迴圈,每次變數加2 i 1,x 5 1 5 5 i 3,x 5 3 5 5 i 5,x 5 5 5 6 i 7,x 6 7 5 7 i 9,x 7 9 5 8 每次迴圈你的計數器,也就是i加2,如果不寫 保持預設 就是隻加1 step是步階...

求教一條sql語句該如何寫,求教個SQL語句寫法,關於去top10的選擇

select a.id,b.name,a.id2,c.namefrom 表1 a,表2 b,表2 c where a.id b.id and a.id2 c.id 語句 select table1.id,a1.姓名,table1.id1,a2.姓名 from table1 inner join ta...