lijun337 发表于 2010-4-21 13:28

VBA如何读取昨天的数据并与今天新报上来的数据连接起来呢

我想在AUTOCAD利用VBA快速画图,指标图,每天的数据指标直观图。

构思是这样的:今天输入一个数据值A点:(0,12。45,0)(12。45米就是报上来的原始记录数据)与前天的点连接起来,第二天报上B点:(0,13。27,0))(13。27米就是第二天报上来的原始记录数据),再与A点连接起来!



三个TEXT文本框(月、日、今天报上来的数据)输入月日和报上来的数据后,直接在图上显示出来,第二天再如此继续下去。



但是,VBA如何读取昨天的数据并与今天新报上来的数据连接起来呢?

wenwengg 发表于 2010-4-21 15:04

将LASTPOINT坐标值保存到USERR1-3
Type: 3D-point
Saved in: Not-saved
Initial value: 0.0000,0.0000,0.0000

Stores the last point specified, expressed as UCS coordinates for the current space.

You can reference the last point by entering the at symbol (@) at a point prompt.


'Type: Integer
'Saved in: Drawing
'Initial value: 0

'Provides storage and retrieval of integer values.

'There are five system variables: USERI1, USERI2, USERI3, USERI4, and USERI5.

'Type: Real
'Saved in: Drawing
'Initial value: 0.0000

'Provides storage and retrieval of real numbers.

'There are five system variables: USERR1, USERR2, USERR3, USERR4, and USERR5.

[ 本帖最后由 wenwengg 于 2010-4-21 15:50 编辑 ]

SCPHBSZ 发表于 2010-4-24 10:17

这个是不是二次开发啊?ARX?
页: [1]
查看完整版本: VBA如何读取昨天的数据并与今天新报上来的数据连接起来呢