C cobi Unregistered / Unconfirmed GUEST, unregistred user! 2008-06-03 #1 使用SendMessage(handle,WM_SETTEXT,0,Integer(PChar('hello')));似乎只对Edit控件有效,现在想向ComboBox控件的文本框传送文本,请问用消息如何处理,谢谢
使用SendMessage(handle,WM_SETTEXT,0,Integer(PChar('hello')));似乎只对Edit控件有效,现在想向ComboBox控件的文本框传送文本,请问用消息如何处理,谢谢
H hanpengshan_00 Unregistered / Unconfirmed GUEST, unregistred user! 2008-06-04 #2 SendMessage(cbb1.handle,WM_SETTEXT,0,Integer(PChar('hello'))); cbb1: TCombobox,可以设置
A andylang Unregistered / Unconfirmed GUEST, unregistred user! 2008-06-04 #3 SendMessage(cbb1.handle,WM_SETTEXT,0,Integer(PChar('hello'))); 对于TComboBox 仍旧有效的
T tbgdwj Unregistered / Unconfirmed GUEST, unregistred user! 2008-06-04 #4 SendMessage(ComboBox1.handle,WM_SETTEXT,0,Integer(PChar('hello'))); 正解
F fanboynet Unregistered / Unconfirmed GUEST, unregistred user! 2008-06-05 #5 一个窗体上有有多个combobox有什么关系,枚举一下,找到你要的那个NAME,再send.