File I/O And Registry :: Storing External Data For Program?

Sep 12, 2008

I'm rewriting a legacy application in .NET. In the earlier version, I used a few control .INI files that could be edited by the advanced user to provide variation in certain program options. (The program also permitted override of these same variabes via menus and such.) I used the API functions to read the .INI files and rewrite them to alter the user's environment for subsequent runs.

View 19 Replies


ADVERTISEMENT

VS 2010 : Storing Data In Txt File For Program Use?

Jun 22, 2011

In the program I'm working on, there is a 'sign-in' form that pops up for the user to enter first name, last name, and DOB. What I want to do is STORE that information in a text file for FUTURE use by the program (i.e. displaying a list of all previous users of the program).I already know how to use streamwriter to write text to a file, but I would like for the text file to be stored within the program files and also for a new user's data to be appended to that file every time.

Do I simply add the text file to the project files? When I do that, its path is 'My Documents'. How will that affect the program when I publish it? I guess I just don't yet understand what happens when the program is finished and published. The code for the 'Submit' button on the sign-in form is pasted below. At the bottom, I've put a comment to indicate where I want to store the data to a file.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim TxtBox() As String = {TextBox1.Text, TextBox2.Text, TextBox3.Text}
For i As Integer = 0 To 2
If TxtBox(i) = Nothing Then

[code]....

View 13 Replies

VS 2010 - Storing Text Data In File For Program Use

Jun 28, 2011

Here is what I would like to do:
- Store string data from a 'sign in' form into a text file. This text file must be one that is saved even after the user exits the program. The text file must also be one that will stay with the program even after it is published (executable).
- Be able to write to/read from the file for purposes of displaying some or all of that data on a form.

I use an Application Setting to do this - of type 'Specialized String Collection'. I tried this, but for some reason I could not get it to work. It was a good idea, but I need to be able to SEE the data that has been saved, and with a setting it seems like that is not easily done. I've decided that I either need to use a simple text file or a 1-table database for this. I would prefer just a text file, but in either case, it needs to be part of the .exe when published.

I have added a text file to my project, but I am not sure if it will be "included" in the project when I publish it. The path of the file I've added is in 'My Documents', but in my code, I will have to specify the path in order to use Streamwriter. How will this affect the program when I publish it? I felt the need to make a new thread because on my last one we had been mainly talking about settings, and I've decided that isn't the best option for me.

View 1 Replies

Storing Application Variables In An External File?

Jul 8, 2009

I have been tasked to create an application, for which the requirements may change over time.This application will be a data entry Windows application,of which multiple copies will be running.All data will be written to text (.CSV) files for validation before being uploaded to a remote mainframe system (iSeries).My application needs to store certain variable information in an external text (or XML) file; for example, the file path to shared resources (which may change over time),as well as the specific data fields required by the mainframe system.

My questionsare these: what is considered the best practice for accomplishing such a task, and how would I accomplish it?I am completely new to XML, so I don't even know where to begin, although I am sure that XML is the path to follow for what I am trying to accomplish.

View 1 Replies

File I/O And Registry :: Code A Delete Button For A Browsing Program Based On Data From A Txt File?

Dec 3, 2010

I am trying to code a delete button for a browsing program based on data from a txt file. I have coded the buttons to sort(ascending and descending), append to the text file, search the text file, but I can not seem to get the delete function working. I am using VB 2010, this is what I have so far:

Code:
Dim deleline As String
Dim line As String
Dim isFound As Boolean = False
sr4 = IO.File.OpenText("Students.txt")

[code]....

View 2 Replies

File I/O And Registry :: Use Of External File?

Dec 16, 2008

I have a .net program that you open, enter a bunch of information to control equipment,ovens, etc. After the user enters all of the information for the equipment/test, they run the test, data is taken, and they close the .net application.However, if they want to run this same test again, I don't want them to re-enter everything b/c it would be quite tedious. Instead, I would like to have a file > export and file > import option. I am going to import/export from excel.

