Separate Lists From Same Class Copy Each Other?

Feb 23, 2012

this example shows my problem. I'm using VB.net 2010

Public Class Form1
Public Class BonoType
Public name As String

[Code].....

What happens is "Goose" is not only stored in tory(1) but also in tory1(1), how can I stop this.

View 2 Replies


ADVERTISEMENT

.net 4.0 - Separate Lists From Same Class Copy Each-other?

Feb 7, 2012

Im trying to get a ComboBox that would list all the pc on a netowrk, (Domain and/or WorkGroup)the idea is so that when i start typing the name of the pc list would come up with sugestions (nearest match)

[code]....

View 2 Replies

VS 2008 Bound - Source Data Of Drop Down Lists Be Separate Queries / Datatables?

Jun 2, 2009

I've got a couple of drop down lists for languages. I bind them to a language list that comes from a query. Then the fields are also bound to the row in the DB they relate to. I have several panels with the language drop down - each "tied" to a different table in my DB. When I call up different records on the same panel the drop downs immediately "set to the position" of that rows language in the list. But when I call up another panel - tied to another database table - I see that language in the drop down.

[Code]...

View 9 Replies

Comparing Lists Of Strings - Copy And Display Elements?

Dec 20, 2009

I have two lists of strings. One is a list of all students in a class and the other is a list of students in the class that completed an assignment. The two lists are part:whole. So we have two loops for copying elements and displaying them in a list box for only the students who did submit.

Dim f As Integer
f = 0
Dim h As Integer
h = 0
While (usersinclass.Count > f)
h = 0
While (usersidthatsubmittedassingments.Count > h)
[Code] .....

What I need is the remaining portion of the "usersinclass" list. (i.e. The students who did not submit). I tried an Else statement BUT with nested loops, every element is guaranteed not to match at least once, so I was getting elements that shouldn't be there. So, is there anyway to run the given lists against each other again to pull out the remaining students? (preferably with no repeats).

View 1 Replies

.NET Multithreading / Calling Invoke On A UI Control From A Class In A Separate Class File?

May 13, 2011

Example:

Two files - TestClass.vb, myForm.vb

TestClass.vb looks as follows:

Imports System.Threading
Public Class TestClass
Private myClassThread As New Thread(AddressOf StartMyClassThread)

[code]....

The result:Application runs, no errors or exceptions.Displayed is the listbox and the Start button.I press the start button and a msgbox says "Not Invoked" as expected and upon clicking OK to that msgbox "Start Button Pressed" is added to the Output listbox control.Immediately following that the msgbox pops up again and says "Not Invoked". I was expecting "Invoked" as a separate thread is trying to use the Output listbox control.Of course this results in the Output.Items.Add being attempted which results in no visible result as the thread is not allowed to directly update the UI control.

View 1 Replies

Copy Text Or Url From Separate Web Browser?

Feb 26, 2009

What I need to do is pull information from reports which will then be parsed and sent on to another program. I have everything working except the first and most important step. I am not able to pull the information from the initial reports. They are displayed as html files in a very limited web browser. The window handle of the browser is "MSGWND" and the child handle is Internet "Explorer_Server". I can make this work by pulling the information out of the notepad or by loading the html file myself but I can not seem to get any information out of the "Internet Explorer_Server". Ideally I would like to just pull the url that the browser has opened but I don't know where to look for that as those are the only handles in the whole window.

View 1 Replies

2008 : Can VS Copy The Executable To A Separate Directory

Dec 18, 2009

VS sets your project up with the default directory structure: ...indebug which also seems to contain some other files besides your dll (I assume these are related to the debug symbols, etc).So how do you set it up to copy your dll to another directory when debugging?Right now, I'm having to manually copy the built dll with every run and that's getting to be a bit annoying.I'm using VS 2008?

View 11 Replies

Event Vs Recursion - Program That Has A Large Set Of Classes In It - Each Class Will Need To Add One Or More Strings To One Of Two Lists

