Block Specific Websites By Adding Them To A System.collections.specialized.stringcollection In My.settings?

Nov 7, 2010

I'm trying to block specific websites by adding them to a system.collections.specialized.stringcollection in my.settings, where i use

Private
Function
GetBrowser() As

[code]....

View 7 Replies


ADVERTISEMENT

System.Collections.Specialized.StringCollection Vs System.Collections.Generic.List(Of?

Feb 5, 2011

[code]...

What's really the point in using the former?It's hard to use linq if I used the former. I have to convert that to an array first which is difficult because there is no (asarray) function.I think I would change all of my code that's using System.

Collections.Specialized.StringCollection to System.Collections.Generic.List(Of String)

View 2 Replies

Populate System.Collections.Specialized.StringCollection Object From A Text?

May 6, 2010

Say I have a text file I want to load it to a System.Collections.Specialized.StringCollection

object dim a as System.Collections.Specialized.StringCollection

set a = a contains many systems System.Collections.Specialized.StringCollection object.

Each line in text.txt go to an element in a.

View 7 Replies

Add Item To System.Collections.Specialized.String Collection When It Is Not Already There?

Dec 29, 2010

How can I have it so that you can add items to a System.Collections.Specialized.String Collection but only if it is not there already? I have already found the code, but deleted it and cannot remember it. It is something like[code]....

View 9 Replies

.net - Save System.Collections.Specialized.NameValueCollection Instance To Hard Disk And Load It Back As An Instance?

Jun 24, 2011

I have following instance of System.Collections.Specialized.NameValueCollection:

Dim UserSelection As New System.Collections.Specialized.NameValueCollection
UserSelection.Add("D_Color1", "Black")
UserSelection.Add("D_Color2", "Green")
UserSelection.Add("D_Color3", "Purple")

I need to save this instance to hard disk and then load it back from hard disk as an instance. How do I do that?

View 2 Replies

Create A Program For Parental Control That Block Specific Websites?

Jun 12, 2011

I have used VB6 years ago. Few days ago I just got started again with VB 2010. So I'm newbie again, Almost forgot everything. I want to create a program for parental control that block specific websites.

What I exactly want to do is The code should check the titles of the open windows and see if it is blocked one. If it is, it will close the browser with a message showing it's blocked. For example If I put "yahoo" to check and someone opens yahoo.com it should be terminated.What I have done so far is, I made DOS batch file that will terminate all the browsers that are open and set that ready to run when the title matches blocked site name/address.But I am stuck at how I can check the titles of the window that are open.

[Code]...

View 3 Replies

Save Data In Settings Using System.Collections?

May 17, 2012

ok this code will save data withc is URL from textbox and load it to listbox , but i want it save first name of uRl like google then in other textbox put URl and save so when its load data its shows only name like Google not [URL] in listbox sometimes the link is too long and it will be not good interface in form1 and then when u click Google in listbox it open its URl [URL]

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
My.Settings.FavList.Add(url_text.Text)

[Code]....

View 1 Replies

Asp.net - Value Of Type 'System.Collections.ArrayList' Cannot Be Converted To 'System.Collections.Generic.List(Of ITextSharp.text.IElement)'

Sep 21, 2011

I'm having a problem with this code in the highlighted line(*); getting the error in the heading.

Dim htmlarraylist As New List(Of iTextSharp.text.IElement)
htmlarraylist = *HTMLWorker.ParseToList(New StreamReader(tempFile), New StyleSheet())*

[Code].....

View 2 Replies

StringCollection In Application Settings?

Nov 11, 2005

tried using the application settings yet. Everything seems to work well except when I specify the type as a string collection. When I try to add new items at run time using the property window I get the following error:Constructor on type 'System.String' not found.Do I need to do something else to make this work?

View 4 Replies

Block Websites With Program?

Mar 14, 2011

I'm Trying to make a Program that Blocks / unblocks websites.[code]...

View 4 Replies

Program To Block Websites

Feb 6, 2011

i am making a program that you should be able to block websites with. and i want the program to block the websites that is inside a text file or something, so the user can change the website that should be blocked.

View 9 Replies

Convert A System.Object To A System.Collections.Arraylist?

Oct 13, 2010

I am using Visual Studio 2005 and am writing a SSIS package. In the package I have a VB.Script that looks at a directory on a server and creates a list of the files. I then have a store Proc that looks at a table and gets a list of files that matches the files in the first array. The result is a fullresultset. The next step I need to create a 3rd array that only contains the rows from the first that are not in the second. However, I am getting the following error. Error: The script threw an exception: Unable to cast object of type 'System.Object' to type 'System.Collections.ArrayList'.

View 3 Replies

System.Collections.BitArray Versus System.Boolean()

Nov 5, 2010

I recently discovered that the standard System.Boolean value is actually 32 bits - this seems pretty "far out there" since it's only ever going to be 1 or 0 - I found this information in somebody's blog which contained 3rd-party documentation on the System.Collections.BitArray. According to this blog, the individual Boolean is 32 bits while the individual index entry in a BitArray is actually just 1 bit - official documentation here at

MSDN indicates that in reality, the BitArray is just an array of Boolean Values (which would be the same size as any other boolean) that provides methods and functions useful in deconstructing System.Byte values into the BitArray and reconstructing the BitArray back into a System.Byte (same with System.Byte()).

I'd rather not go through a lot of code to restructure Boolean Arrays into BitArrays unless there's going to be some genuine memory-use improvement (which I'd expect to see if I converted large Boolean arrays - at 32 bits per index - into large BitArrays at 1 bit per index). I'm also interested to know if the Boolean is actually a 32 bit monstrosity.

View 2 Replies

Unable To Cast Object Of Type 'System.Collections.Generic.List`1[System.Int32]' To Type 'crmWebService.ArrayOfInt'?

May 14, 2012

I'm getting an error after sending a list to a web service.This is the code that is calling the web service:

Dim sProgramInterest As New List(Of Integer)
crmService.InsertProspectGetId(sProgramInterest.ToList)
But I'm getting this error.

[code].....

View 3 Replies

Difference Between Standard My.settings And Adding A New Class That Is Of Settings?

Mar 3, 2009

my old vb6 program used to store to ini files now with .net I rekon I need to do something new.. was thinking XML but then in searching around I stumbled apon this my.settings stuff.. so I followed the instructions but something strange is going one..

1. whats the difference between the standard my.settings and adding a new class that is of settings ? anything ?

2. I made 10 new settings in the setting manager but when I try to change then it gives me the old squiggle line saying no go.

View 15 Replies

Picturebox Collections - Avoid Adding The Controls In Code

Nov 19, 2011

I have forms with multiple pictureboxes, labels, etc. They are all numbered, for example, pb_QL01 to pb_QL99, or lb_Main01 to lb_Main29. In the old days, I could reference the properties of these in code using, for example, Me.Controls(a).Image where 'a' was the string of the name of the object (e.g. "pb_QL23"). So, I get it that you can't do this anymore in QB2008 (too bad). I need to set the properties in loops. [Code]

but it takes a long time to cycle through all of my controls, and there are some properties that will not work (like mycontrol.image), image not an option. So, is there an easy way to get this done? I don't want to add the controls in code, since they already exist on the form. If I have to use collections (which I'd prefer not to if there is an analogous way to the old way of passing the name of the control in code with a string, but if I need to, how do I get this to work.

View 3 Replies

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

Does IIS Installed Libraries Include System.Collections.dll

Nov 19, 2009

I am having trouble developing an asp.net page. I can create custom collections and use them in win apps, but when i reference the system.collections namespace, the page response hangs up. No exception info is passed back or anything. The page just freezes. Is this a common problem. I am wondering if its due to the assembly not being present (but am unsure why an exception wouldn't indicate this.).

View 1 Replies

Extending System.Collections.Generic.List(Of T)?

Jan 27, 2010

imagine i want to add an extension method to System.Collections.Generic.List(Of T)

let's say i want to give it .GetUBound which returns Count-1

View 7 Replies

Sorting System.Collections.Generic.List?

Feb 2, 2012

I have a lists of different custom classes and each must be sorted severals times before the algorithm is complete. For each sort I wrote a comparer. Sofar so good. Everything works. But: By now I have abou a dozen different comparers in more than one class and it is still getting more. I wonder if there is a way to limit the number by writing a new general function that can be used to sort all lists without the need for a specific comparer.Below is what I've got so far. But it does not work.

"System.Collections.Generic.List(Of ClassA)" can not be converted into "System.Collections.Generic.List(Of Object)."

[code].....

View 2 Replies

System.Collections.ArrayList - Index Out Of Range

Oct 29, 2009

Public extreme_foods As New System.Collections.ArrayList()

[Code]...

anyone know why extreme_foods(i)=s is giving INDEX OUT OF RANGE??

View 2 Replies

System.Collections.Generic.Dictionary `Add` Vs Set `Item`

May 20, 2011

If i wish to put items into a System.Collections.Generic.Dictionary, I can either Add or set the Item.I know if you do Add it helps you check if the key already exists and if not it throws an exception.Now I'm curious, so if I'm adding a ton of items, should I prefer setting Item instead of Add since Add does unnecessary checks that may actually slow things down?

View 3 Replies

VS 2010 - VB 6 To .NET Conversion - System.Collections.IEnumerator

Jun 1, 2011

I have a fairly lengthly block of code that I'm trying to convert from VB6 to VB.NET. The ArcObjects GIS code basically looks at a table and groups a bunch of GIS layers together and adds them to the ArcMap table of contents. I'm having trouble with this line when testing it in Visual Studio 2010: [Code]

View 1 Replies

Passing A System.Collections.Generic.List To Another Class?

Jun 10, 2012

I am trying to pass a System.Collections.Generic.List to another class. The collection is created in class2 and then passed into class1

[code]...

However I get a 'Null Reference Exception error' when I run the program. It seems f_str in the line 'For Each s As String In f_str' is null.

View 3 Replies

Reference - Does .Net 2003 Support System.Collections.Generic

Sep 21, 2011

I am planning to use a List in my application but when I was searching for System.Collections.Generic, it only has System.Collections. I tried to look it up in the "add reference" and its not there.

View 2 Replies

Value Of Type 'cfeedback' Cannot Be Converted To 'system.collections.arraylist'

Jan 10, 2012

Firstly, i have a grdData at my main page. After choosing the data i want and went to another page using

[Code]...

View 1 Replies

[2008] How To Search In System.Collections.Generic.List

Feb 15, 2009

how to find a value in the System.Collections.Generic.List.I have:

Private ids As New List(Of Byte())
ids.add(New Byte(){&HA8,&H0F})
ids.add(New Byte(){&HFF,&H03})
ids.add(New Byte(){&H10,&H00})

I would like to find for example: &H10,&H00 in that list and if there isn't the stuff I wan't to find then how do I know that?

View 3 Replies

.net - Test If Property Of Type System.Collections.Generic.List(of T)?

Apr 10, 2012

I need to be able to tell if a property is of type List(of T)but am currently unable to. if i do

TypeOf (UpdateTo.GetType.GetProperty(node.Name)) Is System.Collections.Generic.List(Of Object)

I get the following error

TypeOf (UpdateTo.GetType.GetProperty(node.Name)) Is
System.Collections.Generic.List(Of Object) Expression of type
'System.Reflection.PropertyInfo' can never be of type[code]......

View 1 Replies

Value Of Type 1-dimensional Array Cannot Be Converted To System.collections.bitarray?

Mar 12, 2010

I have a function to create a pdf which should return bitarray. Below is the code

Public Function GenPDF() As BitArray
Dim pdfdoc1 As BitArray
Dim doc As New Document(iTextSharp.text.PageSize.LETTER, 10, 10, 42, 35)

[code]....

View 1 Replies

C# - Programmatic Way To Temporarily Block Specific Web Sites?

Jun 19, 2009

I need a way to programaticaly block and then later unblock specific websites based on their domain names. I only need to block browsers (so http & https would be sufficient, I guess?) but not just Internet Explorer, it should also work for anyone trying to run Chrome or Firefox too.

View 4 Replies







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