Edit Items In Multiple List Boxes Simultaneously?

Jul 14, 2011

Using Visual Basic in Visual Studio 2008, I have created a Windows form with multiple tabs and questions. Each question has an associated drop-down listbox that the user will eventually click on to enter his or her response. My client has now informed me that she wants to change the standard responses in each response box. There are well over 100 drop-down listboxes, all with the same items, and they all must be changed.

I originally inputted the items using design view. Would someone please tell me if it's possible to edit all of these boxes in the design view simultaneously? When I control + click on more than one box, the Edit Items option that is normally available disappears. Is there a way to do it in code in a manner that would save back into design view?

View 9 Replies


ADVERTISEMENT

Change Multiple Items Simultaneously In DataGridView?

Feb 7, 2012

I'd like to allow the user to select up to an entire column of cells and type and/or paste a single value that would then change the value of all the selected cells in the DataGridView to the value that was typed or pasted. I understand this is probably two separate answers, but perhaps if there is a way to set the contents of the clipboard with the value typed, I was thinking it may work well to identify both things I want to do.

View 3 Replies

Placing Selected/unselected Items In Checked List Box Into List Boxes?

Mar 16, 2011

This program is supposed to allow the user to check items in a checked list box. If the item is checked, it goes into the Completed List Box on the right. The program then adds the unchecked items to the Pending list box on the left. I keep getting placement values (e.g. O,1,2) instead of the strings (e.g. "Key Returned") in the list box results (see photo attached)

Public Class frmCheckOut
Dim i As Integer
Dim cleaning As String = "Cleaning Inspection"
Dim damage As String = "Damage Repaired"

[code].....

View 3 Replies

Add Code To List Boxes Items?

Jan 31, 2012

I am surely a new self-learner programmer using VB 2010 Express edition and I have a problem on writing my first code. I have designed my form and I only want to add code as events. The IDE already adds the methods when I double-clicked the button which I want to add the code on.

This question may be good on the IDE forum, but I just thought to ask it here because there may be more experts here on VB language functions. I have added the MenuSctripItems such as File, Edit and so on. How do I write the code for New, Open, Save, etc under file menu? It may sound boring or even silly, but I am here to learn and your contribution is both for me, you and the MSDN.

View 2 Replies

Adding Items To List Boxes?

Oct 19, 2010

I'm using the free version on Visual Basic 2008 (through school).The assignment is to populate a list box from user input text. The textbook only talks about populating a list of known items.ex animalListBox.Items.Add("dog") Which works just fine, however, we don't know what the user will input.

So, how should I be thinking about this?

View 2 Replies

Moving Items Between Two List Boxes?

Dec 16, 2009

I need to move items between two list boxes, I've never used list boxes before so this is totally new to me and I don't know where to begin, all I know is they work kinda like arrays.

So what I need is to move one or more items, from ListBox1, and move them to ListBox2 and vice versa

p.s. sorry to the mods just realised I havent been selecting a category to make my posts in, won't happen again.

View 6 Replies

Multiple Textboxes To Multiple List Boxes?

Mar 13, 2012

Okay this is the simple thing I'm trying to accomplish. I can get richtextbox1 to add to listbox 1. but i cant get both to add. the compare works fine. I'm stumped.

View 3 Replies

Move Items From Inbetween Multiple Listboxes (4 Boxes)?

May 19, 2011

I'm having a problem with moving items between list boxes, i'm fine with moving an item from 1 list box to another but thats 2 boxes and i have 4. I basically want to know the code to move 1 item from a list box to any of my other 3 list boxes.

View 5 Replies

Add, Edit & Delete Items In A List Of Geographical Coordinate In A Program?

Aug 21, 2010

In my project, I want to use Coordinates of a place (eg; London) which is selected from a list of several thousands of coordinates of places.

I thought of using comboBox / ListBox to display the list of the coordinates of places.

I want to know how to make this "editable"; ie: anyone using this program should be able to Edit / Add / Delete a coordinates of a place. And the newly added Place should be saved so that he/she can use it whenever it is needed.

View 2 Replies

How To Have One Scroll Bar For Multiple List Boxes

Jul 30, 2009

