VS 2010 - Use StringCollections Instead Of String Arrays For My.Settings

Jul 29, 2011

To use StringCollections instead of String Arrays for My.Settings. I've opened a file and have this:

CODE:

But I error on line 2, saying "Object Reference not set in Instance of an Object". So then, I try to use New before I go Into the loop: My.Settings.Trunk = New System.Collections.Specialized.StringCollection

But then i get "index outside bounds of array" still on line 2. This is weird to me. Is it because my StringCollection doesn't have an array size? If so how do i declare an array size for this? Or is this just so totally different from String Arrays?

View 2 Replies


ADVERTISEMENT

Application.Settings VB 2005 - Save Arrays Using The Settings System Object

Jan 14, 2009

I just wondered if you can or can't save arrays using the settings system object. There seems to be no way of entering it at designtime. It seems implied you cannot create new user settings.subobjects at runtime. I'm looking to find the easiest way to save a populated array of PictureBox's. If the only way is a self/custom made/managed .ini file then I need to know so i can start on that but I was hoping to use some of all this phaff in the new frameworks usefully.

View 3 Replies

Compare Two StringCollections?

Jun 12, 2009

Is there a way to compare two variables that are StringCollections to find out if they both contain the same data or not?

View 3 Replies

Saving 2-dimensional Arrays To Settings?

Jun 30, 2011

I have two different 2-dimensional arrays. I assume the setting i need to save them to is a string setting, as is the cast with regular integer arrays. The first 2-d array I need to save is an integer, the second a decimal.

Let's say the settings are called my.settings.2darray1 and my.settings.2darray2
Let's also say the arrays are:

vb

dim 2darray1(50, 99) as integer dim 2darray2(50, 99) as decimal

What would the code be to load each array and save each array?

View 4 Replies

Storing 2-Dimension Arrays In My.Settings?

Dec 7, 2011

I'm still doing upgrades on my program that i'm creating and i've run into a bump again. I'm currently using a multi-dimension array to store a name, email, password, email provider, and user name. These 5 values are stored, corresponding with the latter, meaning the array is build as: name 1....n user name 1....n user email 1....n user email provider 1....n password 1....n So my question is, how can i store this in My.Settings? To be clearer, i'll use code: My.Settings.Name = name My.Settings.UserName = userName etc..... My current set up for a first run is like so... My.Settings.Password = adminInfo(2, 0) My.Settings.UserName = admingInfo(1, 0) etc.

View 11 Replies

VS 2010 - My.Settings - Can't Find File Which Reflects Changes To User Settings

Apr 15, 2011

1. I can't find the file which reflects changes to user settings. This might be because I just can't find it (I can see a bunch of user.config files but they are all empty - weird!), or...

2. I'm not actually saving them when I think I am.

Regarding 2. - do I need to invoke

Is this all I need? And if so, why are my user.configs empty?

View 1 Replies

VS 2010 Save The Treeview Items To Settings (my.settings.history)?

Mar 25, 2011

I'm working with an Treeview and i'm new at it and i have 2 questions.

1. How can i save the treeview items, to settings (my.settings.history)

2. How can i save the treeview items as an TXT or XML file or another exception.

View 13 Replies

VS 2010 - Settings.settings Saved Into The Registry?

Jun 11, 2010

Small questions about the settings.settings. Are these settings saved into the registry? I'm want to use and external file for my connection-commands. I don't want to use the registry to store the strings. What do you recommend?

View 11 Replies

String Arrays In For Loop?

Apr 3, 2012

What's the best way to do this in sort of thing in VB:

[Code]...

View 11 Replies

Retrieve String Arrays From Unmanaged C++ Dll?

Aug 29, 2011

I got this DLL functions explained in C++ as below :Void GetResultData(int pIndex,char pStrData[100][255], double pDoubleData[100])

View 2 Replies

String / Char Arrays And Whitespace

Feb 6, 2012

I am developping an app which talks across a network and will eventually be used to read in a text file (on the client) and transfer it to the server. Currently, the server and client succesfully connect to each other using the Tcplistener/Tcpclient classes. I am now trying to send some data across the network using the networkstream class, which I have implemented.Currently for testing purposes i am sending a char array which contains the characters "hello" which succesfully sends and outputs to console on the server. Although, "hello" is followed by a long list of whitespaces. I have tried converting this to a string array on the server and/or client and using the string.Trim() function (amongst trying many other things over the past couple of hours) although the output remains the same.

