Controlling Multiple Sliders At Runtime?
Dec 27, 2011
In a form, I have 10 Slider control (I am using dotNetBar) and I want to reset all of their values to 0 but I am getting into a snag when I send the control the command. here is my code:
Dim ctrl As Control
dim temp as string
For Each ctrl In Me.Controls
[Code]....
while .name statement works, the .value gives me an error. and it isn't recognized as one of the possible properties in the pull down list after typing the "."
View 3 Replies
ADVERTISEMENT
Nov 30, 2011
When I use My.Computer.Network.DownloadFile this will sometimes start downloading two copies of the file simultaneously. I wonder if there is a code to check whether there are more than one file being download at a moment, and if there is a code to cancel some of the downloads.
View 1 Replies
Apr 6, 2009
I was wondering if there is some type of code that could control mutiple textboxes in multiple Groupboxes, basically what I want to do is be able to trigger all the textboxes in each of the groupboxes to become non visible based off of a choice in a combobox...here is what I have so far but i'm still way off
Private Sub Combo1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs Handles Combo1.SelectedIndexChanged.
[code].....
View 4 Replies
Oct 28, 2009
I am playing with VB 2008 using .Net 2.0 as the target to compile to and am trying to figure out if it is possible to create multiple countdown timers one in each form using a single timer.I have attemtped but the logic escapes me. If this is not possible I know how to use a timer on one form for that form.
View 1 Replies
Mar 20, 2010
I'm having a lot of trouble finding a solution to my problem, and its probably because I don't know exactly how to ask the right question - can anyone here point me in the right direction?
View 3 Replies
May 1, 2011
Is there a way to write a single function that will control validating the input to any textbox? How to pass control of it.
E.g.: My second try was to:
Dim CurrentTextBox As TextBox << Declare a global
Write a function that uses the global textbox and takes in 2 parameters, one determining the length it has to validate and the second telling it what to do once the input is verified
Public Sub ConfirmInput(length As Integer, which As Integer)
If (CurrentTextBox.TextLength < length) Then
CurrentTextBox.BackColor = vbRed
GoTo DONE
ElseIf (CurrentTextBox.TextLength > length) Then
CurrentTextBox.BackColor = vbRed
[Code] .....
My first try was to pass a textBox parameter to the ConfirmInput function but I believe that's the same problem as above.
View 4 Replies
May 13, 2009
I ma playing an audio file using: My.Computer.Audio.Play("C:soundsmouseclick2.wav", AudioPlayMode. Background). I want to specify the volume, all i need to be able to do is enter the number via code, i don't need to use any sliders etc. Is there anything simple like: (this is an example of course) [Code]
View 13 Replies
Sep 12, 2011
I am working on a project that is used for key broadcasting. Don't worry nothing illegal, I'm making a multibox application for world of warcraft. However I am having trouble when it comes to launching and manipulating other applications from another.
[Code]...
View 2 Replies
Jun 9, 2011
I have got a very simple video player wrote using Visual Basic 2010. I have embedded the windows media player into the app without the controls. Right now it has simple play, pause and open buttons that work with wmp . how to make a slider that corresponds to the normal sliders in video Players?
View 3 Replies
Feb 1, 2009
I've recently been working on a simple media player (following some guide and using my small brain ). I have created a simple playlist, with load/ save ability, add remove track and play and all the normal bull . However I was wondering if I could get some help making it more advanced: How do I create my own track / volume sliders - and even a custom 'screen' to play visualisations / movies? how do I create skip buttons (the ones on the media player controller don't work :@)? I know how to make a button skip a track (I think), but how to I make it skip to the next track in my playlist box? [code] I have created a context menu for my playlist, with buttons such as play, add and remove, but I want it so that when I right click on song the code activates on the song I right clicked on. At the minute whatever song I right click on it still runs the code on the song that selected not the one I right clicked on.Also my playlist, displays the whole file location of the tracks, how to I make it display only the tracks name.Also I have an open dialog control, I know how to set a filter, but how do i set it to filter more than one extension.please note that most of this code is from various guises, and I have simply edited it and merged different codes to suit my needs. [code]
View 4 Replies
Mar 15, 2012
I need to change size parameter of OvalShape, I have about 100 of them, named like OvalShape1, OvalShape1...... OvalShape100
This example works for Label, but throws error for OvalShape, following is my modified code that giving error;
For Count As Integer = 1 To 100
[code].....
View 5 Replies
Jan 21, 2012
I know how to create a control at runtime e.g.[code]Can anyone tell me how to create multiple instances using a for-next loop? e.g.[code]The part I can't work out is how to give each new button a new name... like button1, button2 etc
View 4 Replies
Jun 30, 2010
I am not able to generate Multiple GroupBoxes at runtime By using below code. so, plz anyone can help me to rewirte the code....
For i = 1 To ds.Tables("tblprojects").Rows.Count - 1
Dim GroupBox1(i) As New GroupBox()
Dim CheckBox1 As New CheckBox()
Dim RadioButton1 As New RadioButton()
[code]....
View 13 Replies
Oct 6, 2010
I am writing an app that puts multiple controls on a form at run time and then I edit the controls in a property grid. All that is working fine. I'd like to 'mark' the contol when it is 'selected just like visual studio does with the dotted border (or soemthing similar, I don't care that it is just like vs). I'm already using MouseDown event to grab the control and send it to the PropertyGrid, but I have now wired it up to take multiple controls and need to 'identify' them on the screen.
View 1 Replies
Sep 21, 2009
how to add multiple controls at runtime (ex. 10 texboxes)i tried.
Dim txt as New Textbox
Dim i as Integer
For i = 1 to 10
[code].....
View 2 Replies
Mar 13, 2012
I am using the PowerPack and trying to change multiple ovalshape size, I have used the following code for changing multiple labels,
For Count As Integer = 1 To 100
Me.Controls("Label" & Count).Text= "Hello World"
Next Count
If I do the same for OvalShape, assume I have OvalShape1, OvalShape2.... OvalShape100
For Count As Integer = 1 To 100
Me.Controls("OvalShape" & Count).Size = New System.Drawing.Size(20, 20)
Next Count
The above throws error when executed.
View 1 Replies
Mar 4, 2012
How do I plot multiple series (say about a thousand) on one chart at runtime?
View 7 Replies
Feb 22, 2010
I have 16 comboboxes with a naming convention of:
c1d2
c2d2
c3d2
c4d2
c16d2
These will all contain the same items and I need to add them at runtime. I know how to loop through the controls, but not sure how to make sure I'm only editing the correct comboboxes. (I will have to do this for 2 more sets of comboboxes with similar naming conventions as well)
View 4 Replies
Jan 13, 2012
i have a folder with around 120 images, small icon size.
Id like to load all these images into pictureboxes and have this code so far
Dim newPictureBox1 As New PictureBox
newPictureBox1.Image = Image.FromFile("C:MyLocationHereImage.png")
newPictureBox1.Location = New Point(12, 50)
[Code]....
This code works and adds 1 image, my question is how to add all images in like a list format but with images ?
View 8 Replies
Jun 2, 2011
I generated columns from database and getting cell values from database too. my problem is that for some columns I have to generate checkbox in each cell at runtime.I m using visual studio 2010.
View 2 Replies
Nov 12, 2010
I wonder how you can make a picturebox selectable at runtime and also change the size and location during runtime?
Well I know how i can change the location of a picture box during runtime but that is only with a picturebox that is already defined in the form before runtime.
So I write an event for that particular Picturebox.
But now i want to do the same thing with a picturebox that a user can add during runtime and then the user should be able to select and move the picturebox.
So now i can't add code to the picturebox event so I wonder how you should do this. ( Maybe with reflection?)
And what if the user added 10 picture boxes and selects a certain picturebox. How do you make it possible that the picturebox the user clicks on is selected?
Should you store each picture box location on the Panel and then when the user clicks on a certain pixel in the panel where a certain picture box is it get's selected?
View 3 Replies
Jun 28, 2011
i'm having one user control in asp.net ,i just want to add the user control multiple times in a single web page in runtime in a separate table. How to do this?
View 3 Replies
Dec 1, 2010
I have a 3 textbox;fname, mname and lname.As soon as I click button "add entry", the fname,mname and lname will be save to database to its first name, middle name and last name column respectively.
I want to add another set of 3 textbox during runtime , when i click button "add textbox", so that there are all 6 textbox in all. And I can add 2 first name, 2 middle name and 2 last name at the same time to my database.
View 11 Replies
Aug 25, 2010
At design time in the IDE, you can ctrl-click or drag a box around multiple controls on a form and move them all at once. How do you do that at runtime. I need to be able to create image maps based on textual copies of medical claim forms that are generated from different systems and the ability to create dynamic label controls and move a single or multiple controls and resize is required. How does MS do this in the IDE?
View 7 Replies
Mar 21, 2009
1. i added a datagrid at runtime on a form. i want to bind a datasource to the datagrid in a button's click event handler, but the datagrid doesn't seem to be visible anywhere else outside the form load event where it is declared. how can i find the datagrid control?
2. and another beginner question.. how to i declare a string that spans multipe lines? i tried with the + operator like in c#, but it doesn't work.
View 3 Replies
Jun 3, 2011
So I wrote a VB.net project in Visual studio.I have a scheduled task that is set to run the program every morning at 10AM. If I use windows explorer and double click the application, it runs fine.If I open task scheduler, open the task properties, and browse to the application, then choose run, the program fails, due to Runtime exceptions.I know I have the path entered correctly, since I can debug the instance when it crashes from the task scheduler. VS2010 pulls up my source code.The exception is System.IO.FileNotFoundException, remember, it works fine when I double click the app. If attach a debugger to the process after it is executed from the task scheduler, I can then restart the debugger, and Voila!, The application runs fine.
View 1 Replies
Nov 5, 2010
Question: I want to control cmd.exe from winforms. I DO NOT mean every command in a single process, with startupinfo, and then stop. I mean for example start the (My) SQL or GDB command prompt, send command, receive answer, send next command, receive next answer, stop SQL command prompt exit process. Basically I want to write a GUI on top of any console application.
[Code]...
View 4 Replies
Jan 3, 2010
Ok, so I've been doing some looking around lately, trying to figure out how I can get maximum control over a download. So I can control things like:Download speedWhere to start the transaction(Byte Offset, like in a Stream?)Where to end the transaction (Byte Offset, like in a Stream?)
View 6 Replies
Mar 9, 2010
if i have two media players in form1 and form2 respectively....how can i control the media player in form2 with media player in form1....so that if i pause media player in form1...the media player in form2 should get passed and if i scrub the seek bar in player1 the seek bar in player in form2 should move along with it...how can i do that.......means how to play single video in both players at once...
View 1 Replies
Jan 23, 2009
I want to have a min and a max functionality to my app. When the user clicks the minimize button I want the form to go to taskbar which is easily done.
However the user clicks on the maximize button i want the form to go to a specific size (470,999) to be exact.
Private Sub app_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Resize
If Me.WindowState = FormWindowState.Maximized Then
[Code]....
but it maximizes to the screen size. how to control the maximize screen button? I don't want to change the formborder style setting from sizeable because I like the way it looks like this. I just want to get the min max buttons to go to sizes that I want them to go to.
another thing is there a way to save the size of the app that the user has it set to before they send it to taskbar then when the user brings it off the taskbar is there a way to bring it back to that size?
View 4 Replies