I have five list boxes showing a field from a row in a dataset in each of the list boxes.When the list gets beyond the size of the list box a scroll bar is auto generated However, I would like to have just one scroll bar for the five boxes be shown if possible so when I scroll with that, all of them scroll

View 7 Replies

Open Text File In Multiple List Boxes?

Apr 23, 2009

At the present moment I have four list boxes that save into one text file each seperated by a number telling me how many items are in each. The code is as follows[code]...

View 2 Replies

Populate Multiple List Boxes During Form Load?

Jan 6, 2012

My screen tends to seize for a few seconds while the list boxes are populated.I moved the call to the List Populate procedure to the form's shown event.This improved the performance slightly but not enough.Is there a method whereby I can ensure the form is fully loaded and displayed before the lists are populated?

View 6 Replies

Assign Integer Values To The Items In 2 Different List Boxes Called LstWorkshop And LstLocation?

Apr 18, 2009

I am trying to assign integer values to the items in 2 different list boxes called lstWorkshop and lstLocation. I then want the equation, intCost = intDays * intLodgingFee + intRegistrationFee, to be executed and the result to be displayed in a third listbox named lstCost. This is what I have so far, but whenever I run the program the value that always gets displayed is 0, which is obviously not correct.

Public Class frmWorkshopSelector
Dim intCost As Integer
Dim strTotalCost As String

[code]....

View 8 Replies

Add Multiple Items To A Dynamic List?

Apr 19, 2010

How would I add multiple items to a dynamic list without having to use the .Add method for each one?[code]...

View 10 Replies

Removing Multiple Items From A List Box At Once?

May 2, 2010

If I have 3 times selected and when I click "submit" for example I want all my selected items to be removed, but when I try to do this only my first selected item is removed.

ListBox.Items.Remove(ListBox.SelectedItems)

How do I remove all 3 items from the list box at the same time?

View 2 Replies

Multiple Textboxes Bound To Different Items In List?

Oct 1, 2010

On my form I have 3 textboxes. They get their data from a database query. The trick is the database may return 1 result or up to 3. If the query returns only 1 result, I want the first textbox populated, 2 results, 1st and 2nd textbox populated, etc... I also want to be able to track CurrentItemChanged Event for updating purposes. My initial thought was to use a list object as the binding source but how would I cycle through the list if it returns more than one so that I can assign the values to the 2nd and 3rd textboxes or if data is entered in to a blank textbox I want the currentitemchanged

View 6 Replies

VS 2008 Add Multiple Items To List Box From A Database?

May 12, 2010

I'm trying to add multiple items to a list box from a database but I'm having a few problems getting it to work. Below is the code i have so far but for some reason it will only add the last field in the database to the listbox and not the remaining 12.

View 3 Replies

Assign Values To Items In Combo Boxes And Check Boxes?

Feb 27, 2009

