- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 28
- Posts with Upvotes
- 19
- Upvoting Members
- 9
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
30 Posted Topics
"I wonder if other dogs think poodles are members of a weird religious cult."
A 'Kit-Kat' and an ice cold bottle of 'DR.Pepper'.......:*
This ones been bugging me ' IF SOMEONE WITH MULTIPLE PERSONALITIES THREATENS TO KILL HIMSELF, IS IT CONSIDERED A HOSTAGE SITUATION?' what do you think.....:?:
'I Don't Care - Apocalyptica Feat. Adam Gontier'.....Great song
Sounds like the file location of those applications cant be found; have you perhaps installed them on a removable drive... if so they may be the cause. Sometimes when you remove and then re-insert the drive the location like 'F:' this can then be substituted with a different one.... Try …
For me its got to be either 'Call of duty 4' or 'Gears of war'......:-/
Its got to be 'The Matrix'... it actually got me interested in programming...:-/
"The Ultimate Fighter season 11' it may be considered somewhat uncivilised, but non the less very entertaining..... Another classic has to be 'Flash-Forward' :)
Well im not sure we can actually advise as this depends on the actual site...What is the purpose of your website...It also depends upon what category your site falls under...Let me abbreviate: .gov - Government agencies .edu - Educational institutions .org - Organizations (nonprofit) .mil - Military .com - commercial …
[QUOTE=danny2000;1214307]Hi Would anyone know if there is a book explaining all the various C++ Libraries and what features they encapsulate? I'm thinking in terms of, for example: iostream -- then a list of features and functions in iostream etc. Could anyone suggest any books or good reference material for this …
[QUOTE=djm123;1200739]When I look in START UP, It shows programs EMPTY, yet when I bring up the internet, it seems slow doing so. From page to page appear to be ok. What areas would I look to to speed this up? Also, on MS config, how does one know what should …
Common Misconception.... [CODE]#include<HelloHeader.h>[/CODE] instead of the typical header file declaration as seen above you must instead use this below when using your own header files:) [CODE]#include"HelloHeader.h"[/CODE] Note the[COLOR="Red"] " "[/COLOR] instead of the typical [COLOR="red"]< >[/COLOR]
[QUOTE=nola_Coder;1210006]I want to implement a countdown timer in a game, but need some help figuring out how to do it properly. I know that this is probably a very regular question that has been asked a thousand times, but I've been trying out some methods I found through searching, but …
[QUOTE=bsse007;1209562]will any body plz tell me about random access file.i need to know about write random data on random access file. this data can be of any txt file?kindle mention some initial coding.reply sooooon plzzzzzzz[/QUOTE] I think this is what you mean, please feel free to correct me [COLOR="Red"][B]Reading Files[/B][/COLOR] …
I take it this is your homework? Well perhaps if you show some effort, then we will consider helping...If we were to just give you the answer, what good would you achieve from that?
[QUOTE=naseerhaider;1208429]Hello Every one ! This program is producing some strange output as it is only generating x = 6 :(,can some through some light that why is it behaving like this ? [/QUOTE] Simple, the program is choosing a random number but each time you run it, it will use …
check out [URL="http://cleverbot.com/"]clever bot[/URL]; its a prime example of artificial intelligence....It can supposedly learn from people (according to the creators);)
Well there are numerous Anti-Viruses out there which are very effective and free of any cost... Here are a few you may want to consider: [url]http://www.brighthub.com/computing/smb-security/articles/34468.aspx[/url] I personally use AVG....
Its a common issue....Could be drivers for devices, could even be due to excessive heat on particular components. Here are some links which may help you: [url]http://forums.techarena.in/windows-xp-support/742613.htm[/url] [url]http://kadaitcha.cx/xp/stop_error.html[/url] [url]http://www.ntcompatible.com/thread27803-1.html[/url] [url]http://www.tweaksforgeeks.com/IRQL_NOT_LESS_OR_EQUAL.html[/url] [url]http://www.geek.com/forums/topic/irql_not_less_or_equal[/url] [url]http://support.microsoft.com/kb/818501[/url]
Adobe Flash Player is not supported for playback in a 64-bit browser. However, you can run Flash Player in a 32-bit browser running on a 64-bit operating system. I suppose you will just have to wait a while longer for adobe to catch up....:)
[QUOTE=Acute;1200463]Hi, Do you know a good, free to download book about AJAX (pdf, djvu, chtm?, any)?? Plz, give a link!!! THNX!!![/QUOTE] Here are some goods ones to get you started, and yes they are free of charge....:) Just make sure you do not click the 'Buy From Amazon' instead click …
your header files are incorrect; [CODE]#include <iostream.h>[/CODE] You should be using this header file when it comes to c++...:P [CODE]#include <iostream>[/CODE] Also you are missing [CODE]using namespace std;[/CODE] Also using getch() is very bad practice you should instead use a different method...
You could at least show some effort, it will not do you any good if we just gave you the answer. 'We only give homework help to those who show effort'
Please use code-tags..... Try This.....Works fine for me... #include <stdio.h> #include <conio.h> #include <stdlib.h> #include <iostream> using namespace std; void main() { int choice, a; float money,m; void deposite(); void withdraw(); //int func1(); cout<<"Student ID : TATA_12345"<<endl; cout<<"NAME : RATAN TATA"<<endl; cout<<"(1) DEPOSITE MONEY"<<endl; cout<<"(2) WITHDRAW MONEY"<<endl; cout<<"(3) FIND THE …
I'm pretty sure that most tutorials will work both on windows an Linux....All basic programs i have wrote work both on windows and Linux...For Linux i use g++ as well... good places to start : [url]http://www.cplusplus.com/doc/tutorial/[/url] [url]http://www.yolinux.com/TUTORIALS/LinuxTutorialC++.html[/url] [url]http://www.cprogramming.com/[/url]
Your Question is not very specific as it will depend on what type of site you wish to create and what the purpose of that site is... i would suggest starting with [url]http://www.w3schools.com/[/url] and [url]http://www.how-to-build-websites.com/[/url]
When you say optimize, there are indeed many factions within this aspect... Perhaps you could be more specific... Anyway some factions to look into are: SEO - a site which has been optimised for search engines is one which will recieve more traffic... Image Optimisation - correct file types used …
Firstly this question is situated in the wrong forum, it should be under hardware and software. to answer your question, the colours in the editor can be changed. Firstly download the attached config file. int your codeblocks intallation directory select and open the cb_share_config. Under source configuration select the downloaded …
First you would need gain input from the user then the input would need to be validated using something like an if else or switch statement. For instance: ps i have not programmed in c# in a while. #include <stdio.h> #include <conio.h> #include <stdlib.h> #include <iostream.h> char Hang ; int …
The End.