|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 12/1/2008 1:43:11 PM
Posts: 2,
Visits: 3
|
|
hi everyone -
for one of my current projects, i'm using a separate computer to generate sound stimulus and send data into ePrime via a serial connection.
i have the data getting in just fine, ePrime can read it with no troubles and it prints out to the debug window... but here's my question --
how the heck do i save the data that came in on that slide along with the rest of the eprime data?
-m
|
|
|
|
|
Forum MVP
      
Group: Forum Members
Last Login: 5/17/2012 5:46:13 PM
Posts: 732,
Visits: 2,940
|
|
Do you want to save that data to a separate file, or make it part of the .edat file? If the former, you want to use Print# along with associated commands (Open, Close, FreeFile, etc.) -- see the online E-Basic Help. If the latter, you can use something like
c.SetAttrib "MyAttrib", myValue
to add new columns to the .edat file. You can also use c.Log to add new rows to the .edat file, but be careful with that.
-- David McFarlane, Professional Faultfinder
|
|
|
|