451 Posted Topics
Re: seems like you've got many congratulations for your birthday... so... no congrats from mee... unless you beg for it... :D | |
Re: erm... i didn't quite understand what you're asking... could you explain yourself please? [quote=Ancient Dragon]>>sorting display must be have 7 screen which the sorting is sort in step and show in step. not sure what you mean by that -- can you post an example [/quote]yes... please do... | |
![]() | |
hey guys... i was wondering, is there a way of changing the brightness in my monitor (besides the obvious options within the monitor)? it happens that it is very dark and some games are really difficult to play that way... so... is there a way to make it brighter from … | |
Re: if 1 micron is 1/1000000000 of a km, that means 1 micron pero hour is 1/60000000000 km/hour... in miles, that is 1.6/60000000000 mi/hour, so your conversion should be .533*1.6/60000000000 for red light, and .674 * 1.6/60000000000 for green light... | |
hi... i'm new to db development, and i'm creating my own site, but i'm stuck because i need to load an external database (meaning from outside my network) into my site everytime a user opens a specific page... how do i link the external database to my site? | |
Re: one thing i don't understand is why in line 57 and 58 you have two [B]return[/B]s if your main function is not over... the errors you get are because main is declared as an [B]int [/B]function, and the values you are returning are invalid conversions from double to int... in … | |
i've seen various threads about this same problem (at least i'm not the only one:D), but the most recent post is from 2006, so i wouldn't like to revive a long dead thread... :P i've installed Apache 2.2.4, and PHP 5.2.3 for Windows 32 i'm working on Windows XP... my … | |
Re: once you have a function, you can implement it wherever you want... in this case, you should include it inside a for loop that counts the times you want your coin flipped... it will return 1 for heads and 0 for tails (or whatever you wish it represents...) | |
Re: it must be your [inlinecode]ml(int,int)[/inlinecode] is not a variable where you can input data... there should be a public function that reads your parameters to take it into your variable... | |
does anyone know how do i make my toolbar to appear again? When i navigate from one forled to another, my Address and main(File Edit Tools, etc...) toolbars are missing... and i don't know why... | |
Re: when i enter a thread it gets stuck for about 5 seconds or so... and i mean, my whole pc gets stuck for this long... maybe it's because its loading a heavy piece of code... | |
Re: i'd say start with simpler things, like bidimensional array manipulation, fibonacci... maybe a Tic-tac-Toe, or a Battleship... just so you get used to loops and pointers and that stuff... | |
Re: hey... what about those sites that supposedly pay you for filling surveys and testing products and attending focus groups and stuff? | |
[URL="http://www.youtube.com/watch?v=9oxTy7KIAaA"]this[/URL] is unbeleivable... who would've thought about it? | |
Re: i know what its like to go shopping with that any kids... but from the other point of view... trust me... it was a hard work for my mum to keep all 5 of us happy while at the grocery store... | |
ok guys... so here's a nice one... suppose i have a matematical expression with variables less than 10 and greater than 0... and i divide the mathematical expression in leaves and nodes, being the operands the leaves and the operators the nodes... something like this:[code] (w+x)*(y-z) [B]*[/B] / \ [B]+[/B] … | |
Re: don't expect any problem-solving from us if you dont try it first... and actualli iamthwee is right... you should plan how you're gonna work it before you code anything... if not it's just blindfolded bat swinging... | |
i've been designing my website in flash, but there are some applets i would like to do... i guess the best program to use is dreamweaver, since it comes with the macromedia package... but, i can't use dreamweaver... any help with where to find a good tutorial? | |
Re: i actually think it is stupid not to ask immigrants about their immigration status... what if it is an illegal immigrant? there should be more control about this... | |
Re: it's a secret message from the devil... remember 'www' looks like vi-vi-vi', which means 666, which is the number of the beast... pretty sure that's it... | |
Re: one of the upgrades Windows made with vista was reducing all audio drivers to two categories... maybe you should investigate about it... but, if you bought it with vista installed, i can't see why there should be any problems... maybe you should contact tech support... | |
Re: [quote=shannonpaul;425269]for(int num = num1 + num2);[/quote] what you are doing here is creating an infinite cycle, that actually does nothing (i bet it doesn't even work)... what you want to do is: [code=c] for (int i=0;i<54;i++){ /*procedure*/; }[/code] remember to open a [B]for[/B] loop with curly braces '{' and to … | |
so, i started at php and i'm doing some exercises from the book, but when i type this code into my "view.php", the output is all wrong...[code=php] <?php include("dbconnect.php") ?> <h2>View my GuestBook!!</h2> <?php $result=mysql_query("select * from guestbook") or die(mysql_error()); while ($row=mysql_fetch_array($result)) { echo "<b>Name:</b>"; echo $row["name"]; echo "<br>\n"; echo … | |
| |
Re: what about extending the edit time? how did you get to the conclusion that 30 mins was best? | |
![]() | Re: you're missing the OpenFile() function declaration... and you should initialize functions above main, just like Ancient Dragon said, just writing the name of the function and declaring the parameters involved, like this: [code]void ViewAllInformation(); ... int main() { ... return 0; } void ViewAllInformation() { ... } [/code] |
Re: study, hang out with my friends,playing video games, reading, doing sports (racquetball, soccer, cycling [though you expose yourself to be ran over with a car]), and the one most important, time sucking and expensive of them all: hanging out with my girlfriend... if you see it that way, i'm not … | |
i guess this question should go into the PHP forum, but since it's not a code problem, i don't know... i've just installed apache in my pc, and i'm trying to install php with it, but when i configure httpd.config assigning [inlinecode]LoadModule php5_module c:/windows/system[/inlinecode] it sais it can't load [inlinecode]c:/windows/system[/inlinecode] … | |
Re: it means your xpbutton ocx component is not correcty registered because the file is missing or invalid... to fix this problem you might want to recover this component... how? i don't know... lol | |
Re: i don't understand why are you checking characters, but it is ok... what is the problem adding the numbers? | |
Re: [quote=Bench;420507]Have you ever used the [B]struct[/B] keyword to create your own simple type combining several variables together? That's an extremely simple example of a class.[/quote] with the plus that they can have their own intern functions... they make your variable management even easier... | |
| |
Re: i don't think anyone that qualifies in other might be able to answer that poll... | |
Re: you could divide you 7-9 digit number into 3 numbers and place commas between them... | |
i actually feel like a n00b asking this, but i'm a little of what you might call rusted in this stuff, since i hadn't need to handle files for a year now... i searched for some guide, but i only found out how to [B]open[/B] a file... like this:[code=c]ofstream *pfile; … | |
Re: [quote=Infarction;406845]My parents let me do the computer thing. I built one in 9th grade for a school project, and I've been tech support ever since. It's not always fun :P[/quote] [URL="http://www.geekoftheday.com/geek-stories/becoming-the-family-tech-support-guru.html"]I know what you mean...[/URL] it really sucks sometimes... | |
Re: why don't you initialize your unknown variable as a string, and depending on its value you convert it to int, double, boolean, or leave it as a string... you may use atoi() to compare numbers and strings such as "true" and "false" to compare boolean... if there is a dot … | |
Re: [quote=lasher511;418033]Paris: Skinny freak who only became famous due to a leaked amature porn movie.[/quote] hmmm... leaked? i'm pretty sure it was not an accident... | |
do you know what the 'F' word actually means? (apart from any modern meaning applied to it, which actually comes from its real meaning) in the middle ages, as you may know, when a man wanted to have sexual intercourse with his bride, he needed the authorization of the king. … | |
Re: the book i use is a pretty good one... you should consider looking for it... though i don't know what's it called in English, it is the one from DEITEL... there's two of them about c++... a blue one, which is purely c++, and a green one, which is about … | |
Re: the difference between them is mostly the way you develop your code... or the headers they use... i.e. turbo c++ accepts headers that are deprecated in DEV c++, such as [inlinecode]<stdlib.h>[/inlinecode] (which is [inlinecode]<cstdlib>[/inlinecode] in DEV c++)... or the fact that in turbo c++ you must write the *[B].h[/B] in … | |
Re: yup... that's what i focus in... most of the time my second move is with my queen... although i also focus on the defense... (or not sk8?)... my favorite plays are those where you put your opponent in a situation in which he must pick what piece he prefers to … | |
Re: well... i guess he wasn't saying he was only 13 years from when he took his last bath... :D | |
Re: i wish my daughter would come up with that... so if that happened, i would even let him sleep with my wife... :D |
The End.