I did a search, and didn't find the answer to what is probably a simple question. (Or maybe it was there, but Meine Deutsch ist schlect...)
I have a long record (computer issues during data aquisition) that I would like to break into 3 different records. First, I am going to try to get my terms straight, hopefully.
Each channelgroup has 15 channels of data (5 accelerometers x 3 axes).
I would like to copy all 15 channels from one single channelgroup(?), make 3 new channel groups and copy the segments of all 15 channels into the new channelgroup. Hope this is clear.
Here is the basic idea of what I'm attempting:
Call Data.Root.ChannelGroups.Add("Record#2", 2).Activate()
Call DataBlClpCopy (Data.Root.ChannelGroups(1), 1, 40000)
Call DataBlClpPaste (Data.Root.ChannelGroups(2),1)
Then do this two more times, adding a new channelgroup, and copying a different range.
Thanks for any help you can provide. I have not done any coding in...years..., and I think the last time I did, it was fortran, so I'm not really familiar with object oriented coding except on a very high (and very fuzzy) level.