Mar 14, 2010

I have a program that has a large set of classes in it. A certain incident (I won't call it an event, yet, as that has a specific meaning that will cause trouble later) needs to a relatively small subset of these classes a question. The subset of classes will need to respond to the question, but for it to be able to do so, the classes may first need to ask a similar question of the same subset, which may prompt yet a further question, though this recursion will never go more than three or four levels down. Since only a small subset of these classes will participate in the questions, while the majority will never participate, and since all of these classes are virtually identical, and I can know at design time whether any given class is part of the subset or not, an event is appropriate. The main class can raise an event, and those classes in the subset can handle the event, while those classes that are not in the subset won't handle the event. Furthermore, any of these classes can raise the event again with different parameters, as needed. Thus far, an event appears to be ideal.

The problem is this: As a result of the event, each class will need to add one or more strings to one of two lists. Event handlers can't return anything, so I can't be using the return values from functions to populate these lists.

Two options appear possible:

1) Include the two lists in the event arguments.

2) Have the two lists be accessible to all classes, and don't pass anything around.

The second part of the problem is that the event is effectively a question being asked of each class, and no action can be taken until each class has responded. If I simply raise an event and let each class respond, can I be certain that all classes that should respond have? An alternative solution would be to have each class expose a method, and call these methods for each class in turn. By doing this, I could get return values, but I would have to call the methods for ALL the classes, not just the subset that actually cares (the classes are all different types, but they all implement a common interface, and are added to a List (of ) that interface, so I can iterate through them all without much difficulty). So, the event seems more efficient, but adding a function to the common interface for the classes is the approach most certain of being a solution.

View 7 Replies

Can't Add Tabpages From A Separate Class

Nov 22, 2009

Good evening folks, I'm building a program that is threaded. While I can get the thread to work no problem, I can not seem to add pages to my tabcontrol from the class I'm using. Any idea's on what I'm doing wrong?frmMain is loaded first. Then the idea is to load the other tabpages using a separate thread as they take awhile.[code]

View 1 Replies

Inherite Class From Separate Dll?

Jan 20, 2011

I am having following Projects

ClassLibrary1
Public Class Class1
Public Sub MyMethod()

[code].....

View 12 Replies

Notifyicon As A Separate Class?

Feb 11, 2011

I don't want my application's main form to be displayed when it opens; I just want the notifyicon control in it to show in the taskbar.This is the code I have been using:

Module:
Code:
Module mdlStartup
Public Sub Main()

[Code]...

The NotifyIcon control is in my frmMain. However, when I run my program I get mulitple instances of the Notify Icon being displayed. I even get two frmMains getting launched if I try clicking the other tray icon that has been made. I'm guessing this has to do with the New instance.If that's the problem, is there a way I can move the notifyicon control to some completely separate class?

View 3 Replies

File Download In A Separate Class?

Nov 6, 2008

How can I move the following to a separate class for repeated use ? (the problem is that it uses response object)

' Download/View a given file
Protected
Sub downloadFile(ByVal sFile
As String)

[code]....

View 1 Replies

Lisbox In A Separate Class File In Vb

Aug 5, 2011

I have a listbox in separate class like this [code]

[Code]...

How can I use that list box that I have created in that class on this form or I want to show that listbox on my form?

View 3 Replies

Set Print Properties In A Separate Class?

Apr 18, 2009

I'm writing a program and rather than having all the print properties in the main form I'd like to have them setup in a seperate class. I've done printing before by setting all the properties in the form where all the controls are located with no problems but this has me stumped. Reason for doing this is just to try and organize the program a little better and there are several areas of the program that will have different data and format to print so this will cut down on having potentially hunderds if not a thousand lines in that one area. I can't imaging that this wouldn't be possible.

View 1 Replies

Update UI From A Class In A Separate Thread?

May 4, 2010

The code below works fine when I put it in form1.vb and change "form1" to "me" but I can't seem go get it to work from my class.

