Search found 3 matches

by jpetitti
Tue Mar 27, 2007 2:47 pm
Forum: VB and VBA (Excel, Access)
Topic: TC-08 and VB6 Development
Replies: 4
Views: 10642

Excellent markB, That worked perfectly! I knew it had to be something small I was over looking, those always get me in the end. It should be noted that the original declaration of the get_formated provided by Pico in the sample module, has it declared ByRef and this needs to be changed to use it in ...
by jpetitti
Tue Mar 27, 2007 1:33 pm
Forum: VB and VBA (Excel, Access)
Topic: TC-08 and VB6 Development
Replies: 4
Views: 10642

markB, Thank you for your reply! I have however tried to use this method before to no effect. Here is what I wrote to quickly test it again: (the function declaration is in my module) Dim intRetVal As Integer Dim hTC08 As Integer Dim info As String * 255 hTC08 = usb_tc08_open_unit() If (hTC08) Then ...
by jpetitti
Wed Mar 14, 2007 3:28 pm
Forum: VB and VBA (Excel, Access)
Topic: TC-08 and VB6 Development
Replies: 4
Views: 10642

TC-08 and VB6 Development

Hello, I'm having problems getting the szSerial number and temp readings to work correctly. Here is the test sub I wrote to try to get things up and running. Dim intRetStatus As Integer Dim hTC08 As Integer Dim tc08Info As USBTC08_INFO ReDim temp_buffer(9) As Single Dim intFlag As Integer Dim intErr...