I have a TThread which receives and sends to a device on a COM port. After I read the data, I want to activate the GUI (not in the same thread) using Synchronize(function name). However, when I call the GUI's form function to perform a button click, I get an access violation. I checked to see if the form's value is null and it is not, since this would be an obvious reason for access violation. Right now, I am setting global flags and using a timer that continuously checks to see if a certain condition is met and if so, then I fire off the button click event in that form. That seems to be the only way to avoid getting the access violation.
I really don't like timers so is there a way to avoid having to use a timer on the form?
TThread.Synchronizeshould work. What line of code caused the access violation? Could you post the thread code that callsSyncrhronizeand the function you are calling? – Phil Ross Dec 7 '09 at 21:49protectedproperty? All GUI events are in theprotectedcategory. Compiler and Linker don't complain though.. just wondering if it is a runtime problem – 0A0D Dec 8 '09 at 1:15