<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://vistapedia.com/index.php?action=history&amp;feed=atom&amp;title=FileMan_Delphi_Components%2FTFMAccess_ErrorList</id>
	<title>FileMan Delphi Components/TFMAccess ErrorList - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://vistapedia.com/index.php?action=history&amp;feed=atom&amp;title=FileMan_Delphi_Components%2FTFMAccess_ErrorList"/>
	<link rel="alternate" type="text/html" href="https://vistapedia.com/index.php?title=FileMan_Delphi_Components/TFMAccess_ErrorList&amp;action=history"/>
	<updated>2026-05-02T09:49:45Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://vistapedia.com/index.php?title=FileMan_Delphi_Components/TFMAccess_ErrorList&amp;diff=12213&amp;oldid=prev</id>
		<title>DavidWhitten at 16:44, 8 February 2011</title>
		<link rel="alternate" type="text/html" href="https://vistapedia.com/index.php?title=FileMan_Delphi_Components/TFMAccess_ErrorList&amp;diff=12213&amp;oldid=prev"/>
		<updated>2011-02-08T16:44:00Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== ErrorList Property (Run-time Only) ==&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
== Example Code ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
procedure TForm1.Button1Click(Sender: TObject);&lt;br /&gt;
&lt;br /&gt;
var       i:integer;&lt;br /&gt;
     fatal: boolean;&lt;br /&gt;
       err: TFMErrorObj;&lt;br /&gt;
begin&lt;br /&gt;
  fatal:=False;&lt;br /&gt;
  FMGets1.GetData;&lt;br /&gt;
  if FMGets1.ErrorList.Count&amp;gt;0 then&lt;br /&gt;
    {display errors to the user}&lt;br /&gt;
    FMGets1.DisplayErrors;&lt;br /&gt;
    {loop through list of error objects}&lt;br /&gt;
    for i:=0 to (FMGets1.ErrorList.Count-1) do&lt;br /&gt;
    begin&lt;br /&gt;
       err:= FMGets1.ErrorList.Items[i];&lt;br /&gt;
       if err.ErrorNumber=&amp;#039;601&amp;#039; then fatal:=True;&lt;br /&gt;
    end;&lt;br /&gt;
  if not fatal then&lt;br /&gt;
   {continue...}&lt;br /&gt;
&lt;br /&gt;
end;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Applies To ==&lt;br /&gt;
[[FileMan_Delphi_Components/TFMAccess|TFMAccess]], all VA FileMan data access components&lt;br /&gt;
&lt;br /&gt;
== Declaration ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; property ErrorList : TList; &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
A TList of [[FileMan_Delphi_Components/TFMErrorObj|TFMErrorObj]] objects. This TList is populated if the VA FileMan data access component encounters one or more VA FileMan errors during a server call.&lt;br /&gt;
&lt;br /&gt;
Data access components automatically clear their ErrorList property immediately before making any server call. After a server call, you can:&lt;br /&gt;
&lt;br /&gt;
* Check the TList Count property of the ErrorList to see how many errors occurred.&lt;br /&gt;
&lt;br /&gt;
* Use the [[FileMan_Delphi_Components/TFMAccess_DisplayErrors|DisplayErrors]] method to display errors to the user.&lt;br /&gt;
&lt;br /&gt;
* Loop through the [[FileMan_Delphi_Components/TFMErrorObj|TFMErrorObj]] objects in the ErrorList after a call, if you need to branch based on the presence of a particular error.&lt;/div&gt;</summary>
		<author><name>DavidWhitten</name></author>
	</entry>
</feed>