Office中国论坛/Access中国论坛
标题:
模块代码中的字段或定义变量如何以中文表示
[打印本页]
作者:
zzll15888
时间:
2008-3-6 21:14
标题:
模块代码中的字段或定义变量如何以中文表示
请问下列代码:
Dim strSiteCode As String
Dim strCurrPeriod As String
Dim strBillCode As String
conn.Execute "insert into tblBillBeginTree (FBillCode,FSiteCode,FPeriodNo,FStartNo,FEndNo,FOnHandQty)" & _
" values ('" & strBillCode & "','" & strSiteCode & "','" & strCurrPeriod & "','0','0',0)"
假设
FBillCode中文字段是“编号”,FSiteCode中文字段是“库号”,FPeriodNo中文字段是“期间”,FStartNo中文字段是“开始号”,FEndNo中文字段是“截止号”,FOnHandQty中文字段是“库存数”
是否能改写为
Dim strSiteCode As String
Dim strCurrPeriod As String
Dim strBillCode As String
conn.Execute "insert into tblBillBeginTree (编号,库号,期间,开始号,截止号,库存数)" & _
" values ('" & strBillCode & "','" & strSiteCode & "','" & strCurrPeriod & "','0','0',0)"
如果可以,哪么& strBillCode & 等该如何改写成中文???
作者:
tmtony
时间:
2008-3-6 21:44
Dim strSiteCode As String
改为
Dim 编号变量 As String
作者:
andymark
时间:
2008-3-6 21:49
Dim strBillCode As String
Dim 单据编码 As String
晕,为什么一定要中文,这样定义感觉有点怪怪的
作者:
tmtony
时间:
2008-3-6 21:51
Andymark兄, 写个中文开发环境吧
作者:
andymark
时间:
2008-3-6 21:52
中文开发环境 指那方面
作者:
tmtony
时间:
2008-3-6 22:10
像易语言, 不过,我还真了解不多.
编程像写中文, 杜绝英文, 最好从CPU开始
作者:
yamaying
时间:
2010-6-13 17:59
学习学习
欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/)
Powered by Discuz! X3.3