首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > VFP >

VFP DLL解决思路

2012-03-29 
VFP DLLDefineClasstestxasCustomolepublicProceduregoDefinePadtestof_msysmenuprompttest colorscheme

VFP DLL
Define   Class   testx   as   Custom   olepublic
Procedure   go
Define   Pad   test   of   _msysmenu   prompt   "test "     color   scheme   3
On   Pad   test   of   _msysmenu   activate   popup   p_test
Define   Popup   p_test     margin     relative   shadow   color   scheme   4
Define   Bar   1   of   p_test     prompt   "hello "
On   Selection   Bar   1   of   p_test   do   form   test
endproc
EndDefine  


想将菜单定义放进DLL中,运行时出以下错误:
OLE   IDispatch   exception   code   2031
user-interface   operation   not   allowed   at   this   time.

DLL不能操作UI?

[解决办法]
DLL 中不能做可视化
[解决办法]
可以编成exe com

热点排行