Storing Values In Application?

Feb 14, 2012

I am trying to store things such as user data for each user in my program, like with a class I made named UserData. I would like to have data different for each user. How can I do this? Also, I need to be able to access other user's data from my account.I tried using Settings, but they only had a limited number of classes, and the settings didn't seem to save for some reason.

View 13 Replies


ADVERTISEMENT

ASP.Net Datatable Not Storing Values

Oct 6, 2011

Im working on an Asp.net / VB.net website and coming from a C# / WPF background things are still a little new to me. I have declared a DataTable like so: Public notificationList As DataTable And I have then used the Page_Load event handler to populate it and bind it to a control on my page, which all works fine

[Code]....

However in another method i need to be able to access this DataTable, yet whenever I do it always appears as nothing. Do I need to be storing this value elsewhere like in the session etc?

View 2 Replies

Best Method For Storing Values?

Feb 6, 2010

Basically, I want to have a database that's lightweight and I won't need to install amillion other things on my clients computers for them to access this.I just need a simple method of reading and writing values so that they're not hardcoded into the program. I could do MySQL (which is what I'm very familiar with), but it doesn't need to be making calls remotely.

View 4 Replies

Storing Multiple Values In A String?

Mar 4, 2012

How can i use .filenames of a openfiledialog with a string?


[Code]....

but i get error: Error 1 Value of type '1-dimensional array of String' cannot be converted to 'String'.

View 2 Replies

Storing Textbox Values In Notepad?

Feb 23, 2009

how can i store textbox value in notepad

View 2 Replies

Storing Values In Arrays Fom Inputbox?

Feb 5, 2009

i have declared an array which i want to populate with names, as they are entered into an input box.It does not seem to work i have tried many other methods with the array but to no success.

Dim namearray() As String
Dim i As Integer
name = InputBox("Enter the candidates name:", "candidatename", "", 500, 500)
name = namearray(i)
i = i + 1

View 6 Replies

.NET Best Data Type For Storing Currency Values?

Feb 13, 2010

What is the most appropriate data type for storing currency values in VB.NET?

View 1 Replies

Asp.net - Storing French (decimal Values) In Database?

Jul 18, 2010

I have my form set in french as well, and it automatically changes the text format to use ','. However When I try to insert my values into the database it says cannot convert nvarchar to decimal? Worst case, Is there a way I can disable the numbers from changing to use ',' and just use '.' always regardless what language it is? My working language is vb.net?

View 1 Replies

C# - Session Is Storing The Values On The Server Not In The Client?

May 17, 2012

I used this way to make my shopping cart system :

Click here to see the example

when I add a product to the shopping cart it adds it very well but the problem is in the session, it stores it in the server not in the client browser.

so if some body visit the website from another computer he can see the added products on his browser while it should be empty.

Is there a way to save it on the client side instead of the server side ??

View 2 Replies

Storing French (decimal Values) In Database?

May 3, 2012

I have my form set in french as well, and it automatically changes the text format to use ','. However When I try to insert my values to the database it says cannot convert nvarchar to decimal? Worst case, Is there a way I can disable the numbers from changing to use ',' and just use '.' always regardless what language it is?

View 1 Replies

VS 2005 Storing Color Values In Datatable?

Dec 7, 2009

Is it possible to store color values in a data table? Such that when these values are loaded into a datagrid, the datagrid will display the color.

View 2 Replies

Storing UserID And Password Values From MainString To Variables

Mar 10, 2009

I have this string
mainString="/MyApp/ViewPage.aspx?userId=admin&password=1&id=975"

I am getting value in mainString using this code
Dim mainString As String = Request.QueryString("dest")

And I have two sting variables
1)strTempUsername
2)strTempPassword
In these variables I want to store userId and password values from mainString.

So for this requirement how I write logic in code
Dim arrArray() As String
'/MyApp/ViewPage.aspx?userId=admin&password=1&id=975"
strIndexq = mainString.IndexOf("?") ' Check QuestionMark Exist or not in mainString
If strIndexq > 0 Then
Dim strTemp As String
[Code] .....

Here I am getting userId and password but in this code I will get problem when after ? if userId and password starts wit capital letters and password maybe contain characters like "1&a"

And after getting userid and password. I want to remove userid and password from mainstring. So I want mainstring look like:
"/MyApp/ViewPage.aspx?id=975"

View 15 Replies

VS 2005 Storing Null Values In Access From Datatable?

May 22, 2009

Did anyone knows where can I upload a folder so my programe to be able to download an update from there???

View 3 Replies

VS 2010 - Reading Text Files And Storing Values To Database

Apr 29, 2012

I am using VS 2010 and I want to read the Text File values and place them into variables. This is my code
Me.OpenFileDialog1.FileName = Nothing
If Me.OpenFileDialog1.ShowDialog = System.Windows.Forms.DialogResult.OK Then
Me.TextBox2.Text = Me.OpenFileDialog1.FileName
filename = Me.TextBox2.Text
End If
[Code] .....
I am unable to move pointer to next line.

View 6 Replies

VS 2010 Storing Application Data Within An Application

Jan 8, 2012

I was wondering if it's possible to store application data within an application without storing the data in an external file. For example, in my application, the user can choose where he/she would like to store the files that the application creates. I need to make the application remember the location that the user specified. I've tried using My.Settings to save this information, but since my application is standalone, if the location of the application changes, the My.Settings information changes as well (unless I coded it incorrectly before). I would prefer not to store this data in a .txt file or something similar.

