在VB中如何格式化時間

2022-01-05 05:29:15 字數 674 閱讀 5203

1樓:匿名使用者

dim a as string

dim b as string

a = "20:30:45"

b = a.substring(0, 2) & a.substring(3, 2) & a.substring(6, 2)

me.textbox1.text = b

這樣不知道行不?

或者dim d as date

dim a as integer

dim b as integer

dim c as integer

dim x as string

d = date.now()

a = d.hour

b = d.minute

c = d.second

x = a & b & c

me.textbox2.text = x

秒的話如果是個位你把它最好format一下比如1秒就是01

2樓:使用者名稱是啥東西

format(time,"hhnnss")

3樓:

dim pstr_time as string

pstr_time = "20:30:45"

format(pstr_time,"hhmmss")

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

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

vb中請問如何判斷輸入的日期格式對不對

if isdate text1.text thenmsgbox 正確的日期格式 else msgbox 錯誤的日期格式 end if 要再高階點就是 if isdate text1.text thenif format text1.text,yyyy m d text1.text then msgb...

vb中if巢狀語句,在VB中如何簡化過多巢狀的if語句?

if 條件為真 then 執行語句 end if 判斷結束 if a 3 then if b 2 then if c 7 then if d 8 then 以上條件都成立的時候執行下邊一段話 執行 並結束這個判斷 假如d 5,則執行下邊的 else 執行 end if 這裡是結束d 8 這個條件的 ...