Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

14 Posted Topics

Member Avatar for jray

Are you sure that the network adapter is still in a proper, functional state, and did you make any changes to the computer recently that might have lead to this result?

Member Avatar for gerbil
0
150
Member Avatar for eskimo456

I love how much you are asking. If statements are simply a high-level representation of logic. A computer (at least an x86 (Intel) based one) evaluates a condition and stores information in internal buffers, and then a call is made to jump if the the condition is met. Int and …

Member Avatar for MosaicFuneral
0
200
Member Avatar for Goalatio

It is possible to get input from the keyboard without calling int 16h, but I would not recommend it unless you know exactly what you are doing and the effects that it would have on the rest of the system. I am assuming that you are not writing an OS, …

Member Avatar for Goalatio
0
1K
Member Avatar for massivefermion

Yes, it is possible to write programs in multiple languages, I do that semi-frequently. One of the easiest ways (at least in my opinion) is to compile the code into several object files, and then link them together.

Member Avatar for rbrt13
0
396
Member Avatar for niths

Hello I have tackled this problem before, so I can tell you what to do. Assuming that the images are stored in a database: [CODE] <?php $con = mysql_connect ( $server, $uname, $pass ); if ( !$con ) die ( mysql_error() ); mysql_select_db ( "images" ); $query = "SELECT * …

Member Avatar for vibhaJ
0
92
Member Avatar for rbrt13

Hello, I recently made operable a computer based off of the Intel STL2 server motherboard, however when I try to start the computer and boot from the Windows XP CD, I get the following errors: PXE-E61: Media test failure, check cable PXE-MOF: Exiting PXE ROM. Operating System not found Upon …

Member Avatar for finito
0
178
Member Avatar for Justin81

This is caused by PHP not loading the MySQL modules. To fix: make sure the file php_mysql.dll (php_mysql.so on non-windows) is in the ext folder of the PHP install; Make sure that the php.ini file that is loaded tells PHP to include that module and that all settings for it …

Member Avatar for Justin81
0
228
Member Avatar for ravi0703

It is possible to send a message to some SMS Gateways ([URL="http://en.wikipedia.org/wiki/List_of_carriers_providing_SMS_transit"]http://en.wikipedia.org/wiki/List_of_carriers_providing_SMS_transit[/URL]). Hope this helps.

Member Avatar for rbrt13
0
134
Member Avatar for CyberPirate1

Hello, First I would like to say that if you are only connecting to one server, that a class is completely unnecessary, however since you have a class started, I will try to help you make it work. One thing that I would do (I know from experience that this …

Member Avatar for rbrt13
0
292
Member Avatar for noofin
Member Avatar for hallyhey

This is easy: For the PHP script: [code] <html> <head> <title>PHP Sample</title> </head> <body> <?php $height = $_POST["height"]; $width = $_POST["width"]; echo "Parimeter: " . 2*($height+$width) . "<br /> Area: " . $height*$width . "<br /> Diagonal: " . sqrt(($height*$height)+($width*$width)); ?> </body> </html> [/code] For the form: [code] <html> <head> …

Member Avatar for jcanaway
0
100
Member Avatar for Towely

You need to write a Fraction class for this to work [code] using namespace std; class Fraction { public: int numerator; int denominator; } [/code] Hope this helps

Member Avatar for rbrt13
0
1K
Member Avatar for rbrt13

I am currently making an IRC bot in C++, and i am getting an error from trying to bind the socket, error 10049: WSAEADDRNOTAVAIL. I am new to sockets in C++, so I was wondering what I did wrong. I am running Windows Vista Home Premium and compiling with Bloodshed …

Member Avatar for Salem
0
324
Member Avatar for rbrt13

Hello everyone, I am Robert, relatively new to most aspects of this, but helpful usually.

Member Avatar for efmesch
0
33

The End.