I have set up a blank template in excel that has a lot of formatting and descriptions. My question is, where do I put this template file and how do I reference it? For example, do I save it in the project's inRelease folder? Then when the user goes to file > export, how do I refernce it as being in the inRelease folder? After making an installer package where does the template file get placed on the install if its in the inRelease folder?

View 8 Replies

Reducing Memory Usage When Storing Data In A Program - C#

Apr 18, 2012

I have an ArrayList that stores 100,000+ numbers inside of it. Each number is 10 digits in length or smaller. The program itself has data input into it, of which it loops through the user input to see if any of their numbers are already in the array using if ArrayList.Contains(userinput).

It would appear that when having an ArrayList of this size a LOT of memory is being used. Would there be a faster way to run this, E.g. Database or If TextFile.Contains(Line)?

View 3 Replies

Controlling And Manipulating Data In An External Program?

Jun 21, 2009

I'm trying to write a vb.net application that works with a 3rd party application called FuzzyTech. Unfortionalty FuzzyTech is quite old so the only way I can interact with it is buy using DDE. FuzzyTech acts as a DDE server. After a bit of research I found a library called NDde which enables me to use DDE. I understand that vb.net does not natively supprt it as it is an old technology.

Now fuzzyTech seems to only respond to the DDE connect and pokes when in debug mode. The only way I can find to get the program in to debug mode is from the menu bar (Debug > Interactive). So I have written an application that runs fuzzyTech, grabs the window and then accesses the menu to put it in to debug mode. My code can then use DDE. I have all of this working ok (although it does feel like a bit of a hack). The problem is I don't want users to be able to see this happening.

I want fuzzyTech to be hidden.After more research I found I could hide the window on startup by using fuzzypProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden. However when I do this my code to grab the window and send the menu commands then fails. I think this is because the window title becomes blank when hidden.So I need to know a way of controlling the program after it is hidden or hiding it after it is in debug mode. This is where I am stuck. I'm very new to programming and this has got me completely stumped.

Here is some of the code I am using:

Private fuzzypProcess As Process = New Process()
Private Sub LoadFuzzyTech()
Try
fuzzypProcess.StartInfo.FileName = projectPath & projectTitle & ".ftl"

[code]....

View 2 Replies

FIle IO - Storing Data Into An Array?

Jan 15, 2012

I've been searching around these forums for quite a while now, and can't seem to either understand or find what I'm looking for.I have a text file, that my program is always adding to it, it's format is like so:

Line 1: UserName (For User 1)
Line 2: FilePath (For User 1)
Line 3: UserName (For User 2)

[code].....

View 8 Replies

Program For File Database, How/method Selection For Storing Files?

Jan 26, 2012

The user will basically be able to select a file on their hard drive, and enter some details or info about the file and then save it

View 2 Replies

Sql - Storing Connection Strings In Registry?

Nov 24, 2009

We decided to use the registry for handling our deployment with connection strings in our VB.net application.

The requirements are:

If the program cannot connect to the server, first check the registry for a connection string. IF not, create the folder and fill in the name, type, and data. Make sure its encrypted.

I have never edited or created anything in the registry.

View 2 Replies

Arrays And Storing Data To A File VB 2010

Feb 6, 2012

I am trying to store 8 separate pieces of information in a text file (like a database) [but not a SQL database], consisting of integers and strings. How would I use an array to do this? Will an array collect data from text boxes (I also want to display the 8 pieces of information in separate boxes). also how would I save the text file so I can open it again or open a different text file (database?), from within the program?

EDIT: I see I need to use readline and writeline to read/write from a text file but how would I find specific data to show in my boxes?

View 1 Replies

VS 2008 Storing Data In Arrays In Xml File?

Sep 3, 2009

My xml files were looking a bit clumsy when i read them, what i have done now is to save them in the xml in this format:

vb.net <field>{value1|its partner value2}</field>

i noticed {|} this is the format that vb.net uses for arrays, i was wondering if that's an ok way to store things, on retrieval once i get the node value, what would be the best way to break up the {value1|it's partner value2} variables to use, explode the | and get parts (0) and (1)?

