Forum: HTML and CSS May 27th, 2007 |
| Replies: 2 Views: 3,603 <link href="../style.css" rel="stylesheet" type="text/css" /> |
Forum: HTML and CSS Oct 7th, 2006 |
| Replies: 5 Views: 1,872 Hmm...I have never noticed this problem...but I have high speed DSL. Are you sure there is not an onload function floating aruond in there somewhere that tells the browser to wait until the page is... |
Forum: C Sep 20th, 2006 |
| Replies: 11 Views: 6,738 Could he use something like
static_cast<int>(string[0]) - 48 |
Forum: C++ Sep 20th, 2006 |
| Replies: 14 Views: 2,824 True...the data types and sizes shown are typical on Windows systems, and the sizes and ranges may be different on other operating systems...
You can determine the size of an integer using... |
Forum: C++ Sep 20th, 2006 |
| Replies: 14 Views: 2,824 This is because of the size limitations of data types.
an int is only 4 bytes...and has a range from -2,147,483,648 to 2,147,483,647
A double uses 8 bytes (and some floating point algorithm... |
Forum: HTML and CSS Sep 19th, 2006 |
| Replies: 8 Views: 10,455 I did this a month or so back for a client.
It will at least give you an idea of how to use an array to populate a table. |
Forum: C Sep 18th, 2006 |
| Replies: 4 Views: 2,052 If you must use a double...for whatever reason...you can use
if (loanYears - static_cast<int>(loanYears) != 0) |
Forum: C++ Sep 18th, 2006 |
| Replies: 6 Views: 1,471 Ah..I just saw the bottom part...the minute hour thing is kind of tricky
convert your start and end time to minutes...so that all of your calculations are done in minutes...
the final step... |
Forum: C++ Sep 18th, 2006 |
| Replies: 6 Views: 1,471 Logically...you have a start time and an end time stored in variables.
create a third variable to hold the total time (start time - end time)
multiply the total time by 0.75 (totalTime*0.75)... |
Forum: C++ Sep 17th, 2006 |
| Replies: 2 Views: 3,804 Here is the definition of algorithm...
http://en.wikipedia.org/wiki/Algorithm |
Forum: C++ Sep 17th, 2006 |
| Replies: 11 Views: 2,431 Here's the big glaring error I see in your code...
string string;
You can't use "string" as a variable name. |
Forum: C++ Sep 17th, 2006 |
| Replies: 11 Views: 2,431 Ha.! I remember my C++ instructor promising not to give us a bad grade on an assignment if we promised not to use global variables...lol |
Forum: C Sep 17th, 2006 |
| Replies: 6 Views: 970 You understood that, Salem? |
Forum: Windows NT / 2000 / XP Sep 17th, 2006 |
| Replies: 1 Views: 3,061 If you install the wrong codecs...some funky things can happen.
I would try uninstalling the codecs and seeing if I could play a video I know to be safe...if that doesn't work, and you have your... |
Forum: IT Professionals' Lounge Sep 7th, 2006 |
| Replies: 6 Views: 2,007 I found the problem...
You have
<p class=bullets11bldblck align=center>
<br>
<noscript>
<object... |
Forum: JavaScript / DHTML / AJAX Aug 11th, 2006 |
| Replies: 8 Views: 21,965 This will set the height of your div to the height of the browser window:
NOTE: 'divID' is the id name of the div in the html document.
window.onload = setDiv;
function setDiv() {
var... |
Forum: HTML and CSS Aug 3rd, 2006 |
| Replies: 13 Views: 4,294 Well crap...that only works in IE.
The latest Netscape and FireFox browsers won't let javascript close a window it did not open. |
Forum: JavaScript / DHTML / AJAX Aug 3rd, 2006 |
| Replies: 4 Views: 3,854 This code is used specifically to redirect one Web page to another (i.e. if your Web site has moved, put this code at the old location)
<html>
<head>
<title>Redirect... |