|
马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我用API创建明细表的时候,怎么出现这样的问题?好像说内存冲突,哪位大虾给我看看!下面是我的明细表的程序:
//-------------------------------create a part list---------------------------
double origin [3]={100,100,0};
tag_t parts_list;
UF_PLIST_prefs_t prefs;
prefs.section_prefs.header_location=UF_TABNOT_header_location_below;
prefs.section_prefs.max_height=250; prefs.section_prefs.overflow_direction=UF_TABNOT_overflow_left;
prefs.section_prefs.overflow_spacing=6; prefs.section_prefs.attach_point=UF_TABNOT_attach_point_top_left;prefs.grow_direction=UF_PLIST_grow_direction_up;
prefs.ldr_method=UF_PLIST_ldr_method_strike_thru;
prefs.initial_callout_field="1";
prefs.callout_increment=1;
prefs.symbol_type=UF_PLIST_symbol_type_id_symbol_circle;
prefs.main_symbol_text="";
prefs.ref_symbol_text="";
prefs.auto_update=1;
int ret=UF_PLIST_create([$prefs,origin, &parts_list)]
char message[133];
UF_get_fail_message(ret,message);
uc1601(message,1);
谢谢! |
|