473,387 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

How to save data withought database ?

Ok. im new to programming. and sorry for fuzzy discription :)
I am using a program called leechget. this is download manager that i use on
the net.
When i add a dowload , i can see the information such as path , file name
and size , etc, in the grid .
but i can not find any file that saves those inforamtion. there are no
database, no textfile or xml files.
I was wondring , how those information been saved and where?
As download manager, i can add stuff to it , and close the application and
run it another time, it also shows me the history of the download so i asume
those info must have been saved somewhere.
I would appreciate any info. Im just realy curiouse about it .
Nov 21 '05 #1
5 1532
The data probably saved in the Registry (Windows System Database).
To edit the registry (don't try if you don't know what are you doing) run
RegEdit.exe from the Start > Run.

You can use SaveSettings and GetSettings to access a registry in VB.
and you can use parameters as 'Registry' to access the Windows Registry (see
MSDN for Registry).

"Tony" wrote:
Ok. im new to programming. and sorry for fuzzy discription :)
I am using a program called leechget. this is download manager that i use on
the net.
When i add a dowload , i can see the information such as path , file name
and size , etc, in the grid .
but i can not find any file that saves those inforamtion. there are no
database, no textfile or xml files.
I was wondring , how those information been saved and where?
As download manager, i can add stuff to it , and close the application and
run it another time, it also shows me the history of the download so i asume
those info must have been saved somewhere.
I would appreciate any info. Im just realy curiouse about it .

Nov 21 '05 #2
Thanks Alex
You are absulotly right. all the info about the download , software
configuration and etc are in system registry.
One question, is this type of settings and inforamtion saving better then
creating Database of some sort ?
or is it better to create database and stor this informations including
application settings right in database such as access or xml or texfile?

Thanks a million

"Alex Levi" <Al******@discussions.microsoft.com> wrote in message
news:CC**********************************@microsof t.com...
The data probably saved in the Registry (Windows System Database).
To edit the registry (don't try if you don't know what are you doing) run
RegEdit.exe from the Start > Run.

You can use SaveSettings and GetSettings to access a registry in VB.
and you can use parameters as 'Registry' to access the Windows Registry (see MSDN for Registry).

"Tony" wrote:
Ok. im new to programming. and sorry for fuzzy discription :)
I am using a program called leechget. this is download manager that i use on the net.
When i add a dowload , i can see the information such as path , file name and size , etc, in the grid .
but i can not find any file that saves those inforamtion. there are no
database, no textfile or xml files.
I was wondring , how those information been saved and where?
As download manager, i can add stuff to it , and close the application and run it another time, it also shows me the history of the download so i asume those info must have been saved somewhere.
I would appreciate any info. Im just realy curiouse about it .

Nov 21 '05 #3
"Tony" <to*****@hotmail.com> schrieb:
You are absulotly right. all the info about the download , software
configuration and etc are in system registry.
One question, is this type of settings and inforamtion saving better then
creating Database of some sort ?
or is it better to create database and stor this informations including
application settings right in database such as access or xml or texfile?


INI files (for example in XML format) have the advantage of easily
distributing/copying/editing and keeping everyting in the same place.
Nevertheless, you should not store too much data in the system registry.
For language configurations and MRU file lists, INI files might be the
better choice.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #4
Accessing the registry is much faster then a database.
But if you want to store a lot of data, use database.
The reson is if you add a lot of data to the registry it will slow the
performance of your windows because it will take your windows more time to
search the registry for the system recources.

"Tony" wrote:
Thanks Alex
You are absulotly right. all the info about the download , software
configuration and etc are in system registry.
One question, is this type of settings and inforamtion saving better then
creating Database of some sort ?
or is it better to create database and stor this informations including
application settings right in database such as access or xml or texfile?

Thanks a million

"Alex Levi" <Al******@discussions.microsoft.com> wrote in message
news:CC**********************************@microsof t.com...
The data probably saved in the Registry (Windows System Database).
To edit the registry (don't try if you don't know what are you doing) run
RegEdit.exe from the Start > Run.

You can use SaveSettings and GetSettings to access a registry in VB.
and you can use parameters as 'Registry' to access the Windows Registry