I used this code to created 2 combo boxes General and Specific...and Only show Specific (Combo when Combo A is chosen.....What i need now is to know how to assign specific values to the items in combo b (Specific).??? If i chose a sode, Fanta, i want the total price to be $10.00 (this price will show up in the finial price box..

View 4 Replies

Checking Multiple Items In A Check List Box By Variable Values?

Oct 31, 2011

I've never really used the Check List Box in the past, however, for the recent program I am developing, I am using this control rather than individual check boxes scattered across the form.Anyway, I want to be able to program through code which items get checked in this checked list box. Specifically, I have a variable that contains the text of each check box that I want checked.With a normal check box, I can simply say:

Dim strNames As String
strNames = "John Doe, Mark Johnson, Mike Brown, Cindy Smith"
If strNames.ToString.Contains("Mike Brown") Then[code]....

View 18 Replies

Insert Multiple Items Into List Or Array (no Linq And Not Quite CodeGolf)?

Sep 10, 2010

No matter how I try, I can't seem to create a nice and clean algorithm for doing the following:

System.Array (or generic List) data of System.Object
System.Array (or generic List) xval of System.Object
System.Array (or generic List) idxs of System.Int32

[code].....

View 4 Replies

Can't Simultaneously Instantiate Multiple Forms?

May 5, 2010

I used different backgroundworkers to instantiate some 'heavy' forms thinking that it will reduce the time to instantiate them if I did them at once but it looks like I am wrong since it is still taking about 43 seconds to load all of them. Am I missing something or do you have a tip on how I can speed up their instantiation?

View 15 Replies

Move Multiple Sprites Simultaneously?

Jun 18, 2011

Not wanting to hijack 45minutes thread, I thought I might spawn a thread of my own based on his question.

PlausiblyDamp was kind enough to provide some generic code, which I have modified and attached.

I have made a few alterations mostly around removing random objects, as the game in question (Space Invaders) has a set amount of aliens and set starting positions.

As a start I have limited the UpdatedPostion to horizontal movement as the aliens only go side to side unless they hit an edge.[code]...

View 15 Replies

Multiple Shell And Wait Simultaneously?

Feb 18, 2010

I am creating a GUI that monitors the entered application and if the application crashes the GUI starts the application back up. Problem is to run this application (WoW Private Server) I need 3 running applications. Is there a way to shell and wait 3 applications all at once. OR if i was to create a separate console application who's only job was to start the three applications at once how would I pass the application variable?
Here is my program thus far: [URL]

View 8 Replies

C# - Disable Multiple Network Connections, Only Allow One Simultaneously?

Feb 17, 2011

We are looking to design a security application that does the following on laptops:If the ethernet adapter is used (cable plugged in) disable/block all other network connections (wireless WIFI, mobile broadband (PPP), virtual VPN adapters etc)When ethernet adapter is not being used again, all connections allowed.We have looked in the WMI a lot but there are no good ways of doing this. Only disabling the network connection is not secure enough because most mobile broadband applications try to re-establish the connection. This should be an application that works on all laptop vendors without any user interaction (such as choosing interfaces etc..).

View 3 Replies

Play Multiple Files Simultaneously At The Moment?

Dec 14, 2009

I need to play multiple files simultaneously at the moment i am trying to use mciSendString() API it plays the files listed in a listbox. But it is only playing the first one i assume it would play the next one after the first is finished... cbf waiting to see.

Note this was an attempt in C#:

private void PlayButton_Click(object sender, EventArgs e)
{
if (SongsListBox.Items.Count > 0)
{

[Code]....

View 3 Replies

Play Multiple Sound Clips Simultaneously?

Feb 6, 2010

I have been using the My.Computer.Audio.Play method for sounds in my program for a very long time, but now I have reached a point where the program needs to be able to play more than one sound at a time. What is the best (and preferably simplest) way to do this?

View 8 Replies

Play Multiple Sounds Simultaneously From Resources?

Dec 13, 2010

I want to play multiple sounds simultaneously from My.Resources in Visual Basic 2010. I have tried:My.Computer.Audio.Play(My.Resources.SoundName, AudioPlayMode.Background)

I have also tried using multiple Windows Media Player controls, but that also didn't work.The first sound is cut off when the next sound plays.When searching around the internet I found people suggesting using 'DirectSound', but there are only tutorials for DirectSound in VB 6.0.

View 1 Replies

Run Multiple Funcations Simultaneously Using Multithreading Concept?

Jun 6, 2012

How to run multiple funcations simultaneously using multithreading concept?

Actually i am making a software which has backend tool as MS ACCESS. it has 15000+ records in database and i need to display that records as my software loads..but it is much time consunable and sometimes it even goes out of time exception

View 7 Replies

VS 2008 Opening Multiple Web Pages Simultaneously?

Nov 6, 2009

I'm writing a program which gets the time and date from forums which only show "x hours ago" on the main thread list.What I do is get a list of threads, open their print version and fetch the info.I'm currently using a single webbrowser, because there's no control array anymore. This makes the proccess very slow.Is there a way to open all the threads' print versions simultaneously?(BTW, I'm using DOM functions like GetElementsByTag, so I'll need to get the page's "Document" object.)

View 8 Replies

VS 2008 Scroll Multiple Listboxes Simultaneously?

Apr 16, 2009

I have three listboxes with vertical scroll bars. I'd like it so that when one is scrolled, so are the others. However, I can't seem to find a "scroll" event. I tried this:

vb.net
Public Scrolling As Boolean
Private Sub ListBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseDown
If e.Button = MouseButtons.Left Then

[code]....

It works when you click and drag on the listbox area where the items are, but not when you click on the scroll bar!

View 4 Replies







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