User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 373,889 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,878 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 337
Search took 0.03 seconds.
Posts Made By: paradox814
Forum: C++ May 11th, 2008
Replies: 3
Views: 141
Posted By paradox814
Pointer Question

I am stuck on something that I know is so simple that I can't figure it out...

I have a BST class, and a private item:
Node<K> *root; // root pointer


//and in a seperate class I have...
template...
Forum: Windows NT / 2000 / XP / 2003 May 7th, 2008
Replies: 4
Views: 322
Posted By paradox814
Re: Always underline the Keyboard shortcut letter

woohoo, thanks thunderstorm, worked like a charm!
Forum: Windows NT / 2000 / XP / 2003 May 7th, 2008
Replies: 4
Views: 322
Posted By paradox814
Always underline the Keyboard shortcut letter

When you press the ALT button, a letter will usually appear underlined so that you can press ALT+letter that is underlined to do a certain shortcut. My question is, I remember finding a way so that...
Forum: C++ Mar 17th, 2008
Replies: 2
Views: 302
Posted By paradox814
Re: Help with function declaration

Thanks! I guess I should have been able to figure that out!
Forum: C++ Mar 17th, 2008
Replies: 2
Views: 302
Posted By paradox814
Help with function declaration

I am working with a function declaration of:
int func1(char *, unsigned int)

to the best of my understanding, I am not allowed to modify this. Now my question is that when I actually write this...
Forum: Java Dec 3rd, 2007
Replies: 6
Views: 290
Posted By paradox814
Re: generics in java

well then I can pass it as an Integer and a Float
Forum: Java Dec 3rd, 2007
Replies: 6
Views: 290
Posted By paradox814
Re: generics in java

well I have either an int or a float all the calculations are the same except for the constructor, where I need to call either java.util.Random nextInt or nextFloat
Forum: Java Dec 3rd, 2007
Replies: 3
Views: 1,832
Posted By paradox814
Re: Export/Import Excel in java

use a csv extenion on any text file
for example, a file named output.csv
with the following data:
a,b,c
1,2,3
x,y,x

would produce the following in excel,
cell a1: a
cell b1: b
Forum: Java Dec 3rd, 2007
Replies: 6
Views: 290
Posted By paradox814
generics in java

I am using generics in java, and I want to know how I can test to see if I have a int or a float? Is there some sort of type-testing? I'm sure there is, I just need someone to help point me in the...
Forum: C++ Nov 7th, 2007
Replies: 4
Views: 570
Posted By paradox814
Re: what does func(int x, int y, int z=1) mean?

aah thanks, so it's kinda of like overloading without actually overloading!
Forum: C++ Nov 7th, 2007
Replies: 4
Views: 570
Posted By paradox814
what does func(int x, int y, int z=1) mean?

what does it mean when you say z=1? Does it ignore what value you pass into the function? What is this called?
Forum: Java May 14th, 2007
Replies: 6
Views: 892
Posted By paradox814
Re: Please Name this Swing Component?

I was talking about the other component, those two I already knew
Forum: Java May 13th, 2007
Replies: 6
Views: 892
Posted By paradox814
Please Name this Swing Component?

I have been searching for a long time, and I cannot remember the name of this swing component that I attached in the image.

It's the one that is captioned "Please input the...." I don't need help on...
Forum: OS X Mar 8th, 2007
Replies: 7
Views: 1,732
Posted By paradox814
Re: file sharing (osx to osx)

