1,034 Posted Topics

Member Avatar for vex
Member Avatar for kAtHicKa
Member Avatar for server_crash

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 …

Member Avatar for server_crash
0
149
Member Avatar for server_crash

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() …

Member Avatar for prog-bman
0
559
Member Avatar for jtxay
Member Avatar for Gargol

You can always write your own renderer, but I'd guess that would be quit difficult. Anyways, not sure I fully understand your problem.

Member Avatar for jwenting
0
369
Member Avatar for glamo

[QUOTE=glamo]how to add a menubar in an applet :rolleyes:[/QUOTE] What's the question?

Member Avatar for hooknc
0
213
Member Avatar for jwenting

There's no use; these lazy turds won't change, and won't ever know that JEdit owns all IDE's.

Member Avatar for jwenting
0
542
Member Avatar for Stanislaw

That is simply amazing. Is it "real time"? I noticed a building missing in my neighborhood.

Member Avatar for campkev
0
572
Member Avatar for server_crash

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 …

Member Avatar for server_crash
0
124
Member Avatar for server_crash

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, …

Member Avatar for server_crash
0
195
Member Avatar for dntchaseme
Member Avatar for server_crash

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.

Member Avatar for LinkWithUs
0
116
Member Avatar for pulse

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?

Member Avatar for jwenting
0
139
Member Avatar for 5starAffiliates
Member Avatar for dryvit

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.

Member Avatar for server_crash
0
129
Member Avatar for server_crash

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 …

Member Avatar for server_crash
0
123
Member Avatar for pandiarajan_ar
Member Avatar for ! !

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 …

Member Avatar for kAtHicKa
0
515
Member Avatar for server_crash

As an on going debate this must be settled by the onlooking audience. You decide.

Member Avatar for server_crash
0
2K
Member Avatar for glamo
Member Avatar for server_crash
0
88
Member Avatar for Gotcha

[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 …

Member Avatar for jwenting
0
226
Member Avatar for blastocyst

String s = "lowercase"; String s2 = s.toUpperCase(); Remembers Strings are immutable so this won't work: String s = "lowercase"; s.toUpperCase();

Member Avatar for server_crash
0
56
Member Avatar for Catweazle

I would do it, but I'm a terrible writer and I'm loaded down with homework everday.

Member Avatar for Catweazle
0
168
Member Avatar for cuih1d
Re: xsl

[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 …

Member Avatar for server_crash
0
102
Member Avatar for smallmight
Member Avatar for server_crash
0
150
Member Avatar for stevenr

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?

Member Avatar for stevenr
0
96
Member Avatar for yupiii

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.

Member Avatar for cheenu78
0
169
Member Avatar for jeni_4

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]

Member Avatar for hooknc
0
98
Member Avatar for server_crash

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 …

Member Avatar for fsn812
0
135
Member Avatar for lain

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?

Member Avatar for alc6379
0
446
Member Avatar for nabakishore

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.

Member Avatar for jwenting
0
254
Member Avatar for gropedersen

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 …

Member Avatar for Rashakil Fol
0
5K
Member Avatar for server_crash

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?

Member Avatar for server_crash
0
132
Member Avatar for server_crash

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?

Member Avatar for ! !
0
141
Member Avatar for mahes_

What's the error you're recieveing, or what problem is occuring during runtime.

Member Avatar for mahes_
0
165
Member Avatar for HostChart

Hey, I'm from hendersonville, NC!!!! That's about 2.5 - 3 hours away from Charlotte(right below asheville). What's your companies name?

Member Avatar for server_crash
0
111
Member Avatar for server_crash

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.

Member Avatar for zippee
0
111
Member Avatar for cancer10

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?

Member Avatar for cancer10
0
165
Member Avatar for N17scj

[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.

Member Avatar for server_crash
0
99
Member Avatar for riabear123

So what's the question? What are you having trouble with? Do you want me to write the application for you?

Member Avatar for riabear123
0
544
Member Avatar for server_crash

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 …

Member Avatar for Ancient Dragon
0
1K
Member Avatar for karen_CSE

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] …

Member Avatar for hooknc
0
184
Member Avatar for lamundo
Member Avatar for server_crash

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> …

Member Avatar for server_crash
0
125
Member Avatar for J_Search

[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.

Member Avatar for goldeagle2005
0
412
Member Avatar for isblevins

JSP wiki....Still not enough, but might be something cool to add.

Member Avatar for jwenting
0
178
Member Avatar for stackOverflow

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]

Member Avatar for server_crash
0
90
Member Avatar for userb

Wouldn't that be annoying? And remember, Java IS NOT Javascript. Javascript IS NOT Java.

Member Avatar for jwenting
0
93
Member Avatar for jakeday

[QUOTE=jakeday] (remember i'm only 3 weeks old ;-)[/QUOTE] You're the youngest programmer I know. -Just messing with you. :cheesy:

Member Avatar for server_crash
0
3K

The End.