(see
MSDN for Registry).

"Tony" wrote:
Ok. im new to programming. and sorry for fuzzy discription :)
I am using a program called leechget. this is download manager that i use on the net.
When i add a dowload , i can see the information such as path , file name and size , etc, in the grid .
but i can not find any file that saves those inforamtion. there are no
database, no textfile or xml files.
I was wondring , how those information been saved and where?
As download manager, i can add stuff to it , and close the application and run it another time, it also shows me the history of the download so i asume those info must have been saved somewhere.
I would appreciate any info. Im just realy curiouse about it .


Nov 21 '05 #5
Thanks Herfried and Alex.
appreciate all the information.

Best regards.

"Alex Levi" <Al******@discussions.microsoft.com> wrote in message
news:DA**********************************@microsof t.com...
Accessing the registry is much faster then a database.
But if you want to store a lot of data, use database.
The reson is if you add a lot of data to the registry it will slow the
performance of your windows because it will take your windows more time to
search the registry for the system recources.

"Tony" wrote:
Thanks Alex
You are absulotly right. all the info about the download , software
configuration and etc are in system registry.
One question, is this type of settings and inforamtion saving better then creating Database of some sort ?
or is it better to create database and stor this informations including
application settings right in database such as access or xml or texfile?

Thanks a million

"Alex Levi" <Al******@discussions.microsoft.com> wrote in message
news:CC**********************************@microsof t.com...
The data probably saved in the Registry (Windows System Database).
To edit the registry (don't try if you don't know what are you doing) run RegEdit.exe from the Start > Run.

You can use SaveSettings and GetSettings to access a registry in VB.
and you can use parameters as 'Registry' to access the Windows Registry
(see
MSDN for Registry).

"Tony" wrote:

> Ok. im new to programming. and sorry for fuzzy discription :)
> I am using a program called leechget. this is download manager that
i use on
> the net.
> When i add a dowload , i can see the information such as path , file

name
> and size , etc, in the grid .
> but i can not find any file that saves those inforamtion. there are
no > database, no textfile or xml files.
> I was wondring , how those information been saved and where?
> As download manager, i can add stuff to it , and close the

application and
> run it another time, it also shows me the history of the download so
i asume
> those info must have been saved somewhere.
> I would appreciate any info. Im just realy curiouse about it .
>
>
>


Nov 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Andras Gilicz | last post by:
Hi VB fans I'm working on a relatively large project in VB6 with about a dozen forms, including graphs, labels, text boxes, etc. The software itself is actually a flow simulator with more or...
5
by: \A_Michigan_User\ | last post by:
I'm using asp.net/vb.net/ado.net to create a very simple user interface. (Everything works if I use STATICALLY created textBoxes... but not when I make them DYNAMICALLY.) 1. Execute a SQL...
5
by: C Watson | last post by:
Hi, I'm wondering if anyone can help me with AJAX in ASP.NET 1.1. I have a very specific feature that I would like to use it for. I have a rather long form that the users use to enter data...
0
by: amrhi | last post by:
Hy Guys , Can anybody help me ? I try to make small web database in my unit. Some of fields have on change behaviour to get other data that automatically filled other text field. But when i try to...
1
by: Rameel | last post by:
Friends, I'm probably being more critical with VB.Net Windows application. I have Developed VisualStudio 20005 VB.Net Windows application how willl i be able to save a specific record into my...
6
by: Josetta | last post by:
Access 2003 I've been experiencing some problems with my "monster" database the last couple of days. I imported all objects into a new database yesterday, which pretty much stopped the crashing...
1
by: sushant2009 | last post by:
Hi , I want to display empty databae table(actually table contains lot of records) to datagrid using dataset and dataadpter. After displaying i will fill new records in datagrid and i will save...
1
by: TonyJ | last post by:
Hello! I'm using VS2005. I'm looking at ADO.NET and have found some test tutorial solution on microsoft MSDN. The one that I'm looking at now is called Walkthrough: Saving Data to a Database...
2
by: chike_oji | last post by:
Please can someone help me. I am writing a web application, that allows for the upload of an excel sheet into the database. I have an upload button and a save button. The upload button allows...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.