View 1 Replies

Storing A String Variable Value In Windows Registry

Apr 21, 2011

I want to store a string variable value in the windows registry If the below is a correct statement. My.Computer. Registry. SetValue ("HKEY_ LOCAL_ MACHINESYSTEMMyKey", "Start", "ABC")i will declare a string variable Dim strvalue as String strval = InputBox("Enter a string")and now i want to insert the User given value in the Registry Key as above in place of "ABC".

View 2 Replies

Address Book - Storing All Person Data In TXT File

Apr 10, 2011

I want to make a program that looks like an address book (name, birth date, phone, e-mail etc) and stores all the persons data in a txt file. If I add a new person, for example, it will be added after the last person that was added in that txt file.

View 2 Replies

Storing Data / Making File With Special Extension

Apr 4, 2012

I created a simple database and I want to learn how can to store my data in it so if I uninstall my application. I can protect the data from deleting then I can use it again when I reinstall the application. The second question is: Can I make a file with special extension for my application so I can save it in my flash drive?

View 7 Replies

Storing Credentials Locally In Registry Encryption Methods?

Nov 3, 2010

I'm having to store a user account locally on a machine, what would be the best method to store this? (Needs to be reversable encryption rather than hash)I'm accessing a UNC share as mentioned here: url...Can anyone suggest a better method or changes to the above to secure the credentials as much as possible?

View 1 Replies

VS 2010 Using External Data File?

Feb 21, 2012

I would like to include a text file for easy ediing of data that my app will read and pull data from. My external data file is a csv fileI want to display a checked list box that display this info and based on selections in the checked list box cand in a procedure later call commands based on those selections.

View 4 Replies

File I/O And Registry :: File Stream - Backup Program That Zips Files ?

Feb 9, 2009

I am writing a backup program that zips files. Using some sample code I have the following that creates a zip file. Problem is it does not get any subdirectories or files. Where am i going wrong?

Dim azFileNames() As String = Directory.GetFiles(SourceFolder)
Dim objCrc32 As New Crc32()
Dim zipStream As ZipOutputStream

[CODE]...

Alternativley, there is another component to the zipping dll that I could probably bypass the above altogether. It is: FZ.CreateZip(DestFile, SourceFolder, True, "", "") Where DestFile is (Output stream as system.io.stream). I'm trying to read all the files, directories, sub dir and files, etc from a specific location, let's say 'My Documents' into Destfile in which the FZ.CreateZip zips the file. FZ is FastZip which is from icsharpcode.net. They have c# examples, but that's greek to me. I'm trying to just learn VB!

View 6 Replies

File I/O And Registry :: Move Data From One Data File To The Next, Using A Text File?

Apr 25, 2010

I'm Writing a Problem that will allow users to move data from one Data file to the next, using a Text file. My problem is that i so far i 3 test users.

No matter what test user is logged on it seems to be Reading the first user info no matter which one is on.

How do i get it to Only Read the User Info and show it up on text file that is Currently logged on.

Code:
Imports System.IO
Public Class TestForm6
Inherits System.Windows.Forms.Form

[Code].....

View 5 Replies

File I/O And Registry - File Storage - Where The Best Place To Keep Files For A Program

Jun 2, 2009

Looking for an idea of where the best place to keep files for a program. I use them frequently and they interact with the program directly. I want to place them in a place where they won't be easy to find if someone is just cruising thru the directories. Any ideas?

View 7 Replies

Make 'Button1' Open A External Program Of There Choice Using The File Browser

Feb 26, 2011

Question 1: How to make 'Button1' open a external program of there choice using the File Browser.

Question 2: How to send 'TextBox1.Text' to an external process

Question 3: How to save data in a .dll file made from Visual Basic

If anyone has source codes that I code edit for Visual Basic 10/08,And If you could sort of walk me through what I would need to edit to make it work for my programs

View 3 Replies

File I/O And Registry :: Sequentrial File Access Throughout Program?