View 10 Replies

Asp.net - Storing A Custom Object In A Web Application

Jun 14, 2012

I am at a new company and I am building a wizard for a web app, (.Net/4.0). The user goes to a few separate screens during the wizard process and must return to the original screen before completion of the wizard. This is different from how they normally do this. But this is how it is TO BE DONE.

One option is to store the result of each panel in the main screen in the DB. So then, when the user leaves & redirects back. I could check for a querystring then call a datareader and populate original values appropriately.

[Code]...

View 2 Replies

Storing Persistent Objects In VB Application

Aug 31, 2011

point me to the best way to store persistant objects ( of my own class) in a vb application? I am putting together a simple family recipe application and have created a food item class. I would like to store the instances ( food items) indefinately so that they are there each time I start the program complete with all properties and meethods

View 14 Replies

Storing SMTP Credentials For Application?

Apr 8, 2010

I've been storing SQL connection strings in web.conf which is fine but now I need to store SMTP credentials somewhere protected. web.conf seems like the likeliest place since its protected but how can they be stored?

I've added the details to my web.conf but amnot sure how to reference them

<system.net>
<mailSettings>
<smtp>

[Code].....

View 1 Replies

Storing Strings And Application Settings?

Jun 25, 2010

I've came to the stage where i need to save strings and application settings for my application. The My.Settings have worked it out until now. Now i have to store so many settings it's hard to keep track of them. That is why i need something new. So i've been looking around in INI files which seems impressively simple - but not very flexible. I've also took a look at XML which seems to be something to dive in to. But what i need now is advice. How do you store settings?

View 11 Replies

XML Files - Storing Information For Application

May 22, 2009

I am making a program that stores information for my applications. There are 4 main things I need in the XML file, the login information (User name and password), Application names and keys, and the owner of the application (who bought it). The program allows the user to enter as many applications and owners as they want and once login information is correct it loads the data. Then on exit all the data saves to a XML file.

My XML file looks like this
<Data>
<Login>
<UserName> (UserName) </UserName>
<Password> (Password </Password>
</Login>
<Applications>
[Code] .....

View 6 Replies

Storing 3 Tables Of Data In Application Settings

May 16, 2010

I will need to store 3 tables of data. Instead of implementing an entire database backend, I just want to store the record for these tables in application.settings.I don't care about security. Is it advisable to do it with application settings? how else would you do it? Perhaps storing a matrix in application.settings would be OK?

View 4 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

Storing Files Into An Application Compressing Them And Then Extracting Them?

Apr 8, 2009

How could I go about doing this if I can? Storing files into an application compressing them and then extracting them?

View 1 Replies

VS 2008 Storing Ftp Password Into Application Variable?

May 16, 2011

I have an application that is updating from my ftp server.Inside app I have 2 variables like this:

myFtpUser="ftpuser@mydomain.com"
myFtpUserPassw="myftppassword"

I obfuscate exe using Eazfuscator.For two times someone deleted all files from ftp account,I suppose he got the ftp password,is it possible to got it from my app exe ?Is it enough protected ?

View 10 Replies

Application Settings, Storing Type Internal To Your Assembly?

May 13, 2009

I am trying to store an enum in my application settings. This enum is defined within my main assembly in the same namespace. When I try to find the type under the application settings, it seems like I can't find any types within my namespace. I can see all the types of the assemblies I reference though.

View 2 Replies

VS 2010 Storing Backup History In Application Settings?

Jun 8, 2011

I'm creating a small tool for our team that performs backups of our servers. The plan is to put the tool in a central location so that anyone can use it.I'd like to store, somewhere, the date of the last backup for each server. I was wondering if I could use an application settings (with Application scope) for this? Is this bad practice? If so, what's the best practice? XML? text file? registry?

View 6 Replies

Storing 2005 Connection String, Username And Password Outside The Application?

Aug 13, 2009

Does anyone know how to store the connection string in a file rather than hard coding it in the application. For example i have declared this connection string in the form to connect to oracle database and it works. But i assume this is not the right way to go by if one is looking for more secured environment.

strcon = "Provider=MSDASQL;" & _
"Driver={Microsoft ODBC for Oracle}; " & _
"CONNECTSTRING=(DESCRIPTION=" & _

[code].....

View 9 Replies

Is Storing Image File In Database Good In Desktop Application Running In Network?

Oct 21, 2009

I recently came across a problem for image file storage in network.I have developed a desktop application. It runs in network. It has central database system. Users log in from their own computer in the network and do their job.Till now the database actions are going fine no problem. Users shares data from same database server.

View 7 Replies

Storing Image File In Database Good In Desktop Application Running In Network?

Aug 5, 2010

I recently came across a problem for image file storage in network.I have developed a desktop application. It runs in network. It has central database system. Users log in from their own computer in the network and do their job.Till now the database actions are going fine no problem. Users shares data from same database server.

View 3 Replies

Get XML Values On Windows Application?

Nov 8, 2009

I have a URL which returns a XML. I have been looking around to find what is the best way to do it where I will need to get 2 values from it, I have tried 3 different ways but I always received a blank result.

View 2 Replies







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