Software Developer's Kit (SDK)
#10
Jim give me a few days and I will put something together. I guess you want to use the .net framework? For Windows development its what Microsoft is pushing. I will create a VS2019 c++ project using Microsoft Common Language Runtime or CLR. I can create the first Form that you currently use and add the event handlers, the header files and the necessary code to access the SCP via the USB port. You can allocate arrays on the stack or the heap. Large Dynamic arrays allocated at runtime use the new keyword to allocate on the heap.

Stack allocation
// Declare an array of doubles to be allocated on the stack
double numbers[size] {0};

Heap allocation
// Declare an array of doubles to be allocated on the heap
double* numbers = new double[size]{ 0 };
Reply


Messages In This Thread
Software Developer's Kit (SDK) - by admin - 02-02-2014, 11:42 AM
RE: Software Developer's Kit (SDK) - by admin - 03-21-2014, 03:16 PM
RE: Software Developer's Kit (SDK) - by admin - 06-27-2014, 02:23 PM
RE: Software Developer's Kit (SDK) - by admin - 01-07-2019, 11:42 PM
RE: Software Developer's Kit (SDK) - by admin - 05-09-2021, 09:03 PM
RE: Software Developer's Kit (SDK) - by admin - 05-10-2021, 04:17 PM
RE: Software Developer's Kit (SDK) - by JimmyWTucker - 05-19-2021, 04:33 AM
RE: Software Developer's Kit (SDK) - by admin - 05-19-2021, 05:13 PM



Users browsing this thread: 1 Guest(s)