User Olegious - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T19:51:54Zhttp://stackoverflow.com/feeds/user/132966http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1284399/java-doesnt-seem-to-be-working-in-a-while-loop-1Java- && doesn't seem to be working in a while loop...Olegious2009-08-16T14:21:04Z2009-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) > 0) && (rmi.getInventory() > 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>&&</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) > 0) && (rmiInv > 0)) {}
</code></pre>
<p>And tried playing around with the bracket combos</p>
<pre><code>while ((piFunds - rmiPrice) > 0 && rmiInv > 0) {}
while (piFunds - rmiPrice > 0 && rmiInv > 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#12844100Answer by Olegious for Java- && doesn't seem to be working in a while loop...Olegious2009-08-16T14:29:34Z2009-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-sentence0Very basic HTML/CSS question- having a link line up with the rest of the sentenceOlegious2009-07-03T21:12:49Z2009-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><a>In association with <div id="bodylinks" class="bodylink"><a href="url.com">Company Name</a></a></div>
</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#1334808Comment by Olegious on Java- Displaying images in a JFrame, the image file being displayed is updated, but the JFrame keeps showing the old oneOlegious2009-08-26T14:16:27Z2009-08-26T14:16:27Zalso I'm not sure what you mean by "make sure this is all done on the event dispatch thread"http://stackoverflow.com/questions/1334624/java-displaying-images-in-a-jframe-the-image-file-being-displayed-is-updated-b/1334808#1334808Comment by Olegious on Java- Displaying images in a JFrame, the image file being displayed is updated, but the JFrame keeps showing the old oneOlegious2009-08-26T14:11:55Z2009-08-26T14:11:55ZI'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 "Icon = new ImageIcon(file)" 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#1284410Comment by Olegious on Java- && doesn't seem to be working in a while loop...Olegious2009-08-16T14:34:52Z2009-08-16T14:34:52ZHeh, too many answers to delete....http://stackoverflow.com/questions/1284399/java-doesnt-seem-to-be-working-in-a-while-loopComment by Olegious on Java- && doesn't seem to be working in a while loop...Olegious2009-08-16T14:23:38Z2009-08-16T14:23:38Zwhat'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#1080886Comment by Olegious on Very basic HTML/CSS question- having a link line up with the rest of the sentenceOlegious2009-07-03T21:27:13Z2009-07-03T21:27:13Zgreat, thank you! i knew i was using div improperly in this case!