User kipkuch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:07:09Z http://stackoverflow.com/feeds/user/31749 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/741663/vb-net-what-is-the-best-way-to-retrieve-a-value-from-a-second-form 0 VB.NET: What is the best way to retrieve a value from a second form? kipkuch 2009-04-12T11:54:53Z 2009-04-12T12:24:54Z <p>I'm teaching myself VB.Net.</p> <p>Here is a problem I have recently come across. Say I have a main Form1 in my application. Form1 calls a second LoginForm which (like the name suggests) is a login window with username/password type fields. Expected behaviour is that LoginForm will capture login details and pass them back to Form1.</p> <p>What is the best way to do this?</p> <p>In my mind, I was thinking along the lines of a function call like 'doLogin' that would 'show' the LoginForm, capture the data entered, dispose of the form and return the login details (probably in some kind of bean). Somehow I don't see this as being possible</p> <p>What I have currently is less elegant. LoginForm is shown by Form1 modally (i.e. showDialog); a 'me' reference is passed to the second window. After user input has been received on LoginForm, I set a value on Form1, then dispose. </p> <p>Is this the way everybody does it?</p> http://stackoverflow.com/questions/239645/overriding-a-method-with-generic-parameters-in-java/240192#240192 0 Answer by kipkuch for Overriding a method with Generic Parameters in Java? kipkuch 2008-10-27T14:59:27Z 2008-10-27T15:13:32Z <p>Here is my own solution. I suspect this is the same thing Jon Skeet was trying to get at... without the typo (see my comment in reply to his answer). </p> <p>the <b>Monitor.java</b> class:</p> <pre><code>public abstract class Monitor &lt;T extends MonitorAccount&gt; { ... public abstract List&lt;T&gt; performMonitor(List&lt;T&gt; accounts); .. } </code></pre> <p><b>EmailMonitor.java</b></p> <pre><code>public class EmailMonitor extends Monitor&lt;EmailMonitor&gt; { ... public List&lt;EmailAccount&gt; performMonitor(List&lt;EmailAccount&gt; emailAccounts) { ..//logic...logic...logic return emailAccounts; } ... } </code></pre> <p>In this configuration, <i>EmailMonitor.performMonitor()</i> will always check at compile time that it receives a list of <b>EmailAccount</b> rather than any of my other types <b>FTPAccount, DBAccount,</b> etc... It's much cleaner than the alternative, which would have been receiving/sending a raw list and then having to coerce it the required type resulting in potential runtime type casting exceptions. </p> http://stackoverflow.com/questions/239645/overriding-a-method-with-generic-parameters-in-java 6 Overriding a method with Generic Parameters in Java? kipkuch 2008-10-27T11:46:57Z 2008-10-27T15:13:32Z <p>I have an abstract Class <b>Monitor.java</b> which is subclassed by a Class <b>EmailMonitor.java</b>. The method <pre>public abstract List&lt;? extends MonitorAccount&gt; performMonitor(List&lt;? extends MonitorAccount&gt; accounts)</pre> is defined in <b>Monitor.java</b> and must be overridden in <b>EmailMonitor.java</b>. </p> <p> I currently have the method overridden in <b>EmailMonitor.java</b> as follows: <pre> @Override public List&lt;EmailAccount&gt; performMonitor(List&lt;EmailAccount&gt; emailAccounts) { ...//unrelated logic return emailAccounts; } </pre> </p> <p> However, this produces the compile time error: <i>Name clash: The method performMonitor(List&lt;EmailAccount&gt;) of type EmailMonitor has the same erasure as performMonitor(List&lt;? extends MonitorAccount&gt; emailAccounts) of type Monitor but does not override it</i> <p>EmailAccount is a subclass of MonitorAccount, so (in my mind atleast) overriding it in this way makes perfect sense. Seeing as the compiler is not happy with my logic though, How should I go about this correctly while still keeping my compile time checks to make sure that all calls to <i>EmailMonitor.performMonitor()</i> receive Lists of <b>EmailAccount</b> rather than some other type of <b>MonitorAccount</b>? </p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/47835#47835 Comment by kipkuch on Computer Language puns and jokes kipkuch 2009-04-20T14:03:31Z 2009-04-20T14:03:31Z My favourite by far!!!!! ...sucks that the similarities only go so far http://stackoverflow.com/questions/741663/vb-net-what-is-the-best-way-to-retrieve-a-value-from-a-second-form/741670#741670 Comment by kipkuch on VB.NET: What is the best way to retrieve a value from a second form? kipkuch 2009-04-12T14:18:10Z 2009-04-12T14:18:10Z chosen for the great article. thanks http://stackoverflow.com/questions/239645/overriding-a-method-with-generic-parameters-in-java/239663#239663 Comment by kipkuch on Overriding a method with Generic Parameters in Java? kipkuch 2008-10-27T14:38:34Z 2008-10-27T14:38:34Z You say 'List&lt;? extends EmailAccount&gt;'. Now I can't pass EmailAccount through at all; Was that a typo?. I wanted to check that EmailMonitor always receives a list of EmailAccount and always returns a list of EmailAccount that can be used without dynamic casting. posting my solution now :)