User Olegious - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:51:54Z http://stackoverflow.com/feeds/user/132966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1284399/java-doesnt-seem-to-be-working-in-a-while-loop -1 Java- && doesn't seem to be working in a while loop... Olegious 2009-08-16T14:21:04Z 2009-08-16T14:42:30Z <p><strong>NEVER MIND- IT WAS MY OWN DUMB MISTAKE, CONFUSED THE VARIABLES</strong> </p> <p>I have the following while loop: </p> <pre><code>while (((pi.getFunds() - rmiPrice) &gt; 0) &amp;&amp; (rmi.getInventory() &gt; 0)) { } </code></pre> <p><code>pi.getFunds()</code> is a double that represents how much money a fictional object (pi) has, <code>rmiPrice</code> is a double that represents a price of a product (rmi) that pi wants to buy. <code>rmi.getInventory</code> checks how much rmi is in the inventory- what I'm trying to do is this- while pi can afford to buy 1 more rmi AND there is at least 1 rmi in inventory, execute what is in the while loop. </p> <p>What seems to be happening instead is that the <code>&amp;&amp;</code> is not being recognized as either the inventory or the funds are allowed to go below 0 as long as the other is positive- any idea what I'm doing wrong? </p> <p>I've also tried this:</p> <pre><code>int rmiInv = rmi.getInventory(); double piFunds = pi.getFunds(); while (((piFunds - rmiPrice) &gt; 0) &amp;&amp; (rmiInv &gt; 0)) {} </code></pre> <p>And tried playing around with the bracket combos</p> <pre><code>while ((piFunds - rmiPrice) &gt; 0 &amp;&amp; rmiInv &gt; 0) {} while (piFunds - rmiPrice &gt; 0 &amp;&amp; rmiInv &gt; 0) {} </code></pre> <p>nothing seems to work,</p> <p>Thank you!</p> http://stackoverflow.com/questions/1284399/java-doesnt-seem-to-be-working-in-a-while-loop/1284410#1284410 0 Answer by Olegious for Java- && doesn't seem to be working in a while loop... Olegious 2009-08-16T14:29:34Z 2009-08-16T14:29:34Z <p>Oh wow, I think I just used the wrong variables.... sorry guys.... How do I delete the question?</p> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence 0 Very basic HTML/CSS question- having a link line up with the rest of the sentence Olegious 2009-07-03T21:12:49Z 2009-07-04T11:59:39Z <p>So I want to have this: </p> <p>In association with Company Name</p> <p>What I'm getting right now is this: </p> <p>In association with Company Name</p> <p>The company name is a link, but I have my links be red with no underlining by setting them to a class in CSS. </p> <p>This is the html I have: </p> <pre><code>&lt;a&gt;In association with &lt;div id="bodylinks" class="bodylink"&gt;&lt;a href="url.com"&gt;Company Name&lt;/a&gt;&lt;/a&gt;&lt;/div&gt; </code></pre> <p>Here is the CSS associated with bodylink</p> <pre><code>.bodylink a { font: 14px Helvetica; color: red; text-decoration:none; } </code></pre> <p>So the company name gets thrown to the next line because it is a different div, how can I avoid this and still use the .bodylink a class to format the link?</p> <p>Thank you</p> http://stackoverflow.com/questions/1334624/java-displaying-images-in-a-jframe-the-image-file-being-displayed-is-updated-b/1334808#1334808 Comment by Olegious on Java- Displaying images in a JFrame, the image file being displayed is updated, but the JFrame keeps showing the old one Olegious 2009-08-26T14:16:27Z 2009-08-26T14:16:27Z also I'm not sure what you mean by &quot;make sure this is all done on the event dispatch thread&quot; http://stackoverflow.com/questions/1334624/java-displaying-images-in-a-jframe-the-image-file-being-displayed-is-updated-b/1334808#1334808 Comment by Olegious on Java- Displaying images in a JFrame, the image file being displayed is updated, but the JFrame keeps showing the old one Olegious 2009-08-26T14:11:55Z 2009-08-26T14:11:55Z I've tried putting this: population = new JPanel(); label = new JLabel(); population.add(label); population.setBackground(Color.white); into the constructor for the class that displays the JPEG and keeping the rest in the method showPopulationChart(), still same issue. I also tried moving the &quot;Icon = new ImageIcon(file)&quot; to the constructor, but all that does is displays only the image that was generated the last time the program ran, not even the image that was generated this time... http://stackoverflow.com/questions/1284399/java-doesnt-seem-to-be-working-in-a-while-loop/1284410#1284410 Comment by Olegious on Java- && doesn't seem to be working in a while loop... Olegious 2009-08-16T14:34:52Z 2009-08-16T14:34:52Z Heh, too many answers to delete.... http://stackoverflow.com/questions/1284399/java-doesnt-seem-to-be-working-in-a-while-loop Comment by Olegious on Java- && doesn't seem to be working in a while loop... Olegious 2009-08-16T14:23:38Z 2009-08-16T14:23:38Z what's worse is that sometimes it seems to work, and other time it doesnt... http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080886#1080886 Comment by Olegious on Very basic HTML/CSS question- having a link line up with the rest of the sentence Olegious 2009-07-03T21:27:13Z 2009-07-03T21:27:13Z great, thank you! i knew i was using div improperly in this case!