No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
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…
13 Posted Topics
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: [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?) | |
Re: 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 … | |
Re: 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? | |
Re: [URL=http://www.cprogramming.com/tutorial/computersciencetheory/algorithmicefficiency1.html]click here[/URL] | |
Re: 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 << … | |
Re: why did you make 2 posts on the same topic? | |
Re: 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 | |
Re: 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 … | |
Re: 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] | |
Re: [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 … |
The End.