Search Results

Showing results 1 to 18 of 18
Search took 0.01 seconds.
Search: Posts Made By: FC Jamison
Forum: HTML and CSS May 27th, 2007
Replies: 2
Views: 3,603
Posted By FC Jamison
<link href="../style.css" rel="stylesheet" type="text/css" />
Forum: HTML and CSS Oct 7th, 2006
Replies: 5
Views: 1,872
Posted By FC Jamison
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
Posted By FC Jamison
Could he use something like



static_cast<int>(string[0]) - 48
Forum: C++ Sep 20th, 2006
Replies: 14
Views: 2,824
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
Here is the definition of algorithm...

http://en.wikipedia.org/wiki/Algorithm
Forum: C++ Sep 17th, 2006
Replies: 11
Views: 2,431
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
You understood that, Salem?
Forum: Windows NT / 2000 / XP Sep 17th, 2006
Replies: 1
Views: 3,061
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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
Posted By FC Jamison
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...
Showing results 1 to 18 of 18

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC