<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 12 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";
        color:black;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";
        color:black;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";
        color:black;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:Consolas;
        color:black;}
span.EmailStyle20
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body bgcolor=white lang=EN-NZ link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Well, to be fair the same is true even if you declare it simply as a public member.&nbsp; You change that public member to a public property with read/write accessors if you need to, without changing the code that uses the public member.<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>The reason to declare a member as a property is when you positively wish to hide the implementation, not because you may wish to in the future.<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Note also that for record types, exposure as a property makes such members harder and unintuitive to work with:<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; TShape = class<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; Private<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp;&nbsp;&nbsp; fRect: TRect;<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; public <o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp;&nbsp;&nbsp;&nbsp;property Rect: TRect read fRect write fRect;<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; end;<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; shape.Rect.Left := 100;&nbsp; // Error: Left-side cannot be assigned to <o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>you have to instead write:<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; newRect := shape.Rect;<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; newRect.Left := 100;<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; shape.Rect := newRect;<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>or<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; shape.Rect := Rect(100, shape.Rect.Top, shape.Rect.Right, shape.Rect.bottom);<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>or get real nasty and expose the property by reference:<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; property Rect: PRect read get_Rect;&nbsp;&nbsp; //get_Rect returns the PRect of @fRect<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>allowing you to write:<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>&nbsp; shape.Rect.Left := 100;&nbsp; // Now this is fine <o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>But notice now that we have a read/write &#8220;property&#8221; that is declared as read-only and TShape is oblivious to any changes made to its fRect.<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Or you could expose each field of the record via a separate property (not a bad idea for&nbsp; a TRect, but for more complex/larger records this could be cumbersome).<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>This area is a bit sticky, to say the least, and I don&#8217;t think there&#8217;s one single &#8220;right&#8221; approach &#8211; it depends very much on the specific case at hand.<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Having said AAALLL that, I have long since got in the habit of never exposing public member variables in a class.&nbsp; </span><span style='font-size:11.0pt;font-family:Wingdings;color:#1F497D'>J</span><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p>&nbsp;</o:p></span></p><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext'>From:</span></b><span lang=EN-US style='font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext'> delphi-bounces@delphi.org.nz [mailto:delphi-bounces@delphi.org.nz] <b>On Behalf Of </b>David Moorhouse (DUG)<br><b>Sent:</b> Friday, 21 January 2011 07:33<br><b>To:</b> NZ Borland Developers Group - Delphi List<br><b>Subject:</b> Re: [DUG] Variabels stored<o:p></o:p></span></p></div></div><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal>Because a property hides the implementation details ... you can change to read / write methods later with no change to the code that is using the property.&nbsp; A public field exposes the implementation.<br><br>Cheers<br><br>D<br><br><br>On 21/01/11 00:44, Ross Levis wrote: <o:p></o:p></p><div><p>I don&#8217;t see the point in doing that, unless the read/write are functions or procedures.&nbsp; Just make the string public. <o:p></o:p></p><p>&nbsp; <o:p></o:p></p><div><div><p><b><span lang=EN-US>From:</span></b><span lang=EN-US> <a href="mailto:delphi-bounces@delphi.org.nz">delphi-bounces@delphi.org.nz</a> [<a href="mailto:delphi-bounces@delphi.org.nz">mailto:delphi-bounces@delphi.org.nz</a>] <b>On Behalf Of </b>David Moorhouse (DUG)<br><b>Sent:</b> Thursday, 20 January 2011 11:18 PM<br><b>To:</b> NZ Borland Developers Group - Delphi List<br><b>Subject:</b> Re: [DUG] Variabels stored </span><o:p></o:p></p></div></div><p>&nbsp; <o:p></o:p></p><p>Or as field properties if you want to access them from another form ... <o:p></o:p></p><div><p>type <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; TWallaceForm = class(TForm) <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; btnOK: TButton; <o:p></o:p></p></div><p>&nbsp;&nbsp;&nbsp; private <o:p></o:p></p><div><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FWallacesPrivateVar: string;&nbsp;&nbsp;&nbsp;&nbsp; // private storage <o:p></o:p></p></div><p>&nbsp; &nbsp;&nbsp; public <o:p></o:p></p><div><div><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; property WallacesPrivateVar: string read&nbsp; FWallacesPrivateVar write FWallacesPrivateVar; <o:p></o:p></p></div><div><div><div><p>&nbsp; ... <o:p></o:p></p></div></div></div><p>&nbsp;&nbsp;&nbsp; end; <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><p>Cheers<br><br>D<br><br>On 20/01/11 16:09, Conor Boyd wrote: <o:p></o:p></p><div><p>Probably as a field on the form class that you're dealing with. <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>e.g. <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>type <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; TWallaceForm = class(TForm) <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; btnOK: TButton; <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; ... <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; txtWallacesHiddenTextBox: TEdit; <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp;&nbsp;... <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; private <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FWallacesPrivateVar: string;&nbsp;&nbsp;&nbsp;&nbsp; // use this instead of your hidden text box. <o:p></o:p></p></div><div><p>&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Can create as many &quot;variables&quot; (or fields as they're known in Delphi parlance, hence the F prefix) <o:p></o:p></p></div><div><p>&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // of as many different types as you like. <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; ... <o:p></o:p></p></div><div><p>&nbsp;&nbsp;&nbsp; end; <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>Hope I've understood what you're asking for correctly. <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>HTH, <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>Conor <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p><b><span lang=EN-US>From:</span></b><span lang=EN-US> <a href="mailto:delphi-bounces@delphi.org.nz">delphi-bounces@delphi.org.nz</a> [<a href="mailto:delphi-bounces@delphi.org.nz">mailto:delphi-bounces@delphi.org.nz</a>] <b>On Behalf Of </b>Marshland Engineering<br><b>Sent:</b> Thursday, 20 January 2011 3:45 p.m.<br><b>To:</b> <a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a><br><b>Subject:</b> [DUG] Variabels stored </span><o:p></o:p></p></div><div><p>Is there a way to store&nbsp;variables so I can use them from one procedure to another? &nbsp; <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>I have been currently storing them in&nbsp;hidden edit.text boxes on the form but there must be a better way. <o:p></o:p></p></div><div><p>&nbsp; <o:p></o:p></p></div><div><p>Cheers Wallace <o:p></o:p></p></div><pre>&nbsp;&nbsp; <o:p></o:p></pre><pre>&nbsp;&nbsp; <o:p></o:p></pre><pre>_______________________________________________&nbsp; <o:p></o:p></pre><pre>NZ Borland Developers Group - Delphi mailing list&nbsp; <o:p></o:p></pre><pre>Post: <a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a>&nbsp; <o:p></o:p></pre><pre>Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi">http://delphi.org.nz/mailman/listinfo/delphi</a>&nbsp; <o:p></o:p></pre><pre>Unsubscribe: send an email to <a href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a> with Subject: unsubscribe&nbsp; <o:p></o:p></pre><p>&nbsp; <o:p></o:p></p></div><pre><o:p>&nbsp;</o:p></pre><pre><o:p>&nbsp;</o:p></pre><pre>_______________________________________________<o:p></o:p></pre><pre>NZ Borland Developers Group - Delphi mailing list<o:p></o:p></pre><pre>Post: <a href="mailto:delphi@delphi.org.nz">delphi@delphi.org.nz</a><o:p></o:p></pre><pre>Admin: <a href="http://delphi.org.nz/mailman/listinfo/delphi">http://delphi.org.nz/mailman/listinfo/delphi</a><o:p></o:p></pre><pre>Unsubscribe: send an email to <a href="mailto:delphi-request@delphi.org.nz">delphi-request@delphi.org.nz</a> with Subject: unsubscribe<o:p></o:p></pre><p class=MsoNormal><o:p>&nbsp;</o:p></p></div></body></html>