View 19 Replies

Arrays - Looping Through A Split String / Replacing?

Jun 1, 2012

I'm trying to make a function in VB.net that will loop through an algorithm. I've split the algorithm into an array using the Split command, so I have an array with the values. I then try to loop through them and replace a # with "Number" where necessary, however VB.net throws an error. Algorithms are in the format A B C D E F 1 2 3 #

Function generate(ByVal alg As String)
Dim algSplit As String() = alg.Split(" ")
For Each digit In algSplit

[Code]....

View 3 Replies

Combing Two String Arrays In Third Excluding Duplicates

Jan 25, 2010

I have a string array Array1 and a string array A2. I want to combine these in a 3rd array A3 but excluding duplicate values. Can this be done through lambda expressions or only through iterating through the array and checking array.Contains()?

View 2 Replies

Game Programming :: Alphanumeric String Arrays

Jul 30, 2009

I have a string array of size 51 CardListIn() representing randomly ordered cards in a deck {1d, 2d, ...14c} e.g. 9d = 9 of diamonds and so on. I then have 52 text boxes for user input. These have been put into an array of text boxes as so:[code...]

I want to search my original string array for any cards the user may input in any of the textboxes and then delete those entries from the string array.So say the user enters "1d" in one of the textboxes, I then want that removed from the string array.

I'm parsing through both the array and the text boxes fine, but for some reason that I cannot fathom, it doesn't find a match. The string array definitely contains "1d" and the textbox definitely contains "1d", but it doesn't register as a match. I've tried using Val() for the string array and the text boxes, but then it removes every entry beginning with a 1, e.g. "1d", "1h", "1c" & "1s".

View 8 Replies

Jagged Arrays Redim And String Causing?

Nov 12, 2010

Im coming from a background of writing vba in excel, but have go to the point where im fed up of having everything running in excel and have started leaning vb.net. i am trying to do something i have done before, but am pretty much rewriting it as having got the end i now see a better way of doing things

Normally Google is full of help full answers but today it isn't, i may be i'm doing something odd or am trying to use completely the wrong tool for the job am happy to be told either.

I am trying to take data from a text file dumped from one of our databases, i have read the (huge) and oddly formatted text file in, converted it to a 1d array = InPutArray

[Code]...

View 3 Replies

VS 2008 String To Array & Searching Arrays?

Dec 17, 2009

I have 2 groups, the information i get comes out as follows.

Dim group1 As String = "3 4 7 8 10"
Dim group2 As String = "0 1 2 5 9"
The placements are predetermined, so when the first perso

[code].....

View 1 Replies

.net - Use A String In My.Settings?

Aug 10, 2011

For Each i In web
web(i) = My.Settings.sweb(i)
name(i) = My.Settings.sname(i)
Next

This code doesn't work, it is what I want to do. How do I make it so that I can change the name in my.settings without hard coding it?Basically I want to be able to change the name of the input to my.settings How can I make the "sweb" part of My.Setting a variable so I can change it.

View 3 Replies

Add String To Collection In Settings?

Aug 17, 2011

i have an app, and i want to add a string into a collection in my.settings.'there is a collection: My.Settings.items

My.settings.items.add("string")

'this gives a nullreferenceexception

Dim selected() as string = {"string")
My.settings.items.addrange(selected)

'also a nullreferenceexception so, it turns out you can't do anything.how do I add the "string" into "items"?

View 9 Replies

String Variable From My.settings?

Apr 21, 2011

