User kipkuch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T16:07:09Zhttp://stackoverflow.com/feeds/user/31749http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/741663/vb-net-what-is-the-best-way-to-retrieve-a-value-from-a-second-form0VB.NET: What is the best way to retrieve a value from a second form?kipkuch2009-04-12T11:54:53Z2009-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#2401920Answer by kipkuch for Overriding a method with Generic Parameters in Java?kipkuch2008-10-27T14:59:27Z2008-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 <T extends MonitorAccount> {
...
public abstract List<T> performMonitor(List<T> accounts);
..
}
</code></pre>
<p><b>EmailMonitor.java</b></p>
<pre><code>public class EmailMonitor extends Monitor<EmailMonitor> {
...
public List<EmailAccount> performMonitor(List<EmailAccount> 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-java6Overriding a method with Generic Parameters in Java?kipkuch2008-10-27T11:46:57Z2008-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<? extends MonitorAccount> performMonitor(List<? extends MonitorAccount> 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<EmailAccount> performMonitor(List<EmailAccount> emailAccounts) {
...//unrelated logic
return emailAccounts;
}
</pre>
</p>
<p>
However, this produces the compile time error: <i>Name clash: The method performMonitor(List<EmailAccount>) of type EmailMonitor has the same erasure as performMonitor(List<? extends MonitorAccount> 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#47835Comment by kipkuch on Computer Language puns and jokeskipkuch2009-04-20T14:03:31Z2009-04-20T14:03:31ZMy favourite by far!!!!!
...sucks that the similarities only go so farhttp://stackoverflow.com/questions/741663/vb-net-what-is-the-best-way-to-retrieve-a-value-from-a-second-form/741670#741670Comment by kipkuch on VB.NET: What is the best way to retrieve a value from a second form?kipkuch2009-04-12T14:18:10Z2009-04-12T14:18:10Zchosen for the great article. thankshttp://stackoverflow.com/questions/239645/overriding-a-method-with-generic-parameters-in-java/239663#239663Comment by kipkuch on Overriding a method with Generic Parameters in Java?kipkuch2008-10-27T14:38:34Z2008-10-27T14:38:34ZYou say 'List<? extends EmailAccount>'. 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 :)