1,034 Posted Topics
Re: When someone reffers you to this site. | |
I have a class Person and a Class Store. I didn't find any way to really inherit Store in class Person, so I created Class Store in a namespace called StoreClass. In the person class this doesn't work: using namespace StoreClass; it says that namespace StoreClass is undeclared. I also … | |
I have the following code: [code] ostream Person::operator<<(ostream& out, const Person& p) { out << "/n*********************************" << endl; out << "Name: " << Person::getName() << endl; out << "Age: " << Person::getAge() << endl; out << "Health: " << Person::getHealthLevel() << "%" << endl; out << "Happiness: " << Person::getHappinessLevel() … | |
Re: Maybe you should test lowercase letters instead of uppercase? | |
Re: You can always write your own renderer, but I'd guess that would be quit difficult. Anyways, not sure I fully understand your problem. | |
Re: [QUOTE=glamo]how to add a menubar in an applet :rolleyes:[/QUOTE] What's the question? | |
Re: There's no use; these lazy turds won't change, and won't ever know that JEdit owns all IDE's. | |
Re: That is simply amazing. Is it "real time"? I noticed a building missing in my neighborhood. | |
I'm finshed with teach yourself c++ in 21 days. It's been fairly good at teaching the basics, but I have two books I need to select from to read next: c++ programming language --bjarne stroustrup the c++ standard template library I just don't which to read next. Which would you … | |
I have a javscript function which opens a url....The only thing is I need it to open pages with parameters, and I'm not sure how to do it: [code] <html> <head> <title>LinkOpener</title> <script language="JavaScript"> <!-- function SearchTest(url, args) { // if args is null, do the following window.open(url,'win1','width=600,height=700, status, toolbar, … | |
| |
First of all, if this is not the right place please move. My computer overheats whenever I do something processor intensive. I was wondering if a notebook cooler actually works, and which one to get. | |
Re: I'm not sure there's an explanation for people who do such things. It's either an intentional mis-interpretation of their religion, or they just feel rejected by society....Who' knows? | |
| |
Re: AMD executes more instructions per cycle, which means it doesn't need to be as fast as P4's. Advanced Micro Devices all the way. I personally have a PM which I really like. I can play any game I want with just a 1.5ghz PM processor. | |
I can't seem to get this sorting alogorithm to work: [code] #include <iostream> void sortAssending(int nums[], int size); int main() { int nums[] = {175,167,160,164,183,187,188,179,176,175, 169,175,176,178,165,160,173,165,187,178}; sortAssending(nums, 20); for (int i=0; i<20; i++) { std::cout << nums[i] << std::endl; } system("PAUSE"); } void sortAssending(int nums[], int size) { for (int … | |
Re: I'm really sick of people asking for code. | |
Re: I thought it was just the opposite -> expensive. I think it will be quit an advancement if they can get it going. I know I'll appreciate it, because we don't live in an area where it's easy to get broadband, so we have a lot of trouble with our … | |
As an on going debate this must be settled by the onlooking audience. You decide. | |
Re: Process p = Runtime.getRuntime().exec("path/programname"); | |
Re: [QUOTE=Gotcha]If someone could help me doing a code in VB to do the following: The output should be a list of all posible ways in which (m) different Males and (f) different female could be line up if no two females could be together (one female can not stand after … | |
Re: String s = "lowercase"; String s2 = s.toUpperCase(); Remembers Strings are immutable so this won't work: String s = "lowercase"; s.toUpperCase(); | |
Re: I would do it, but I'm a terrible writer and I'm loaded down with homework everday. | |
Re: [QUOTE=cuih1d]HI , can anyone tell me how i can edit [U]rotation[/U] in my xsl? my xml lookes something like that: <root> <obj col="0xff0000" xPos="25" yPos="0" widht="2" height="2" [B]angle="30"[/B] /> </root> my question is how can i write the angle in the xsl? thanks[/QUOTE] Not the right forum to ask these … | |
Re: Nice, but cpanel has tools like this which do the same thing and much more. | |
Re: Latex is simply a development environment, right? Couldn't you just store the whole input into a string and then print it out with the answer? | |
Re: I'd personally make something educational. Most everyone does games as their final, if not a chat application. The only problem with games, are the ones that can be done with a 1 person team usually aren't that great. The really nice games take math and logic not many people have. | |
Re: Since your using swing it's easy: In the action performed method, just check which button was clicked and then add this line of code: System.exit(0); for example: [code] public void actionPerformed(ActionEvent ae) { if (ae.getSource() == doneButton) { System.exit(0); } } [/code] | |
I've got the following code: Code: @mail($address, $title, $message , "From: ". $from . "\nContent-Type: text/plain; charset=utf-8"); Which sends a verification email to a registered user. The only problem is the email is considered bulk, and ends up in the bulk folder, or doesn't show up at all. I'm thinking … | |
Re: I think he wanted to extend the sound: You are a: L-o-o-o-o-o-o-ser. I think that's what was meant, right J? | |
Re: That's different JVM implementations. You're getting the major/minor version error, because you might have compiled a project in 1.5 and trying to run it on 1.4. | |
Re: Here's my 30 second solution: [code] boolean compareArrays(int* array[]) { int start = array[0]; for (int i=1; i<arraylength; i++) { if (array[i] > start) { start = array[i]; } else { return false; } } return true; } [/code] I haven't tested it, so I don't even know if it … | |
I've got a lot of css in my page, but I can't seem to figure out how to change the table header, and table border colors.... I've tried this: [code] table.td { color: #ffffff} table.th { color: #ffffff} [/code] But that doesn't work. Do you know how to fix this? | |
I'm sorry if this isn't in the right place. The webhost I have has been hacked several times. Today it was hacked twice, and it's causing some big traffic loss for me. Should I stick with this host, or do they realy have issues with being hacked? | |
Re: What's the error you're recieveing, or what problem is occuring during runtime. | |
Re: Hey, I'm from hendersonville, NC!!!! That's about 2.5 - 3 hours away from Charlotte(right below asheville). What's your companies name? | |
I know it's possible, but I'm not sure how. I need several services to use one database. For instance, I need blogs,chat, and a forum to share a database so that when you sign up at one place, you are automatically signed up at all of them. | |
Re: No. Why did they put a piece of paper in front of what he's doing? How come he went in the other way where we couldn't see him do it? | |
Re: [QUOTE=wally_lawless][URL=http://www.daniweb.com/techtalkforums/announcement8-2.html]Read This[/URL] and post what you've got so far. Sounds like a homework assignment to me, isn't the whole idea of going to school so that you can LEARN something? Nothing is easy the first time you do it.[/QUOTE] Finally, a person who didn't do the homework for the person. | |
Re: So what's the question? What are you having trouble with? Do you want me to write the application for you? | |
I'm trying to pass arguments to my program so that I can store them into an array. For some reason my IDE/compiler is treating the blank space in between arguments as an argument. I'm using bloodshed, but it doesn't say anything about a seperation character. Can anyone tell me what … | |
Re: Ok, I think I see what you're having trouble with....You don't know what to do when it pasts the first test(first and last character are not @), but you're not sure how to check if it's somewhere in the middle....As soon as you find one you could return true: [code] … | |
For some reason this code is not correctly displaying the output....Is it a compiler issue? I'm not getting any affect from the width method, nor from the fill method. However, when I include <iomanip> and make a call to setw(int) then it works, but this code doesn't: Code: #include <cstdlib> … | |
Re: [QUOTE=J_Search][url]http://www.experts-exchange.com/[/url]. Perhaps you don't really have a plan and wherever you go from here is fine with you. Either one is great, I was just curious. Thanks. J_[/QUOTE] Experts Exchange? Oh yeah, those are the turds that charge you out the butt for the same FREE help I get here. | |
| |
Re: You need an html file that will run the applet: [code] <html> <head><title>Applet</title></head> <body> <applet code="AppletName.class" width="500" height="500"> Browser does not support java applets </applet> </body> </html> [/code] | |
Re: Wouldn't that be annoying? And remember, Java IS NOT Javascript. Javascript IS NOT Java. | |
Re: [QUOTE=jakeday] (remember i'm only 3 weeks old ;-)[/QUOTE] You're the youngest programmer I know. -Just messing with you. :cheesy: |
The End.