當前位置:成語大全網 - 新華字典 - 怎麽樣用VB編譯壹個英漢小字典,只要能夠查詢單詞,即選中壹個單詞,在textbox裏就能顯示其意思,不慎感謝

怎麽樣用VB編譯壹個英漢小字典,只要能夠查詢單詞,即選中壹個單詞,在textbox裏就能顯示其意思,不慎感謝

public type dictionary

english as string

chinese as string

end type

private dic() as dictionary

'定義壹個字典,然後賦值

private sub form_load

redim dic(10)

dic(0).english="access"

dic(0).chinese="vt. 存取;接近;使用" & vbcrlf & "n. 通路;進入;使用權"

......

for i=0 to 10 '英文部分加入列表框

list1.additem dic(i).english

next

end sub

'點擊列表框在文本框出現翻譯

private sub list1_click()

text1.text=dic(list1.listindex).chinese

end sub