868 Posted Topics
I like it. Best feature in Daniweb so far, after Dani that is. :D | |
Re: [URL="http://msdn2.microsoft.com/en-us/library/ms646242.aspx"]RTFM[/URL]. | |
Re: If you are not good in C++ how come you are trying to do something as complex as Keypress event handling? Going through GetAsyncKeyState functions with little or no knowledge of C++ will only confuse you. Wouldn't you be better off with trying to just write code for [code] RPM … | |
Re: [quote=jbennet;386898]I used to go on IRC but not anymore i dont like the people there[/quote] Who are there? | |
Re: You can edit your own post only within 30 minutes of posting it. After that, unless you are a moderator of that forum, you won't see the Edit Post button. | |
Re: Doug, I don't think it is a problem with the resource file. Show the code where you are displaying the menu. | |
Re: [quote=~s.o.s~;382220]> How many languages do you know fluently, Sanjay? Hindi (our national language), English, Marathi and my native language. So four in all. :)[/quote] What is your native language? | |
Re: If the [inlinecode]_DEBUG[/inlinecode] flag is not defined, the code inside the [inlinecode]#ifdef[/inlinecode] [inlinecode]#endif[/inlinecode] preprocessor directives will not be compiled and linked. The code inside the directives makes the program slow and bulky. So allthough you want it for debugging, you will not want that part of code inside the release … | |
Re: [quote=meiyantao;381180]! As you know,it's impossible to study C++ well without English. [/quote] If you have good C++ books written in or translated to a language you understand, English is not a necessity. Ask any Japanese C++ programmer. You will find it hard communicating in an English IT forum like this, … | |
Re: Rather impractical smilie I'd say. Winking and sticking your tongue out at the same time is not exactly the easiest thing to do.. | |
Re: [quote=twomers;381666]Nurses always seem to be hot over here for some reason. It's a phenomenon I've observed over my lifetime.[/quote] I bet it has something to do with their uniforms. A girl who doesn't look good in a nurse's uniform is beyond help. | |
Re: [URL="http://www.winprog.org/tutorial/fonts.html"]Example[/URL] [URL="http://msdn2.microsoft.com/en-us/library/ms534210.aspx"]Reference[/URL] [URL="http://www.winprog.org/tutorial/fonts.html"] [/URL] | |
Re: [quote=Junyah;381013] I had the stroke last year and I healed. when I got a serious case of pneumonia and valley fever in march ,,, I got a bunch of compllications .. liver, kidney and lung problems. I gotta go to alot of labs and see alot of specialists .. and … | |
Re: Check the [URL="http://www.daniweb.com/techtalkforums/thread70096.html"]C++ Books[/URL] Readme. | |
Re: [quote=joshSCH;375984]They are helped, and they give positive rep, but It doesn't count for anything.[/quote] Who says they don't count for anything? The people who helped them don't care about the color of the dot. They will care about the gratitude of the OP, and the positive comments they leave. If … | |
| |
Re: For books I would recommend [URL="http://www.charlespetzold.com/pw5/index.html"]Charles Petzold's[/URL] . | |
Re: First debug it part by part and localize the error. Without knowing what is expected for the output, we are not in the position to debug all that long code. So you will be better off doing it yourself. You should have compiled and tested it part by part in … | |
Re: Unless you want boiled meat balls for dinner I suppose. | |
Re: [quote=cscgal;357427]Are things improved (do a hard refresh)?[/quote] If you mean, has the script hangs stopped? No, one occurred just now. | |
Re: Good God. That really made things demn fast. Didn't know that a webpage could load up that fast. Now a webpage loads up under 1 sec or so. Amazing. | |
Re: It doesnt matter where you put the wsock32.lib file. Just link it properly with the /link switch of your compiler. From the looks of it, you seem to be using the Visual C++ compiler. I thought the wsock32.lib file came with it by default and you wouldn't have to download … | |
Re: What error message and what line? In other words, post your code and the error message. | |
Re: [quote=hollystyles]Something can appear complex until it is explained after which it becomes less complex. Ultimate familiarity finally renders the complex subject simple.[/quote] Reminds me of Clarke's 3rd law [quote=Arthur C. Clarke, "Profiles of The Future", 1961] Any sufficiently advanced technology is indistinguishable from magic.[/quote] | |
Re: [quote=~s.o.s~;365357]That wasn't so obvious... ;-)[/quote] You obviously don't use MSN Messenger ;) I can even see the rose petals in (F). | |
Re: I like the language syntax. Although I would like if you changed the preprocessor directive colors ( #include ... ) What I don't get is, why does the line numbers get copied when I copy the code? | |
Re: That behavior has been around for sometime now. You must surely be trying to use the quick reply box before the page completely loads. | |
Re: As for the idea, I don't have any problem with it. But it can be subjective, like increasing or decreasing the font face or color. As for the colors, it would be good if the colors were different instead of using different shades of the same color ( eg. Software … | |
Re: Hey, Dani nice layout. :) But Kevin's problem occurs at my end too. Infact it occurred the first time I logged in to Daniweb this morning. I am using a 12 MB link at home, and god knows what at work. The unresponsive script dialog box occurs at both places. … | |
I was just having a look at the BBC new headlines today morning, when the talk about Yahoo and Microsoft potentially pairing up caught my eye. Obviously this was a step taken to curb the rise of Google in the web search market, and shares of Yahoo has gone up … | |
Re: ski. The idea of sliding without holding anything doesnt appeal to me that much. | |
Re: First of all this forum is for introducing yourself. Do not post technical questions here. Second, is the above question a programming question? If it is a programming question, state the programming language you are trying to use. Third, you will have to post the attempts you have made before … | |
Re: hehe, yeah looking through a particular thread is interesting and entertaining. I was having a good laugh yesterday doing a bit of research in each thread that generated a lot of activity the past few weeks. Another thing that may interest you is going to a any user profile , … | |
Re: I would change the quick reply box into a larger one, with more formatting buttons. | |
Re: [quote=andrewking;354244]Hi, I want to know about C++, How do I declare a constant (like C++ const) in Java(tm) [/quote] [code=c]const int contant_var = 10 ; [/code] [quote=andrewking;354244]and how do I declare enums (like C enum) in Java(tm).if any one knows about this reply me Thanks in advance[/quote] [URL="http://www.cppreference.com/keywords/enum.html"]enum[/URL] | |
Re: Yes. Just use the -o option of gcc. g++ -c function.cpp -o <PATH_OF_FOLDER>/OBJECTNAME.o | |
Re: [URL="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/creating_processes.asp"]Creatin Processes[/URL] [URL="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/creating_threads.asp"]Creating Threads[/URL] [URL="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/Creating_a_Child_Process_with_Redirected_Input_and_Output.asp"]Creating Pipes[/URL] For windows mind you. | |
Re: Are you using C or C++ ? Ok getline is C++. Maybe you can hack something out of the examples in this [URL="http://www.cppreference.com/cppstring/getline.html"]link[/URL]. | |
Re: Dani can you make all the text sizes the same? I find the current font size too large ( I dont like scrolling, and I write my code at editor font size 9-10, but that is just me ). So when I change the size of text to suit me … | |
Re: [quote=squinx22;348397]how do i compile a project with files/codes in a subversion.. suppose I have these files in a version control: folder/implement.cpp folder/head.hpp I want to compile my main.cpp with these files What I did is: $ g++ main.cpp ../svn/folder/implement.cpp -I ../svn/folder/ -o main It doesnt work... Pls give me link … | |
![]() | Re: For once I am with iamthwee ( that is a good tongue twister, try repeating "Iam with Iamthwee" ). Something should be done about the code tags. Even if it is not foolproof. I earlier had a problem with the scroll bars too, but looks like the CProgramming forum does … |
| |
Re: Without knowing the type of emails you are getting, it is difficult to pinpoint the cause. But usually you get so much emails because of the notifications that you get when someone replies to a thread that you replied. You can disable it by setting the "Default Thread Subscription Mode" … | |
Re: Say for example your program name is replace.exe. Then you call that program with three command line options. Example. [inlinecode] replace.exe abc def outputfile.txt[/inlinecode] Then the program will read user input line by line and write the output to outputfile.txt. e.g [code] [U]input [/U] [U] output[/U] abab dede a d … | |
Re: [quote=lotsofsloths;340364] Here is the part of the code it applies to... [inlinecode] [COLOR=#0000ff]if[/COLOR]( textBox2->Text = [COLOR=#800000]" "[/COLOR] ) { [/inlinecode] [/quote] Shouldn't you use a [inlinecode]==[/inlinecode] instead of a single [inlinecode]=[/inlinecode] P.S. If that doesn't work, then you will have to use a function like [inlinecode]strcmp[/inlinecode] or an equivalent in … |
The End.