VB
Imports System.Threading
Public Class Class1

[Code].....

View 2 Replies

.net - Separate Metadata From The Class Definition Across Assemblies?

May 24, 2011

I'm working a business layer (separate assembly) that will contain various business entities used in multiple client applications. One of the client applications is a WCF app that will need to serialize these entities. In order to properly serialize the entities, metadata for data contracts or for XML serialization must be added, but the serialization requirements may vary across applications.

Clearly I need the metadata separated from the class definition. So how do I add metadata to my entities for each separate application?

View 1 Replies

Access A Progressbar In Form From A Separate Class?

Oct 18, 2009

I need to be able to access a progressbar in my form from a separate class.

I tried


Dim Prog as Progressbar
Public Property Pg()
Get

[Code].....

I need to be able to access a control from a separate thread and return to the thread again.

Edit: Its just an example I gave prog a value of the object from the form and the invoke required is put in a sub so thats not my problem.

View 3 Replies

Get Values At Button_Click Event From Separate Class?

Jun 22, 2010

I have a class, called myClass.vb. I have a sub in it. this sub has a string variable, which has got some value. Now, i want this value to be transferred to the button_click event of a very seperate form called myForm.vb.

View 3 Replies

ComboBox + Enter = Ding - Created A New Separate Class Within Project

Jun 21, 2010

I didn't think this would be a problem, but it appears that others also search for this solution. There is an annoying DING! when hitting the Enter key in a ComboBox in VB.Net so I sought solutions. Here is the solution I am working with. I created a new seperate Class within my Project...

Public Class ClasscboBox
Inherits ComboBox

[CODE]...

Looks good, but I am having a problem calling it from the main project. Here is what I have tried using...

Dim objcboBox As New ClasscboBox
objcboBox.OnKeyPress(KeyPressEventArgs)

However, it says thatKeyPressEventArgs is a Type and cannot be used as an Expression. I tried 'e' but no go. I am a little ahead of my classes (no pun intended) so I am likely missing something about what I am doing wrong.

I have three comboboxes so I though this would best suit my needs in the interests of writting decent code and not populating each call with repeating code.

View 16 Replies

Handle Events From The Main Form In A Separate Class Or Module?

Feb 24, 2012

I've been searching for the answer for a while but can't find it yet. Basically so far I have a simple VB.Net form with one button.I would like to make a class or module that can handle events from the main form. This is my code so far but it doesn't seem to work.

View 6 Replies

IDE :: Partial Class Code Behind A Dataset Object / Is It Running In A Separate Thread

Jan 27, 2010

I am instantiating a form object in my code behind the dataset just to access some form level variables and to occasionally set a label in the navigator bar. Recently in the b2 Team version of VS2010 there are some strange errors thrown in the immediate window and then I'm tossed out of debug mode and back into the IDE. This code has been operating for some time in this project without this behavior. A team member has just reproduced the behavior in his development machine also.The error that starts the shutdown of the debug instance is this: Control accessed from a thread other than the thread it was created on.

View 4 Replies

Make A Class Recognize That An Interface Found In Separate File Exists?

Mar 8, 2010

I've made an interface called ApprovalEvent in a separate file with the namespace myproject... I've also made a class called PurchaseOrder... it's also in the same namespace, just in a separate file. Whenever I try to make PurchaseOrder implement ApprovalEvent it always says that ApprovalEvent is undefined...

How can I make the class recognize that the interface exists but is in a different file?[code]...

View 1 Replies

Make A Shared Function For Form Load In A Separate Class File?

Jan 9, 2012

i would like to have a shared function in a separate class file to address the form location . but i dont know how can i get this to work. if i use this below code in my form its working . but i cannot move this to a class file.

Shared Sub Formlocation()
Me.StartPosition = FormStartPosition.Manual
Me.Location = Screen.GetWorkingArea(Me).Location
End Sub

View 2 Replies

