၁။ Focus မှတ်စု
၁။ ဒီဇိုင်းလုပ်တဲ့အချိန်မှာ Focus လုပ်ချင်ရင် TabIndex ကို 0 ထားပေးရမယ်။
၂။ form load စစချင်းမှာ Focus() method ကို သုံးလို့ မရဘူး။
၃။ form Load မှာ Focus လိုချင်ရင် object.TabIndex=1 သုံးရေးပေးရမယ်။
၄။ focus လုပ်လို့ ရမရ စစ်ဆေးဖို့ object.CanFocus = True, False
If TextBox1.CanFocus Then
MessageBox.Show(“can foucus”)
TextBox1.Focus()
Else
MessageBox.Show(“can’t foucs”)
TextBox1.TabIndex = 0
End If
ကျွန်တော် လေ့လာမိတာလေးတွေ ကို ကျွန်တော့် လို စတင်လေ့လာကာစ လူငယ်တွေ အတွက် တင်ပေးလိုက်ပါတယ်။ ပိုကောင်းတဲ့ ကုဒ်လေးတွေ ရှိရင် ပြန်လည်မျှဝေပေးကြပါခင်ဗျာ။



