<div>ok, Thanks!&nbsp; that clears it up a lot!! </div>
<div>happy coding!<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 1/3/08, <b class="gmail_sendername">Herbert König</b> &lt;<a href="mailto:herbertkoenig@gmx.net">herbertkoenig@gmx.net</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Hello David,<br><br>DZ&gt; One more question...How do I know when i need to use a class<br>DZ&gt; method instead of an instance method?
<br><br>the obvious reply is: If you want to talk to the class you need a<br>message implemented as a class side method. Examples:<br><br>a := Float pi<br>asks the class Float to return an instance of Float with the value of
<br>pi. So you&#39;ll find the method pi implemented on the class side of<br>float.<br><br>then a:=&nbsp;&nbsp;a + 3.0 talks to an instance of Float so you&#39;ll find +<br>implemented on the instance side of Float (or on of its superclasses).
<br><br><br>Cheers,<br>Herbert&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mailto:<a href="mailto:herbertkoenig@gmx.net">herbertkoenig@gmx.net</a><br><br><br></blockquote></div><br>