I agree joe, but given that there is only 1 user in this group (and assuming that's the way it stays) then i'm not too worried about this, but thanks for the info, as I'm more of a windows guy.
Forum: OS X Mar 8th, 2007
Replies: 7
Views: 1,732
Posted By paradox814
Re: file sharing (osx to osx)

ok I think I am going to have to go to my "Plan B" route, I created a new regular user. I chmod that users documents folder (using sudo) to 770 and created a softlink to that folder in my documents...
Forum: OS X Mar 8th, 2007
Replies: 7
Views: 1,732
Posted By paradox814
Re: file sharing (osx to osx)

again this wouldn't work because I just want to share say 2 or 3 folders on the network that you can see when you login, I do not want to see everything that I would have access to if I was in front...
Forum: OS X Mar 8th, 2007
Replies: 7
Views: 1,732
Posted By paradox814
Re: file sharing (osx to osx)

Actually the entire hd is there. If you log in as guest, you can only see that a drop box exists (of course you can't see the contents of the drop box).

But I'm talking about when you login as a...
Forum: OS X Mar 8th, 2007
Replies: 7
Views: 1,732
Posted By paradox814
file sharing (osx to osx)

I want to share files between two mac osx computers, connected in the same network.

These computers are password protected etc...

so after I enable Personal File Sharing in the System Preferences I...
Forum: PHP Mar 6th, 2007
Replies: 2
Views: 1,548
Posted By paradox814
Re: How to Grab the data from other websites?

you can use commands such as fopen to open files on the internet$handle = fopen("http://www.example.com/", "r");then if you need more data use regular expressions to parse through whatever data you...
Forum: Web Developers' Lounge Feb 1st, 2007
Replies: 2
Views: 1,819
Posted By paradox814
Re: flash and mod_rewrite urls

macromedia flash 8
Forum: PHP Jan 13th, 2007
Replies: 5
Views: 2,039
Posted By paradox814
Re: PHP and scheduled tasks

why not just use exec( 'php /home/username/routine_task.php > /home/username/routine_task.log &' );

using php allows you the ability to keep the code away from website so the code is not public (ie...
Forum: PHP Jan 11th, 2007
Replies: 5
Views: 2,039
Posted By paradox814
Re: PHP and scheduled tasks

a cron job would be the ideal case, check with your host to see if they allow them.
Forum: PHP Jan 8th, 2007
Replies: 11
Views: 2,437
Posted By paradox814
Re: File Upload Help

actually i believe the max execution time of a script wouldn't matter in this case, because uploading a file as far as php cares is not part of the script execution time.
Forum: Web Developers' Lounge Jan 3rd, 2007
Replies: 2
Views: 1,819
Posted By paradox814
flash and mod_rewrite urls

I have been trying to get a flash application to load with a mod_rewrite url, but it doesn't get any of the arguments passed to it.

for instance suppose this works just...
Forum: Website Reviews Dec 29th, 2006
Replies: 2
Views: 1,063
Posted By paradox814
Re: Please review my programming and web design tutorials site

there are still a lot of links that don't work, for instance most of these images are broken:
http://www.hotcoding.com/photoshop/cm/25445.html
also every single link i clicked on in the php category...
Forum: Website Reviews Dec 29th, 2006
Replies: 4
Views: 1,112
Posted By paradox814
Re: Please Review This Site!!!

the menu bar doesn't display correctly in firefox
Forum: PHP Dec 29th, 2006
Replies: 3
Views: 4,344
Posted By paradox814
Re: URL Validation

that looks good, except that only letters, numbers, and hypens are allowed in a domain name (underscores are not allowed), and due to ICANN limitation domain names are limited to 64 characters. This...
Forum: PHP Dec 27th, 2006
Replies: 11
Views: 2,437
Posted By paradox814
Re: File Upload Help

to see your PHP upload size limit, make a file called phpinfo.php
and inside of it, place the following php code:

<? phpinfo() ?>then access that page from your browser and press Ctrl+F to search...
Forum: Windows NT / 2000 / XP / 2003 Dec 21st, 2006
Replies: 7
Views: 1,981
Posted By paradox814
Re: Restoring Deleted D: drive

if my previous post doesn't work, then I would recommend doing a system restore to a week ago, or at least 2 days before your little "house guest" ruined your computer

click...
Forum: Windows NT / 2000 / XP / 2003 Dec 21st, 2006
Replies: 7
Views: 1,981
Posted By paradox814
Re: Restoring Deleted D: drive

it could have been (but unlikely) removed, unfortanately it's a lot harder to readd it then it is to remove it.

so to re-add,

goto control panel
if your not already in classic view, switch to...
Forum: C Dec 20th, 2006
Replies: 7
Views: 2,003
Posted By paradox814
Re: need help, need to generate 10 random numbers, such that their sum is less than 1

ok if I understand you right, you want the sum of all your numbers to be less than 1, and you want the sum of the reciprocals to be greater than 0.75? If so...

Well this is cheating, but you can...
Forum: PHP Dec 20th, 2006
Replies: 6
Views: 3,537
Posted By paradox814
Re: youtube

if you have a youtube script, just copy and paste the code as they gave it to you from there website, you do not need to do anything else to it to get it running. Paste it as HTML and not PHP
Forum: Windows NT / 2000 / XP / 2003 Dec 20th, 2006
Replies: 1
Views: 630
Posted By paradox814
Re: File Serving

Another option: using a webserver (within the network)
if you have windows xp professional then you can use IIS to run a webserver on your computer. If you do not have win xp professional then you...
Forum: Windows NT / 2000 / XP / 2003 Dec 20th, 2006
Replies: 2
Views: 3,687
Posted By paradox814
Re: Changing a background in a batch script

go here: http://www.winguides.com/registry/display.php/1097/

they show how to hack the registry to change the background. Be wary of that hack, because I believe it might actually be in: HKEY USERS\...
Forum: PHP Dec 18th, 2006
Replies: 4
Views: 1,718
Posted By paradox814
Re: Forcing an Exit From PHP

well if you are always going to be using the same html code for a given page, then what you could do is, put it in a different page and then just include it wherever needed, for example...

<?
//a...
Forum: Windows Software Dec 11th, 2006
Replies: 2
Views: 1,415
Posted By paradox814
Re: MS Word 2003: How to Keep Image Backgrounds When Printing

1. Click "Tools" then "Options".
2. When the "Options" multi-tabbed dialog box appears, click the "Print" tab.
3. Check "Background colors and images".
4. Click "OK" to close the dialog box.
Forum: PHP Dec 11th, 2006
Replies: 2
Views: 818
Posted By paradox814
Re: links and php

it should see them just like Puckdropper said, unless they are specifically blocked by a robots.txt (http://en.wikipedia.org/wiki/Robots.txt) file, or you have a nofollow...
Forum: HTML and CSS Dec 6th, 2006
Replies: 8
Views: 1,886
Posted By paradox814
Re: dynamically update pages

I can't think of any strictly HTML/CSS ways of doing this, anything I can think of requires, PHP, JSP, ASP, CFM or some other dynamic driven website. It is very easy to use any of these languages and...
Forum: HTML and CSS Dec 5th, 2006
Replies: 1
Views: 706
Posted By paradox814
image map

I want to know how to do an image map for all of the unlinked portion...

ie everything that isn't explicitly already mapped out, can I have it by default link to another page, or do I need to map...
Forum: PHP Nov 30th, 2006
Replies: 1
Views: 927
Posted By paradox814
Re: Problem

can you please post the code so we can see what is wrong, but it sounds like you are using an index in an array that you have not previously defined, but we would need to look at the code to confirm...
Showing results 1 to 40 of 337

 
All times are GMT -4. The time now is 4:15 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC