473,566 Members | 2,924 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1548
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******@discu ssions.microsof t.com> wrote in message
news:CC******** *************** ***********@mic rosoft.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*****@hotmai l.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******@discu ssions.microsof t.com> wrote in message
news:CC******** *************** ***********@mic rosoft.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******@discu ssions.microsof t.com> wrote in message
news:DA******** *************** ***********@mic rosoft.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******@discu ssions.microsof t.com> wrote in message
news:CC******** *************** ***********@mic rosoft.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
25008
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 less complex technical calculations, several input variables. I would like to equipp the starting panel with the usual New, Open, Save, Save As, Close...
5
2579
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 SELECT cmd to retrieve a record. 2. Loop through the dataReader values, creating textBox boxes dynamically, adding them to a Panel. (The database...
5
2646
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 during a phone call with a client. Since it's long, I put six Save buttons down the length of the form and asked the users to save often. When they...
0
2404
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 hit "enter" after i fill text field , its automatically save data in my table database . I just want to save data after , i click "save" button....
1
3713
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 database file throu GUI Save Record button? As i write the comand as foloow but it is not inserting the new record in to the Access Database. ...
6
4132
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 problems, but here's something weird: Whenever I copy an object (reports so far), I am able to open it and make changes, but when I try to save it...
1
1386
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 it in above thing i want to save new records using datagrid,dataset and dataadpter withought displaying previous ones Some one will tell me...
1
2600
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 (Single Table) I have followed the walkthrought exectly but it doesn't work as expected.
2
3019
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 for the retrieval of the excel data into a DataTable, which is bound to a GridView for previewing before saving to the Database. But, whenever I...
0
7673
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7584
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8109
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7645
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6263
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
3643
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2085
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1202
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.