<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://www.mitov.com/wiki/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Class_TLMainThredEvent.TTLMainThredEvent</id>
		<title>Class TLMainThredEvent.TTLMainThredEvent - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://www.mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Class_TLMainThredEvent.TTLMainThredEvent"/>
		<link rel="alternate" type="text/html" href="https://www.mitov.com/wiki/index.php?title=Class_TLMainThredEvent.TTLMainThredEvent&amp;action=history"/>
		<updated>2026-07-03T03:53:00Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>https://www.mitov.com/wiki/index.php?title=Class_TLMainThredEvent.TTLMainThredEvent&amp;diff=2149&amp;oldid=prev</id>
		<title>David Alm: Automated Syncronization with Documentation</title>
		<link rel="alternate" type="text/html" href="https://www.mitov.com/wiki/index.php?title=Class_TLMainThredEvent.TTLMainThredEvent&amp;diff=2149&amp;oldid=prev"/>
				<updated>2011-11-22T00:16:35Z</updated>
		
		<summary type="html">&lt;p&gt;Automated Syncronization with Documentation&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;b&amp;gt;&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;&lt;br /&gt;
This is a Beta Read Only version of this page. &lt;br /&gt;
Please review and send recommendations to [mailto:mitov@mitov.com mitov@mitov.com]. &lt;br /&gt;
We will enable the editing as soon as we are happy with the overall Wiki site.&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:BIGTLMainThredEvent.gif]] [[Image:TLMainThredEvent.gif]] [[Image:NETTLMainThredEvent.gif]]&lt;br /&gt;
&lt;br /&gt;
'''Package:''' [[Package TimingLabBasicPkg|TimingLabBasicPkg]]&lt;br /&gt;
&lt;br /&gt;
'''Unit:''' [[Unit TLMainThredEvent|TLMainThredEvent]]&lt;br /&gt;
&lt;br /&gt;
'''Inherits:''' [[Class TLBasicTimingFilter.TTLBasicTimingFilter|TTLBasicTimingFilter]]&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
=== Delphi: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''type''' TTLMainThredEvent = '''class'''( [[Class TLBasicTimingFilter.TTLBasicTimingFilter|TTLBasicTimingFilter]] )&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
=== C++ Builder: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''class''' TTLMainThredEvent : '''public''' [[Class TLBasicTimingFilter.TTLBasicTimingFilter|TTLBasicTimingFilter]]&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
=== Visual C++ (MFC): ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''class''' CTTLMainThredEvent : '''public''' [[Class TLBasicTimingFilter.TTLBasicTimingFilter|CTTLBasicTimingFilter]]&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
=== C# (.NET): ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''public ref class''' TTLMainThredEvent : [[Class TLBasicTimingFilter.TTLBasicTimingFilter|Mitov.TimingLab.BasicTimingFilter]]&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
== Summary ==&lt;br /&gt;
Allows other threads to generate main thread notifications. &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Use this component to allow other threads to generate main&lt;br /&gt;
thread notifications.&lt;br /&gt;
&lt;br /&gt;
Accessing user interface items such as Labels, Check Boxes,&lt;br /&gt;
Buttons, etc. from a thread different than the main thread in&lt;br /&gt;
windows is not safe and can lead to application crash.&lt;br /&gt;
&lt;br /&gt;
[[Class TLMainThredEvent.TTLMainThredEvent|TTLMainThredEvent]] allows any thread to call an event in the&lt;br /&gt;
context of the main thread where the code can safely access&lt;br /&gt;
any user interface item.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To assign the event to be called use the [[Event TLMainThredEvent.TTLMainThredEvent.OnNotify|OnNotify]] event to a&lt;br /&gt;
callback function.&lt;br /&gt;
&lt;br /&gt;
To generate the event call the [[Method procedure TLMainThredEvent.TTLMainThredEvent.Fire()|Fire]] method.&lt;br /&gt;
&lt;br /&gt;
If you need to wait until the event is processed set the&lt;br /&gt;
[[Property TLMainThredEvent.TTLMainThredEvent.Blocking|Blocking]] property to True.&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
&lt;br /&gt;
=== Published ===&lt;br /&gt;
*[[Property TLMainThredEvent.TTLMainThredEvent.Blocking|Blocking]] - Specifies whether the the [[Method procedure TLMainThredEvent.TTLMainThredEvent.Fire()|Fire]] event will wait until the notification is processed before returning. &lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
&lt;br /&gt;
=== Public ===&lt;br /&gt;
*[[Method procedure TLMainThredEvent.TTLMainThredEvent.Fire()|procedure Fire()]] - Generates a main thread event. &lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
*[[Event TLMainThredEvent.TTLMainThredEvent.OnNotify|OnNotify]] - Occurs when the [[Method procedure TLMainThredEvent.TTLMainThredEvent.Fire()|Fire]] method is called. &lt;br /&gt;
&lt;br /&gt;
== From [[Class TLBasicTimingFilter.TTLBasicTimingFilter|TTLBasicTimingFilter]] ==&lt;br /&gt;
&lt;br /&gt;
== Pins ==&lt;br /&gt;
*[[Pin TLBasicTimingFilter.TTLBasicTimingFilter.OutputPin|OutputPin]] - The output pin of the component. &lt;br /&gt;
&lt;br /&gt;
== From [[Class TLBasicTimingFilter.TTLBasicClockedFilter|TTLBasicClockedFilter]] ==&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
&lt;br /&gt;
=== Published ===&lt;br /&gt;
*[[Property TLBasicTimingFilter.TTLBasicClockedFilter.Enabled|Enabled]] - Enables or disables the component. &lt;br /&gt;
&lt;br /&gt;
== Pins ==&lt;br /&gt;
*[[Pin TLBasicTimingFilter.TTLBasicClockedFilter.InputPin|InputPin]] - The Input Pin of the component. &lt;br /&gt;
*[[Pin TLBasicTimingFilter.TTLBasicClockedFilter.EnablePin|EnablePin]] - The enable pin of the component. &lt;br /&gt;
&lt;br /&gt;
[[Category:Components]][[Category:Classes]]&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>