451 Posted Topics

Member Avatar for Serunson

seems like you've got many congratulations for your birthday... so... no congrats from mee... unless you beg for it... :D

Member Avatar for Serunson
1
204
Member Avatar for jordan1985

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...

Member Avatar for ndeniche
0
95
Member Avatar for thunderstorm98
Member Avatar for Ezzaral
1
872
Member Avatar for ndeniche

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 …

Member Avatar for ndeniche
0
123
Member Avatar for pyramid

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...

Member Avatar for pyramid
0
309
Member Avatar for ndeniche

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?

Member Avatar for trudge
0
98
Member Avatar for pyramid

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 …

Member Avatar for pyramid
0
86
Member Avatar for ndeniche

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 …

Member Avatar for suren66
0
147
Member Avatar for jrice528

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...)

Member Avatar for ndeniche
0
106
Member Avatar for Duki

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...

Member Avatar for ndeniche
0
87
Member Avatar for Duki
Member Avatar for ndeniche

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...

Member Avatar for Suspishio
0
90
Member Avatar for Infarction
Member Avatar for Serunson

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...

Member Avatar for MidiMagic
0
598
Member Avatar for sasikala123

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...

Member Avatar for ~s.o.s~
0
124
Member Avatar for TheNNS

hey... what about those sites that supposedly pay you for filling surveys and testing products and attending focus groups and stuff?

Member Avatar for mmmmmmmmmmmm
0
223
Member Avatar for ndeniche

[URL="http://www.youtube.com/watch?v=9oxTy7KIAaA"]this[/URL] is unbeleivable... who would've thought about it?

Member Avatar for Lardmeister
0
52
Member Avatar for Ezzaral

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...

Member Avatar for jbennet
0
176
Member Avatar for ndeniche

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] …

Member Avatar for Hamrick
0
72
Member Avatar for tendyhk

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...

Member Avatar for ndeniche
-1
142
Member Avatar for ndeniche

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?

Member Avatar for SillyBilly
0
78
Member Avatar for >shadow<
Member Avatar for Dave Sinkula

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...

Member Avatar for ndeniche
0
79
Member Avatar for Chaky

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...

Member Avatar for ndeniche
0
139
Member Avatar for tra2

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...

Member Avatar for ndeniche
0
83
Member Avatar for shannonpaul

[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 …

Member Avatar for ndeniche
0
127
Member Avatar for ndeniche

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 …

Member Avatar for w_3rabi
0
460
Member Avatar for Ancient Dragon
Member Avatar for MidiMagic
0
66
Member Avatar for MidiMagic

what about extending the edit time? how did you get to the conclusion that 30 mins was best?

Member Avatar for MidiMagic
0
344
Member Avatar for teddymon

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]

Member Avatar for Salem
0
92
Member Avatar for ProgrammersTalk

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 …

Member Avatar for EnderX
0
315
Member Avatar for ndeniche

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] …

0
47
Member Avatar for sammie10
Re: Help

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

Member Avatar for sammie10
0
100
Member Avatar for prs55

i don't understand why are you checking characters, but it is ok... what is the problem adding the numbers?

Member Avatar for Salem
0
143
Member Avatar for toko

[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...

Member Avatar for Bench
0
117
Member Avatar for lisakay
Member Avatar for John A
0
69
Member Avatar for Dave Sinkula

i don't think anyone that qualifies in other might be able to answer that poll...

Member Avatar for ndeniche
1
267
Member Avatar for gretschduojet1
Member Avatar for gretschduojet1
0
1K
Member Avatar for ndeniche

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; …

Member Avatar for Hamrick
0
132
Member Avatar for lasher511

[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...

Member Avatar for Serunson
0
787
Member Avatar for tygerberg
Member Avatar for Ancient Dragon
0
129
Member Avatar for dev.cplusplus

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 …

Member Avatar for Ancient Dragon
0
76
Member Avatar for The Dude
Member Avatar for mayo_tech11

[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...

Member Avatar for quintoncoert
0
148
Member Avatar for ndeniche

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. …

Member Avatar for joshSCH
0
83
Member Avatar for mypopope

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 …

Member Avatar for toko
0
90
Member Avatar for mypopope

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 …

Member Avatar for toko
0
78
Member Avatar for sk8ndestroy14

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 …

Member Avatar for sk8ndestroy14
0
254
Member Avatar for toko

well... i guess he wasn't saying he was only 13 years from when he took his last bath... :D

Member Avatar for ndeniche
0
125
Member Avatar for jamello

i wish my daughter would come up with that... so if that happened, i would even let him sleep with my wife... :D

Member Avatar for The Dude
0
290

The End.