Sorting 2 Lists Based On Only One Of The Lists?

Apr 1, 2011

I have two lists. One list is a list of names, the other list is a list of how many times each name is found in the first list noted in the database

so...
Nick
John
Jim
Jack

is the firs tlist

10
13
13
2

is the second list. Nick had 10, john 13 and so on.I want to sort the second list from large to small, but have the index for the first list still linked to the correct amount of calls.i do it this way so I can

for x = 0 to num_of_names
string = lst_name(x) & "-" & lst_count(x)
next x

View 3 Replies

Asynchronus Output Capture (BeginOutputReadline) Method Doesn't Work From Separate Class In VB

Jun 11, 2012

I've got a simple tool written in VB in VS 2010 that has a series of command buttons which run Windows command files and the output is sent to a Rich textbox object on the main form (the comand files take awhile to run so I wanted the output to show up in the RTB as it was produced to show progress). All worked well until I made an update to the tool so that the series of buttons are no longer hard-coded, but created dynamically from information in the app.config file. To do this, I use a button

[Code]...

View 3 Replies

C# - Write All The Control Events In A Separate Class File In Different Layer Rather Than In Code-behind Of Webpage?

Nov 16, 2011

Can we write all the control events in a seperate class file in different layer rather than in code-behind of web-page ?

View 1 Replies

C# - .NET: Getting A Class To Copy Properties Of One Class To Another?

Nov 10, 2010

I wrote a function that copies the properties of one class to another so make a copy of an object.So something like

MyObject myObject = myOtherObject.MyCustomCopy(myObject)
where myObject and myOtherObject are of the same type. I do it by bascually doing
myObject.prop1 = myOtherObject.prop1

[code]....

I am pretty sure in the past I used a .NET object that automaticaly did this, by reflection I guess, but can't remember it ... or an I imagining that such a method exists?

View 5 Replies

String Manipulation - Separate Three Fields Of The Phone Number And Display In Three Separate Text Boxes?

Feb 23, 2012

I created a telephone number form where the user enters the telephone number in a text box as (nnn) nnn-nnnn. The first 3 digits in parenthesis are the ISD code, the next three are the area code and the last four are the local number. I need to separate out these three fields of the phone number and display in three separate text boxes labeled appropriately. Now, suppose the user enters the phone number in a text box as a continuous string of 10 digits, where the first three represent the ISD code, the next three represent the area code and the last four represent the local number. I'm lost as how to change this string into the form (nnn) nnn-nnnn. This is what I have

[code]...

View 3 Replies

Create Separate Object Instances For New Objects In Separate TabPages?

Sep 17, 2010

I have a TabControl object on my form with many tabs created in code (TabPages) and my problem is that the same objects that are in the initial TabPage needs to be in the other TabPages created in code, I have this done in code when the user clicks the 'New Tab' menu option, however the same code is used for any new tabs created. The problem created here is that I have an event against one of the objects that appear in the other TabPages, but because the same code is used to create any new tab pages, the event will only work on the newest tab page, if that makes sense? By the way these objects that appear on the other TabPages are properties at the top so events can be handled against them in the respective subroutine.

[Code]...

View 5 Replies

Possible To Have Separate Combo Boxes That Will Give Separate ID Values But Using Same Table?

Apr 30, 2010

I'll get straight to my problem - I'm currently coding in Visual Studio.I have a table (countries) with the columns ID | Name. The table is filled with around 28 records.I also have a form with 4 combo boxes (set up as 1,2,3 & 4) that I want the user to select. These combo boxes will display the names from the table countries. I then want to use the selected names in the combo boxes to Insert into their corresponding ID into another table. For example England would have the ID 1, USA the ID 2 etc.So, is it possible to have separate combo boxes that will give separate ID values but using the same table? At the moment I can't seem to find a solution.Eventually the form will have more than 4 combo boxes so I don't want to use separate bindingsources for each combo box.

View 5 Replies







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