mdbfield.h
上传用户:cuijiu615
上传日期:2007-03-28
资源大小:45k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. #ifndef MDBFIELD_H_
  2. #define MDBFIELD_H_
  3. #include "StdAfx.h"
  4. #define  MAX_LEN 12
  5. typedef struct tagDBFields
  6. {
  7. char *name;
  8. char *label;
  9. char m_name[60];
  10. int  len;
  11. }DBFields;
  12. DBFields dbFields[MAX_LEN]=
  13. { "name"        ,     "姓名","",50,
  14.   "telphone"    ,     "电话","",120,
  15.   "pager" ,   "邮政编码","",80,
  16.   "mobile"      ,     "手机","",120,
  17.   "email"       ,     "email","",200,
  18.   "age"         ,     "年龄","",40,
  19.   "sex"         ,     "性别","",40,
  20.   "company"     ,     "公司","",200,
  21.   "address"     ,     "地址","",200,
  22.   "position"    ,     "职称","",50,
  23.   "friendship"  ,     "关系","",80,
  24.   "introduction",     "简介","",200
  25. };
  26. #endif
  27.