View Single Post
  #12 (permalink)  
Old 07-23-2008, 02:17 PM
Mr_Gee Mr_Gee is offline
Basic4ppc Veteran
 
Join Date: Feb 2008
Location: Hilversum, The Netherlands
Posts: 239
Awards Showcase
Beta Tester 
Total Awards: 1
Default

Quote:
Originally Posted by agraham View Post
Wrong! There is a lot more information there. It shows how important it is to describe exactly and in detail rather than just saying an exception occurred.
Sorry you are right, I think I was just to eager to get started...

I started again from scratch
Code:
Sub Globals
	Dim data(0)
End Sub
Sub App_Start
	Form1.Show
End Sub
Sub Button1_Click
	HTCGSensor.New1
	data() = HTCGSensor.GetRawSensorData
	Msgbox(ArrayLen(data()))
End Sub
Error message is :

An error occured on sub button1_click
Line number : 15
data() = HTCGSensor.GetRawSensorData
Error description :
NotSupportedException

Last edited by Mr_Gee : 07-23-2008 at 02:21 PM.
Reply With Quote