Search Results

Showing results 1 to 40 of 119
Search took 0.01 seconds.
Search: Posts Made By: JugglerDrummer
Forum: C++ Oct 19th, 2009
Replies: 2
Views: 225
Posted By JugglerDrummer
ending bracket needed after earth constructor before main, and note sure if you can put comma's in numbers. What problems are you encountering?
Forum: DaniWeb Community Feedback Oct 15th, 2009
Replies: 3
Views: 896
Posted By JugglerDrummer
(I'm sure this has discussed before, so could someone post a link? The search bar is unhelpful)

If you've been part of the site longer, you're opinion matters more than everybody else's? Why? If I...
Forum: DaniWeb Community Feedback Oct 15th, 2009
Replies: 2
Views: 834
Posted By JugglerDrummer
If you hit any of the options in the "lastest posts" they bring you to a search, and the url had a numerical id of the search. If I bookmark it, it leads me to a dead page within hours. How can I...
Forum: Java Oct 14th, 2009
Replies: 5
Views: 264
Posted By JugglerDrummer
msgLength / smsLength = numMsgs;

This isn't allowed as you probably can't (and definitely don't want to) assign a value to the quotient of 2 numbers. do you want

numMsgs = msgLength /...
Forum: HTML and CSS Oct 13th, 2009
Replies: 5
Views: 503
Posted By JugglerDrummer
easy way to make them appear next to each other is give them a float: left and make sure they can fit next to each other comfortably. this should help :D...
Forum: C++ Oct 11th, 2009
Replies: 3
Views: 198
Posted By JugglerDrummer
try having the destructor output something, and outputting iProducts in various places, like at the beginning and between the two constructions. :D
Forum: Java Oct 11th, 2009
Replies: 3
Views: 354
Posted By JugglerDrummer
where's ProductDB.inventory declared? you can't just start referencing variables in a function when they were declared in main. You might want to pass it as an argument or declare it somewhere else....
Forum: C++ Oct 6th, 2009
Replies: 8
Views: 1,929
Posted By JugglerDrummer
frankly I bet D doesn't stand a chance against C#
Forum: C++ Oct 5th, 2009
Replies: 2
Views: 171
Posted By JugglerDrummer
Which part do you want help with? for starters, determining the fib sequence will look something like this:

int[size] num;
num[0]=1;
num[1]=1;
int index=2;
while(notdone) {...
Forum: HTML and CSS Oct 5th, 2009
Replies: 1
Views: 191
Posted By JugglerDrummer
answer: "yes, if you ask a clear question and show effort" :D
Forum: Graphics and Multimedia Sep 22nd, 2009
Replies: 15
Views: 1,188
Posted By JugglerDrummer
could you post a link to where you've seen it before? If the user has the capability to play it in the browser, then it won't want them to open it in a different app. You could have them download it,...
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2009
Replies: 1
Views: 362
Posted By JugglerDrummer
var aNumber = parseFloat((window.prompt("hello, what's the max number?","")) ;


function getRoundedRandomNumber() //no arg, use already existing var

// round the number generated by the random...
Forum: JavaScript / DHTML / AJAX Sep 20th, 2009
Replies: 2
Views: 689
Posted By JugglerDrummer
define "neither works" :)
Forum: C++ Sep 20th, 2009
Replies: 9
Views: 257
Posted By JugglerDrummer
test_player.health

You can manipulate it like a normal variable, aka get and set the value :D
Forum: JavaScript / DHTML / AJAX Sep 20th, 2009
Replies: 5
Views: 267
Posted By JugglerDrummer
can you be a little clearer? give a rundown of your desired behavior :)
Forum: JavaScript / DHTML / AJAX Sep 20th, 2009
Replies: 5
Views: 720
Posted By JugglerDrummer
You can definitely do the timeout thing with setTimeout( 300000 ); (number of milliseconds in 5 minutes). The interesting part would be keeping it running on a different page. It would restart...
Forum: JavaScript / DHTML / AJAX Sep 20th, 2009
Replies: 5
Views: 267
Posted By JugglerDrummer
if(document.form1.partpay[0].checked && document.form1.paidnotes.value != ""){
alert("DON'T FORGET To Record this Part Payment into the 'Part Payment Notes' Field");...
Forum: JavaScript / DHTML / AJAX Sep 17th, 2009
Replies: 2
Views: 691
Posted By JugglerDrummer
document.getElementById("your id").onclick = function() {
var textbox=document.getElementById("your id");
textbox.value = textbox.value.toLower();
textbox.value = textbox.value.substring(1,...
Forum: C++ Sep 16th, 2009
Replies: 45
Views: 1,134
Posted By JugglerDrummer
perfect time for class factoring! see how both classes have these methods:

void setBalance(double amount);

void withdraw(double amount);

void deposit(double amount);

double getBalance();
Forum: JavaScript / DHTML / AJAX Sep 15th, 2009
Replies: 3
Views: 962
Posted By JugglerDrummer
Just out of curiousity, why do you need to do this in javascript? you'll use server side code to actually do the insertion, and since users can just turn js off you need to perform important data...
Forum: Python Sep 15th, 2009
Replies: 16
Views: 554
Posted By JugglerDrummer
The global statement allows you to break a variable out of the function scope it'd normally be contained in if you just defined it in a function. The "Global variables are evil" paradigm says that...
Forum: Java Sep 13th, 2009
Replies: 7
Views: 357
Posted By JugglerDrummer
Pretty much all you have to do is implement the interface and define a compareTo method. Here's the interfaces code:

public interface Comparable<T> {
public int compareTo(T o);
}

what SOS...
Forum: HTML and CSS Sep 13th, 2009
Replies: 9
Views: 496
Posted By JugglerDrummer
+1 for not dumping the entire code on us. :D

-1 for using table based layout.

Could we see the related CSS too? What selector did you use with padding-right=15%; ?
Forum: HTML and CSS Sep 13th, 2009
Replies: 5
Views: 1,010
Posted By JugglerDrummer
An html websites would give you the html side of things. If you want to do the server side part, look at some php/asp.net or other server side form tutorials. :D
Forum: HTML and CSS Sep 13th, 2009
Replies: 9
Views: 496
Posted By JugglerDrummer
could you post the code?
Forum: HTML and CSS Sep 12th, 2009
Replies: 9
Views: 496
Posted By JugglerDrummer
You can just set the padding to a relative value:


selector {
padding-right: 15%;
}

You'll need to play around with the percentage a bit, depending on the size of the container and the size...
Forum: Legacy and Other Languages Sep 10th, 2009
Replies: 1
Views: 996
Posted By JugglerDrummer
what's your question? we're not just going to give you the code.

Ask this in the web dev.ruby forum. ;D
Forum: DaniWeb Community Feedback Sep 10th, 2009
Replies: 1
Views: 442
Posted By JugglerDrummer
When I look at unanswered-threads::all, I see at least 10 posts by new members in Community intro. Its a great forum, but the priority of those questions being answered is lower that actual tech...
Forum: JavaScript / DHTML / AJAX Sep 10th, 2009
Replies: 2
Views: 540
Posted By JugglerDrummer
Its definitely possible using javascript. If you want to change the effect, if you are a code monkey you can just edit the library's code. Otherwise, I would advise you google the library's features,...
Forum: JavaScript / DHTML / AJAX Sep 10th, 2009
Replies: 2
Views: 417
Posted By JugglerDrummer
suggestion: if you want to have autoplay music/video, please offer some way to turn it off. I had to ad block the thing to make it shut up. :D
Forum: HTML and CSS Sep 9th, 2009
Replies: 7
Views: 675
Posted By JugglerDrummer
You've got the js hooked up all right, its just that the image isn't in that <a> in the code of your site. If you move the image into it, you should get the desired effect. ;D
Forum: HTML and CSS Sep 9th, 2009
Replies: 2
Views: 360
Posted By JugglerDrummer
Forum: Java Sep 9th, 2009
Replies: 2
Views: 241
Posted By JugglerDrummer
and you're question is? :D
Forum: Site Layout and Usability Aug 18th, 2009
Replies: 2
Views: 808
Posted By JugglerDrummer
Would be good as a code snippet and maybe an article on codeproject. ;D
Forum: JavaScript / DHTML / AJAX Aug 18th, 2009
Replies: 2
Views: 391
Posted By JugglerDrummer
tutorial on javascript associative arrays (http://www.pageresource.com/jscript/jarray2.htm)

I can't really tell what you're problem is, could you elaborate?
Forum: PHP Aug 18th, 2009
Replies: 3
Views: 416
Posted By JugglerDrummer
getting the text from a word document is something that only microsoft word can do. You're going to need to employ some special program or way to get the text out, as you need something that...
Forum: PHP Aug 15th, 2009
Replies: 4
Solved: How to...
Views: 367
Posted By JugglerDrummer
there's an image in the table that is the editing box, and use javascript to remove it when the box is clicked. :)
Forum: Java Aug 15th, 2009
Replies: 3
Views: 472
Posted By JugglerDrummer
first of all DO NOT RUSH. Take it steady, or don't do it at all. the only way to success is through work. as to where to start, google beginning java tutorials, and start learning and practicing. :D...
Forum: JavaScript / DHTML / AJAX Aug 12th, 2009
Replies: 4
Views: 427
Posted By JugglerDrummer
You are modifying the text-node that is the first child of the element "trans", setting its contents to the translation



<script type="text/javascript">
function translate(translation) {...
Forum: JavaScript / DHTML / AJAX Aug 12th, 2009
Replies: 1
Views: 383
Posted By JugglerDrummer
<FORM>
<INPUT TYPE="button" VALUE="Add to Favorites" onClick='window.external.AddFavorite(location.href, document.title);'>
</FORM>
Showing results 1 to 40 of 119

 


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

©2003 - 2009 DaniWeb® LLC