MSFlexGrid使用技巧一例[2]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 callzjy 的 blog

end sub

 

private sub combo1_keypress(keyascii as integer)

if keyascii = vbkeyescape then

    combo1.visible = false

    msflexgrid1.setfocus

    exit sub

end if

 

if keyascii = vbkeyreturn then

    msflexgrid1.text = combo1.text

    combo1.visible = false

    msflexgrid1.setfocus

end if

end sub

 

private sub combo1_lostfocus()

本文关键:callzjy VB 控件 MSFlexGrid Combo
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top