- Strength to Increase Rep
- +16
- Strength to Decrease Rep
- -4
- Upvotes Received
- 349
- Posts with Upvotes
- 283
- Upvoting Members
- 140
- Downvotes Received
- 42
- Posts with Downvotes
- 34
- Downvoting Members
- 30
Programmer
Re: > Here is my code: Yuck. Learn to use [noparse][code] and [/code] tags.[/noparse] | |
Re: Believe it or not, Visual Basic has a learning curve. And it's made all the more evident when the programmer is impatient or gets angry at people who try to help him/her. | |
Re: Your cursor image library might be corrupt or nonexistant; try downloading a (regular) cursor set and see if it changes anything... Another possibility is that there's something wrong with your video card drivers. Consider reinstalling/updating them. | |
Re: There was probably a power surge before the power went out, which will of course cause damage to any electrical equipment plugged into something other than a surge-protector. Your computer's power supply is probably dead, as that usually sacrifices itself for the rest of the computer. Fortunately, power supplies are … | |
Re: >Can you guys explain why Wolf's solution works? The first getline() works like it's usually used: it grabs an entire line, so in other words, uses the newline as a delimiter. Then for each line that getline() grabs, it's popped into a stringstream (so that getline can use it again), … | |
Re: This looks more like C than C++... Anyway, to be able to do something like you described, you'll need real-time I/O. This isn't supported by standard C/C++, so you'll have to look into your compiler documentation for more information regarding this (or get a third-party library to handle it). Oh, … | |
Re: [quote=bones brigade;317610]how do i find the password?[/quote] Depends on your router model and make. Usually the password is documented in the manual, so I suggest checking there first. If you for some reason don't have it, try looking here: [URL]http://www.phenoelit.de/dpl/dpl.html[/URL] Lastly, if you or someone else has already set the … | |
Re: Obviously you haven't looked very carefully at the man page. Copying directory trees (recursive mode): cp -r Copying directory trees, viewing all files copied (verbose mode): cp -rv You can string any of the cp options together, like that. [url]http://linux.about.com/od/commands/l/blcmdl1_cp.htm[/url] | |
Re: >can u post the finally source code? I guess this is what Dani meant when she said we were getting 1000% more user registrations with a floating popup window. | |
Re: [quote=WaltP;298328]I'm using IMG code and pointing it at my picture too (you can see qhat I did when you quoted me).... I guess you need to tell me what you did [I]differently [/I]than me rather than just what you did. IFAIK I did exactly the same thing.[/quote] I think it's … | |
Re: What part of the error message are you having difficulty comprehending? | |
Hitachi has now announced a 1-terabyte internal hard drive, claiming they're the first to unveil a 1 terabyte hard drive in the industry. It doesn't sound terribly impressive, given the fact that storage mediums are increasing faster than you can blink an eye. However, they have done quite a feat … | |
Re: Here is my contribution. Many of these problems occur frequently on the forums, but I thought these were worth saving and so I reproduced some of them here.[LIST] [*]Write a program that allows you to input students' scores and weights. The program should then calculate a weighted average and score … | |
User input/output is a key component in the programs you write, yet most online tutorials just provide a quick-and-dirty method of grabbing data. In other words, it works right up until the point the user does something unexpected. In this tutorial you will learn how to avoid the common mistakes … | |
Re: [quote=Virii;185460]I have the book "Wiley's Teach Yourself C++", is this book at all useful or should I invest in some of the other books that are listed above?[/quote] [quote]Any "teach yourself XXX in YYY" or "XXX for dummies" book isn't worth the paper it's printed on if you're serious about … | |
Re: Hello, I thought this might be appropriate for this thread, but if not, the mods can move it to its own seperate thread -- or delete it altogether. Starting C on a Mac http://www.apple.com/macosx/features/xcode/ Xcode - Apple's free IDE for gcc. Allows the creation of universal binaries, even on PPC … | |
Re: Could you post the code you're having trouble with? Most likely you're trying to acess memory you shouldn't be, such as using a pointer that isn't pointing to what you expect it to, but it's kind of hard to guess unless you actually show us what you're trying to do. | |
Re: >Again if anyone knows why I'm getting the compile error posted above when >using g++ in linux (ubuntu) would you please help me out? I had nothing better to do, so I decided to screw around with the code Narue posted. You're correct in that g++ gives an error when … | |
Re: You don't directly call a .c file. If you have functions defined in an external file, you create a header file containing the function prototype. This header file is included in any file that uses the function (and in the .c file that defines the function). The compiler and linker … | |
Re: Try changing view modes in the Finder window. Often files can be hidden out of view in Icon view, so try Column or List view. Another thing you may want to try is using the Terminal to list the contents of the directory. Start Terminal from /Applications/Utilities/Terminal, and then try … | |
Re: Make sure that your kernel has the necessary modules to detect and control your fan speeds. When I'm running Linux on my MacBook, my fan settings appear in the virtual filesystem /sys: [code] localhost:~ $ [COLOR="Green"]ls /sys/devices/platform/applesmc.768/fan1_*[/COLOR] /sys/devices/platform/applesmc.768/fan1_input /sys/devices/platform/applesmc.768/fan1_label /sys/devices/platform/applesmc.768/fan1_manual /sys/devices/platform/applesmc.768/fan1_max /sys/devices/platform/applesmc.768/fan1_min /sys/devices/platform/applesmc.768/fan1_output /sys/devices/platform/applesmc.768/fan1_safe [/code] From there, I can write … | |
Re: >they should make a better c++ and call it D that would be cool That was basically the whole goal of D -- to improve on C++'s strengths, and remove the bad parts, as was Java's goal, Objective-C's goal (well actually it was more based on C, but nevertheless it … | |
Re: Perhaps he meant a computer's serial number? Anyway, stating your problem better would be a start to say the least, and by the way if you're planning to write in machine code or assembly, I hope you've had some previous experience in programming, such as C/C++, Java, .NET, etc.. | |
Re: "It is better to look a fool and remain silent than to open one's mouth and remove all doubt." [QUOTE=Salem;409039]There are two secrets to success in life: 1. Don't tell them everything you know. 2.[/QUOTE] That was written on the top of the timesheet at the company I work for. … | |
So I finally bought a domain name via GoDaddy. Only problem is, I don't know how to map it to my server! I assumed that they would let me use their nameservers to map my domain name to my server's IP address. So they give me 3 pairs of nameservers … | |
Re: - [icode]void main[/icode] is bad, very bad. [URL="http://www.cprogramming.com/faq/cgi-bin/smartfaq.cgi?id=1043284376&answer=1044841143"]Find out why[/URL]. - [icode]getch()[/icode] is nonstandard and nonportable. Use [icode]getchar()[/icode] instead, and then you can get rid of the conio.h header file. - Use [URL="http://www.daniweb.com/forums/announcement118-3.html"]CODE tags[/url] when posting code. - Don't post [URL="http://www.daniweb.com/forums/announcement118-2.html"]complete solutions[/URL] to homework. | |
Re: You bumped a 2 year-old thread to say that? ^_^ | |
Re: [QUOTE]I am looking for all people who have had this problem because if we all come together, we can insist that Gateway fix it without us having to pay so much money each time.[/QUOTE] I know, it can be very frustrating and aggrevating to buy a computer that keeps breaking … | |
Re: I fail to see the point of paying someone to do assignments which will help you learn the programming language that you took the course for... Nevertheless, I won't stop you. | |
Re: [quote=rzellitti;263944]Is there a program that will help open the files that were created with the Windows Publisher Software? I often get files with the extension of .pub that I can't open in word. Any advise would be helpful. Thanks.[/quote] Nope, I don't know of any. As far as I know, … |