找不到‘字段’表达式
情况如下:
表单内设一个组合框。
表单的load事件use sunyib;
表单的init事件
thisform.combo1.RowSourceType=2
thisform.combo1.RowSource='&sunyib'
运行表单即出现错误提示框:“找不到‘字段’表达式”。程序停在“thisform.combo1.RowSource='&sunyib'”
请高手指点,谢谢!
[解决办法]
最好写在表单的init事件里:
use sunyib
thisform.combo1.RowSourceType=2
thisform.combo1.RowSource="sunyib"
或
thisform.combo1.RowSourceType=6
thisform.combo1.RowSource="sunyib.字段A,字段B,字段C"(字段的多少自定)