Terminating a thread in OnDestroy Programming Software Development by m610 … procedure TMainForm.EndUpdateDaq(Sender:TObject); begin try // Has the Daq thread been terminated? if DaqThread<>nil then if….Terminated then begin DaqThread.OnTerminate:=nil; DaqThread.Terminate; // Stop the Daq thread // DaqThread.WaitFor; // Wait for it to terminate end; … MFC Noob Programming Software Development by dyingatmidnight …;conio.h> #include <C:\Program Files\Measurement Computing\DAQ\C\cbw.h> using namespace std; int main() { int… External access o member variable from another class Programming Software Development by estelion … get stuck at the same thing. I'm creating a DAQ System for my MSc thesis, who's purpose is to… excel serial daq with xmcomm Hardware and Software Microsoft Windows by Ravenn hi i need to make an excel macro that handles serial communication and takes data from two lab balances. I've looked around and found that i can use xmcommcrc or winwedge (others too but these i'm experimenting with). The result should be that data would be recorded live into an excel sheet where it can be further processed. I would prefer … excel daq with wimwedge Hardware and Software Microsoft Windows by Ravenn hi, i'm using winwedge to link up a balance to a computer, in order to gather the readings into an excel sheet. i've writen the code that starts winwedge at the press of a button, and created the macro that is supposed to request readings and send them to the excel sheet. Winwedge is configured to request excel to run the macro whenever a reading… Re: WINFIX problem, Help! Hardware and Software Information Security by JoshuaSFV … hkey HKLM command C:\Program Files\National Instruments\NI-DAQ\HWConfig\nidevldstat.exe inimapping 0 key SOFTWARE\Microsoft\Windows\… hkey HKLM command C:\Program Files\National Instruments\NI-DAQ\HWConfig\nidevldstat.exe inimapping 0 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared … Re: True Random Number Generator Programming Software Development by skatamatic … (a bit of knowledge of instrumentation would be required). A DAQ (data aquisition card) will have a built-in analog to… a register. How you access this register depends on the DAQ setup, which can be an entire course on its own… Re: True Random Number Generator Programming Software Development by kelechi96 … (a bit of knowledge of instrumentation would be required). A DAQ (data aquisition card) will have a built-in analog to… a register. How you access this register depends on the DAQ setup, which can be an entire course on its own… Re: Windows Live Communication Platform has encountered a problem Hardware and Software Microsoft Windows by Iwantmore … O4 - HKLM\..\Run: [niDevMon] C:\Program Files\National Instruments\NI-DAQ\HWConfig\nidevmon.exe O4 - HKLM\..\Run: [SunJavaUpdateSched] "C:\Program… Re: Extract text from a string? Programming Web Development by scaiferw … = strpos($source,"DAC")+3; $state_end = strpos($source,"DAQ"); $state = substr($source,$state_start,$state_end - $state_start); echo "<… Re: Hardware programming with C/C++ Programming Software Development by mike_2000_17 … a lot of reading through your micro-controller, embedded-PC, DAQ card, etc. spec-sheets and getting to know what bit… Re: Hardware programming with C/C++ Programming Software Development by avarionist … a lot of reading through your micro-controller, embedded-PC, DAQ card, etc. spec-sheets and getting to know what bit… Re: C++ in Robotics Programming Software Development by mike_2000_17 … you can interface the controller with an external PC with DAQ card and you are free to program it which ever… Re: PF_Ring Hardware and Software Linux and Unix by rubberman …/2006/11/pfring-and-snort.html[/url] See the new daq library - Advanced Packet Capturing Howto: PF_RING, NAPI and extended libpcap… Re: PF_Ring Hardware and Software Linux and Unix by rubberman … has to be built separately, so go into userland/snort/daq-0.5 and execute ./configure and then make to get… Re: Terminating a thread in OnDestroy Programming Software Development by m610 I think I may have figured it out. First, it turns out that if you set to thread to automatically free itself when it is done that you shouldn't ever mess with it again. Just fire and forget. Instead of shutting it down I just enter a loop that waits for it to finish, then I move on to the next task. Of course the loop has a timeout. To check … Re: MFC Noob Programming Software Development by Moschops MFC is just a set of classes and various helper functions to make interacting with the Win API easier. What do you want to [I]do[/I] with the MFC classes that you're not doing already? Re: MFC Noob Programming Software Development by dyingatmidnight I was simply told that he would rather it in MFC. It's probably meant to be a learning experience for me, get some MFC under by belt from the work term. However I really hate dealing with wizards and half generated code. It reminds me of trying to work with Flex or Drupal which were evil... Mean while I'm still trying to wrap my head around … Re: MFC Noob Programming Software Development by Moschops Buy a second hand copy of Jeff Prosise's "Programming Windows 95 with MFC" from Amazon. Lowest one as I type is four cents plus postage. No wizards, just hand-crafted use of MFCs, with every line explained. As for what to actually do with it; beats me. Maybe you could have a little bar of coloured blocks to indicate current LED status. Re: External access o member variable from another class Programming Software Development by mike_2000_17 Just make the handler for the click button event in the Interface class, and then call a function of the DAQCycle class, and pass it the "this" pointer of the Interface object.