Oct 30, 2008

For my application, I want to have three output files, a small summary output, a medium-sized standard output, and a larger detailed output. It's convenient to write to these from various subroutines in various modules to report data and progress at the thing runs.

[Code]...

View 16 Replies

File I/O And Registry - Set Program Permissions

Jul 6, 2010

I'm am developing a program for my computer and as I am using Windows 7 i have to execute it as admin every time I open my program. My IT teacher said I could set my program's permissions to 1, doing this the program would have admin privileges. But the thing is I don't know how to do it.

View 1 Replies

Can Store Data Annotation Error Messages In An External File

Dec 17, 2010

I am using data annotations to validation my class properties. A requirement has emerged to store the validation error messages in an external file from which they would be loaded into memory at runtime.I thought I'd be able to load a colleciton of error messages from an XML file and then set ErrorMessage:=[StringVariableHere] ... but apparently that doesn't work as you need to use a constant value.If I store the errormessages in a Resource.resx file then those error messages are compiled into the project and can't be loaded at runtime - or am I wrong?

View 1 Replies

File I/O And Registry :: Create Some Data Inside An App And Send It To Another App As A File?

Feb 20, 2010

This is what I am trying to do. I need to create some data inside my app and send it to another app as a file. But this 'file' should never be written to the hard drive. It will only ever exist in RAM.

View 17 Replies

File I/O And Registry :: Retrieving Data From Text File Using Streamreader?

Feb 15, 2012

I am making a simple application that will be able to store competition data into a text file that I have given a custom extension to on saving. Here is an example of the format that i have saved the data in.

Code:
[Comp_Name]Test Competition[Comp_Name]
[Location]Silverwood Lurgan[Location]
[Type]Teams[Type]

[Code]....

When i open the file, i want to redisplay the data in separate text boxes. Later on in the project i want to be able to search within the file for headings for example;

if "[Heat1]" is present then get all text between [Heat1] and [Heat1]

i am currently able to use the streamreader and open file dialog to retrieve the entire string of text fromthe however i am not sure how to go about getting the text between the headings I have used.

View 5 Replies

File I/O And Registry :: VB 2010 Formatting Data In Text File?

May 4, 2012

1 List all of the data from Teams.txt in a Listbox. Include suitable headings.

2 List all of the data from Results.txt in the Listbox (use the same Listbox as in 1 above).Include suitable headings. Note that you cannot assume that the file contains onlyresults for the first 3 weeks of the season. Your program should be able to process a results file with more or fewer results.

3 List all of the data from Results.txt in the Listbox. However, in this case the actual team names should be output (your program will need to get this data from Teams.txt. The data should be formatted so that it is aligned correctly. Include suitable headings.

The output might look as follows:

Home Team Away Team Home Team Goals Away Team Goals
Bunbury Braves Nedlands Nodders 5 2

View 1 Replies

File I/O And Registry :: Export Data To Text File?

Mar 17, 2009

I have a variable (double) that is constantly update in real time with data from an analog input. I would like to write this data as it comes in to a txt file. When I stop my acquisition of data from my analog input, I should have a txt file with all that data stored on my computer wherever I want it. The way I'd like that txt file to be laid out is like so:

Test Title: "This info comes from a string variable"
Operator Name: "This info comes from another string variable"
Test Date: "This info comes from yet another string variable"

[code].....

And so forth. As you can see I would also like to write the time for each data. This depends on my Timer interval which the user can set. The default is 50ms. So by default, y1 y2 y3 would be 0, 50, 100. How would I generate such a text file?

PS: I have five variables (X, Y, strTitle, strName, strDate)

View 1 Replies

File I/O And Registry :: Importing Specific Data From An XML File

Oct 19, 2009

I wish to import data (into a text box) from specified tags within an XML file.[code]Instead of loading the whole file into a text box I would like it to load data within <ABC></ABC> tags.The amount of <ABC></ABC> tags varies for each XML file. As does their placement (which line they are on).

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved