Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

待辦事項連接_三項.vb 1.2KB

12345678910111213141516171819
  1. Public Class 待辦事項連接_三項
  2. Private Sub 待辦事項連接_三項_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  3. End Sub
  4. Private Sub 待辦事項連接_三項_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
  5. If 系統語言 = "繁體中文" Then : Me.Text = "請選擇" : Else : Me.Text = "Silakan pilih" : End If
  6. If PB = "保固未簽回" Then : BT1.Text = 系統語言字典("H001-122-" & 語言) : BT2.Text = 系統語言字典("H001-126-" & 語言) : BT3.Text = 系統語言字典("H001-119-" & 語言)
  7. End If
  8. 首次開啟 = False
  9. End Sub
  10. Private Sub BT1_Click(sender As Object, e As EventArgs) Handles BT1.Click
  11. If 首次開啟 = True Then : Else : PB = "A" : 首次開啟 = True : Me.Close() : End If
  12. End Sub
  13. Private Sub BT2_Click(sender As Object, e As EventArgs) Handles BT2.Click
  14. If 首次開啟 = True Then : Else : PB = "B" : 首次開啟 = True : Me.Close() : End If
  15. End Sub
  16. Private Sub BT3_Click(sender As Object, e As EventArgs) Handles BT3.Click
  17. If 首次開啟 = True Then : Else : PB = "C" : 首次開啟 = True : Me.Close() : End If
  18. End Sub
  19. End Class