Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #14.9K
Ranked #2K
~4K People Reached
About Me

gaming is life
music is life

Interests
punk, ska, games, programs
PC Specs
AMD 2500+XP 1.8 @ 2.2 SLK 800a 1 gig Buffalo Tech CH5 40 gig WD 120 gig Seagate 9800pro 426gpu 740 mem…
Favorite Tags

13 Posted Topics

Member Avatar for farheen

another fun thing is that the .net IDE has a WYSIWYG feature so you can build web pages visually, then fill in the parameters. this also "writes" the basic code for your design, and you simply fill in the functions and attributes you need afterwards in the codebehind or the …

Member Avatar for annaharris
0
1K
Member Avatar for aileenveliz87

lets say you have char sMyString[6]; 0 1 2 3 4 5 [A] [R] [R] [A] [Y] [\0] you call delete_repeats ( sMyString, 0 ); so basically you want to delete A at position 3, but you cant just move everything to the right of it to the left. that …

Member Avatar for Nick Evan
0
125
Member Avatar for bencwai

hash-map(or hash tables) are usually used for getting retrieval of records in O(n) time... something you'd see in a database design. vector is probably the quickest and simplest way to go: - its dynamically re-sizable - you can access any element in linear time. as your customer orders book, its …

Member Avatar for nattylife
0
113
Member Avatar for johnsonlim026

[QUOTE=Zachery]That would require a 2000/3 server that you can run IIS on. At the very least.[/QUOTE] wont winxp pro be able to do it too? (though not as nice?)

Member Avatar for Paladine
0
138
Member Avatar for Continuous

while defining the class is on the right track, you still need to create an object of that class (an instance of class dateReport) your constructor for your class should initialize all data members of your class so that the object is ready for work. so in your constructor (and …

Member Avatar for nattylife
0
238
Member Avatar for cancer10

make sure that iis has the same version of asp.net as yer vs does. are you running it against a database? did you stick a config file in the same directory for debuggin?

Member Avatar for cancer10
0
210
Member Avatar for deepakkrmehta

[URL=http://www.cprogramming.com/tutorial/computersciencetheory/algorithmicefficiency1.html]click here[/URL]

Member Avatar for Ancient Dragon
0
114
Member Avatar for Analogsleeper

do you mean setprecision()? yer gonna need to insert it into the stream before your data likeso [CODE]struct statLine{ int id; int primary_type; int secondary_type; double period; double epochnumber; int savedextremenumber; }statLine; void printStatLine(ofstream *FSOptr) { //FSOptr->precision(7); *FSOptr << statLine.id << " " << statLine.primary_type << " " <<statLine.secondary_type << …

Member Avatar for nattylife
0
140
Member Avatar for vancasas
Member Avatar for c#dummie

use ado.net capabilites. these will allow you to connect your program to a database (like access) and be able to retrieve, insert, delete, etc records and information in your c# program

Member Avatar for nattylife
0
147
Member Avatar for mugilan

use your book and compare the syntax of what you wrote to examples in the book. if they look good, then do a dry run of your program on paper, write out each variable and what happens to its contents in each iteration of the loop. maybe youll find an …

Member Avatar for nattylife
0
1K
Member Avatar for BioTechNoob

since get and getline write to a char*, just use atoi, for example [CODE]#include <stdlib.h> int main(void) { char *buf1 = "42"; char buf2[] = "69.00"; int i; double d; long l; i = atoi(buf1); l = atol(buf1); d = atof(buf2); return 0; }[/CODE] [URL=http://forums.devshed.com/t179036/s.html]taken from here[/URL]

Member Avatar for Ancient Dragon
0
298
Member Avatar for DeVilSoul

[QUOTE=DeVilSoul]Yeah,but my purpose isn't to find a character or integer,but to read from the file.I can read the first CP04,i did infile.ignroe(3)to skip "CP0" and i got '4' in my array,first slot.However,after the first number,i can't store the rest properly,when i cout i got minus values.So can anyone tell me …

Member Avatar for nattylife
0
264

The End.