|
-
Nov 15th, 2001, 08:27 AM
#1
Thread Starter
Fanatic Member
Project files. Storing
Hello
I need the ability to save project information.
Project we work on need to be reopend and revised.
What would the best way to save (or handle) this project
information..
I have thought of an access table... maybe a text file,
Any other suggestions?
Seahag
-
Nov 15th, 2001, 08:42 AM
#2
Hyperactive Member
-
Nov 15th, 2001, 09:03 AM
#3
Thread Starter
Fanatic Member
oops.. I ment
I mean in the prgram i am writing.
There is alot of customer information.. project specifications.
I dont want the user to have to enter that kinda stuff evertime they need to revise it.
I invision some sort of method to save all this somewhere..
but How?
-
Nov 15th, 2001, 09:23 AM
#4
Hyperactive Member
The way I work in such a case is I create a textfile to hold that information, and store it in the application directory.
When I start the program I check for the existance of that file, otherwise I will create a new one.
I think a textfile is the way to go., because your independant of future developments. If you would use a DB it might be nedding an update along with a new version of your program.
-
Nov 15th, 2001, 09:28 AM
#5
Thread Starter
Fanatic Member
Kool. thanks
I was just thingking about making datatypes..
is there a way of storing array data.. or will I have to ~`spell everything out.
-
Nov 16th, 2001, 03:43 AM
#6
Hyperactive Member
If you want to store an array you can use the following:
YourKey=value1;value2;value3 etc.
Then you write a routine to extract the information and store it in an array.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|