I'm going to describe what I'm trying to do and then what I'm doing in hopes of making this as clear as possible.I'm trying to create a way of having data avaialble to the application that could be changed in the future and not have to recompile the code.Normally I do this for my connection strings incase something changes, this way I can just change the file and I'm good.however in this case I'm trying to store a long string variable that contains something like(including all " in the string) "Dear " + emailRecp + vbCrLf + "Thank you for buying our product...."

Now when I do this as part of the code with something like strMessage = "Dear " + emailRecp + vbCrLf + "Thank you for buying our product...."when I look at the output from this it looks like (which is what I want):

Dear Mr Smith

Thank you for buying our product....

however when I do strMessage = My.Settings.purchaseMessage (even with .ToString()) the output looks like Dear " + emailRecp + vbCrLf "Thank you for buying our product....how to do this in another manner that won't affect performance.I have also tried to trim the " from the first and last char positions and no luck.

View 5 Replies

Connection String In Application Settings

Jan 14, 2010

I'm trying to give my users the option to move their database to a different location, currently the datasource is set as an (Application Connection String) in the Project Settings, I know that when the scope is set to "Application" it cannot be modified but I'd like to know if there's a way for me to edit the location through code of my database in the application settings without crashing the program, can this be done? The purpose is to give whoever uses my application the freedom to choose where the database should be.

View 3 Replies

Save String Array To Settings?

Jun 4, 2011

Here's the code i've used in the past to save an integer array to settings (The setting being listed as a String on the dropdown):

Save:

vb

sec0string = String.Join(";", Array.ConvertAll(sec0, Function(n) n.ToString()))

Load:

vb
sec0string = My.Settings.sec0
sec0 = Array.ConvertAll(sec0string.Split(";"c), Function(s) Convert.ToInt32(s))

View 8 Replies

VS 2010 Can't Use Arrays With CType

Oct 25, 2011

does your IDE ever get amnesia?in the line before it is clearly defined.in the following line it is not.Maybe it's a faulty translation from Tangible Software.the C example i'm looking at:

IAnimatedMeshSceneNode* newNode = (IAnimatedMeshSceneNode*) oldNode->clone();

translated as:

Dim newNode As IAnimatedMeshSceneNode = CType(oldNode.clone(), IAnimatedMeshSceneNode)

had to make a dummy for it because i can't use arrays with CType.

View 1 Replies

VS 2010 Copying Arrays?

Feb 21, 2012

I have an array of the following structure:

<Serializable()> Public Structure Piece
Dim id As Integer
Dim pos As Point

[code]....

View 1 Replies

VS 2010 How To Compare Arrays

Jun 12, 2012

I'm trying to determine the highest customers in a single month of the year. I also need to add the corresponding month to that.

View 4 Replies

How To Save All Combox Items In Settings String

Mar 26, 2009

How to save all combox items in my settings string.... Without.....IO.StreamWriter..

View 16 Replies

ListBox Load Settings From String Collection?

Feb 26, 2009

I'm trying to create a favorite box in my web browser using this code in Favorites.vb

Public Class favorites
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click

[Code]....

Now I have it so when you click the add button it will put the URL in the string FavList, and place the URL in Listbox1 however I have no idea how to save it, and load it.

So the next time the user opens it, it will have the URL in the string and URL box, so when they click the URL in listbox1 it will redirect the WebBrowser. I think it works like that already I just need to know how to save it, and load it.

View 2 Replies

Save 1-Dimensional String Array To Settings

Feb 24, 2012

[Code]...

HumanName (the variable, not the setting) in this code is a 1-Dimensional string array. HumanLevel is a 1-dimensional integer array. There is no error in this code, but for some reason despite the fact that the integer array actually saves to settings exactly as it is supposed to, the string array causes the program to crash.

[Code]...

View 7 Replies

Settings Is Readonly/ Changing Connection String?

Mar 2, 2006

This is regarding a windows app in Visual Studio 2005, a VB Windows application.'ve stored a connection string called strSQLConn in My.Settings. I'm trying to change the Server in code. I set a string variable called strConn to a new Connection string. My.Settings.Profile2006sql = strConn

This produces an error saying that My.Settings is readonly. I'm missing something basic here.

I don't know if this is the best way to change a connection string to toggle between a development server and a production server. My understanding is that if the setting Connection string is changed it will be used as the default for all the table adapters in a strongly typed dataset. Is that the case?

View 10 Replies

[2008] Store Comnnection String In My.Settings?

Jan 12, 2009

how to store the connection string to my Access mdb in my project's My.Settings ?

View 4 Replies

VS 2010 - Loading CSV File Into Set Of Arrays

Nov 1, 2011

I need to load a CSV file into a set of arrays, and show the output into a listbox, which are associated with other textboxes(labels). earlier i had the names all loading into the listbox, but the values in the label were only correct for the last line in the csv file, not corresponding correctly to the listbox values.

Here's my current
Option Explicit On
Option Strict On
Imports System.IO
Public Class frmMain
Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code] .....

And here are the contents of my csv file:
Randy,Johnson,100,95,80,85
Martin,Lin,90,90,90,90
Tony,Nowakowski,100,100,100,100 .....

View 12 Replies







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