On Jan 21, 2008 10:15 AM, Michael Van Canneyt <<a href="mailto:michael@freepascal.org">michael@freepascal.org</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d"><br><br></div>No, there isn't. I follow Borland coding style, but some others don't.<br>You cannot force everyone to use the same style. And you should not.<br><font color="#888888"><br>Michael.
</font></blockquote><div><br>I use Borland style also, but for Tabs i like to convert tabs to 2
spaces for more compatible with other editors, you can read your
file in Command Prompt using Type.<br>
<br>
There is another code style most care and define it, a rules about it, as like not using GOTO, it is a rule for coding but not a style, for example i hate using Exit in my code i always change it<br>|  if (somthing) then
<br>|    exit;<br>|  ...<br><br> to<br></div></div><br>|  if (not somthing) then<br>|  begin<br>|    ...<br>|  end;<br>
<br>-- <br>Zaher Dirkey