Showing results 1 to 14 of 14
Search took 0.01 seconds.
Posts Made By: nattylife
Forum: C++ Nov 30th, 2006
Replies: 3
Views: 770
Posted By nattylife
Re: I need help please

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...
Forum: C++ Nov 30th, 2006
Replies: 1
Views: 764
Posted By nattylife
Re: C++, difficulties in choosing STL 's containers

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...
Forum: C++ Aug 30th, 2005
Replies: 4
Views: 1,243
Posted By nattylife
Re: Basic Programming help

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...
Forum: ASP.NET Aug 25th, 2005
Replies: 5
Views: 1,842
Posted By nattylife
Re: Error while running ASP.NET

the iis on a winxp cd is usually asp 1.0, current (up to date) asp.net is like 1.1 i believe so you need to check if they match up or not, just google iis upgrade 1.0
Forum: ASP.NET Aug 25th, 2005
Replies: 5
Views: 1,842
Posted By nattylife
Re: Error while running ASP.NET

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?
Forum: C Aug 24th, 2005
Replies: 1
Views: 1,126
Posted By nattylife
Re: Formatting with Filestream Pointers...

do you mean setprecision()?
yer gonna need to insert it into the stream before your data likeso

struct statLine{
int id;
int primary_type;
int secondary_type;
double period;
double epochnumber;
int...
Forum: C Aug 24th, 2005
Replies: 2
Views: 12,307
Posted By nattylife
Re: abt algoritham complexity

click here (http://www.cprogramming.com/tutorial/computersciencetheory/algorithmicefficiency1.html)
Forum: C Aug 23rd, 2005
Replies: 3
Views: 1,293
Posted By nattylife
Re: Algorithm simulation modeling tools

why did you make 2 posts on the same topic?
Forum: C# Aug 23rd, 2005
Replies: 1
Views: 1,736
Posted By nattylife
Re: please take some time to help me.. thank you very much!

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
Forum: ASP.NET Aug 19th, 2005
Replies: 11
Views: 47,395
Posted By nattylife
Re: Difference between asp & asp.net

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...
Forum: ASP.NET Aug 19th, 2005
Replies: 3
Views: 2,835
Posted By nattylife
Re: How to set up a dedicated server for my asp.net

wont winxp pro be able to do it too? (though not as nice?)
Forum: C++ Aug 18th, 2005
Replies: 54
Views: 9,730
Posted By nattylife
Re: Deitel's "C++ How To Program" exercise 2.18

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...
Forum: C++ Aug 18th, 2005
Replies: 8
Views: 1,252
Posted By nattylife
Re: Need Help,plz...><

read the file line by line, and parse each line and save it to your struct
Forum: C++ Aug 18th, 2005
Replies: 4
Views: 4,014
Posted By nattylife
Re: fstream to char and int array

since get and getline write to a char*, just use atoi, for example
#include <stdlib.h>
int main(void)
{
char *buf1 = "42";
char buf2[] = "69.00";
int i;
double d;
long l;
...
Showing results 1 to 14 of 14

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 1:31 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC