明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1346|回复: 4

VBA里变量传递总是出问题,为什么?

[复制链接]
发表于 2004-2-18 10:47:00 | 显示全部楼层 |阅读模式
VBA里变量传递总是出问题,为什么? 有时同一变量,如果不再次对其定义,在使用时总是说变量类型不对,下面的程序供参考 Dim pp, pc, ct, tc, mm, fm, angle As Double
TextBox1.text = 4450
TextBox2.text = 132
TextBox3.text = 293
TextBox4.text = 620
TextBox5.text = 900
TextBox6.text = 2000
pp = Round(Val(TextBox1), 4)
pc = Round(Val(TextBox2), 4)
ct = Round(Val(TextBox3), 4)
tc = Round(Val(TextBox4), 4)
fm = Round(Val(TextBox5), 4)
mm = Round(Val(TextBox6), 4)
必须在此定义 Dim ppm As Double
Dim mmm As Double
Dim fmm As Double
Dim tcm As Double
ppm = pp
mmm = mm
fmm = fm
tcm = tc
"For i = 0 To Int(ObjCurve.length / pp)" 如果不再次定义会出问题
"For i = 0 To Int(ObjCurve.length / ppm)" 这样就好了
发表于 2004-2-18 11:04:00 | 显示全部楼层
你是在同一个sub里面写的上面的代码吗?


把你的dvb传上来看看
发表于 2004-2-18 13:31:00 | 显示全部楼层
我也遇到这种情况。看程序没有问题。
发表于 2004-2-18 17:14:00 | 显示全部楼层
pp, pc, ct, tc, mm, fm这几个变量其实是变体型的,Variant。它随后面赋值时的数据类型而变化,所以最好定义成固定的类型。
发表于 2004-2-18 17:30:00 | 显示全部楼层
  1. Dim pp, pc, ct, tc, mm, fm, angle As Double
很多初学者可能都会认为,以上的语句是将所有的变量均设置为Double型,其实不是这样的,该语句只将最后的angle设置为Double型,而前面的pp, pc, ct, tc, mm, fm都没有定义其数据类型,所以这些变量均按缺省设置为 Variant 类型。
  1. '在一行中声明多个变量。AnotherVar 为 Variant 类型,
  2. '因为它的类型被省略了。
  3. Dim AnotherVar, Choice As Boolean, BirthDate As Date
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 08:32 , Processed in 0.200509 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表