请教
我现在代码是这样,运行的时候系统总是说在第四行“类型不匹配”不知道该怎么改?? 还有你帮我看看其他地方有要改的吗??
Dim dbase As Database
Dim rsY As Recordset
Set dbase = OpenDatabase("H:\GPS.mdb")
Set rsY = dbase.OpenRecordset("SELECT * FROM alic")
Dim x, y As Double
For i = 0 To 155 Step 0.25
x = 100 * GPS.Recordset.Fields("x位移").Value
GPS.Recordset.MoveNext
y = 100 * GPS.Recordset.Fields("x位移").Value
Picalic.Line (i, x)-(i * 4 + 1, y)
Next i