VB 怎麼判斷游標處在某個text控制元件上

2022-04-26 22:29:19 字數 744 閱讀 2178

1樓:aspnet初探

使用文字框的gotfocus事件

假設你的窗體上有兩個文字框 名字為 text1 和 text2下面的**就可以判斷

private sub text1_gotfocus()msgbox "游標在text1"

end sub

private sub text2_gotfocus()msgbox "游標在text2"

end sub

2樓:乖

private sub form_dblclick()dim x as textbox

for each x in form1

if form1.activecontrol is x thenx.setfocus

end if

next

end sub

3樓:桐珹

text.setfocus()

4樓:匿名使用者

用form的activecontrol 屬性,如下面**:

private sub form_dblclick()if form1.activecontrol is text1 then

text2.setfocus

elseif form1.activecontrol is text2 then

text1.setfocus

end if

end sub

vb如何判斷多個變數都不為空,VB如何判斷一個變數是不是空值

1 vb6判斷資料庫欄位bai為du空值的方法是 if isnull x1 then 2 vb6判斷zhi字串是空串的dao方法是 if x2 then 3 強調版一下x1在vb6下必須是varint變數,才能裝權入資料庫的空值null。比如 string str str變數 if str 為空 或...

VB中得為空判斷,VB 中得為空判斷

isnothing 用於判斷某個物件是否尚未賦值。例如 dim 物件 as object,此時 isnothing 物件 true。dbnull 指示 object 缺少的或不存在的資料。dbnull 與 nothing 不同,後者指示變數尚未初始化。dbnull 也與零長度字串不同 零長度字串有時...

請教在vb中如何判斷null值,vb上如何判斷空值

哈哈抄,給你說啊vb裡的東西有點襲奇怪,如果它是null的,那麼你直接用 就可以判斷了也就是說你可以這樣寫 if sss then end if 不信你可以試 注意,如果sss的型別是數值型別的,就是等於0而不是null vb 裡不象vc有null 這個值但是他有 vbnullstring 一樣可以...