VS 2008 Play Around With NickThissen's Expandable GroupBox Control
Nov 17, 2009
I decided to play around with NickThissen's Expandable GroupBox control.Expandable GroupBox//When I add a control to my form and debug or build the project, the Text of the GroupBox changes to the default. The Name and anything I put inside of the GroupBox stays the same, however.I also noticed that the control resizes to it's default size when I build and/or debug.
View 4 Replies
ADVERTISEMENT
Aug 23, 2011
I'd like to make a GroupBox have a black line as its boarders , just in the old VB6 , but it seems there isn't any such a property . Look , for example in the picture below : First there is GroupBox control but it can only have a line around it without color . Next , there is a Panel control , but the problem with that is that it can't have a caption set . At the far right side there is Panel control with a Label control placed over it . That's the best way I can think of in order to make something that at least will look like with what I have in mind . However , is there any other way I could do that ?
View 11 Replies
Feb 13, 2010
IN vb.net, how would i be able to create expandable forms? For example, you have a form , and you click a button, expanding the form to a new size. i currently hav a button that uses a while loop to increment the increasing and decreasing size to make it look animated. any other options?
[Code]...
View 4 Replies
Dec 4, 2010
I'm using a CheckGroup in a project found here. There were several things in the code that needed fixing to really be useful to me:The fact that the panel in the regular groupbox overlapped the checkbox control so that the bottom of some letters were being cut off. When changing the back color of the groupbox, it didn't change the back color of the checkbox. Fixing these two problems was easy, but fixing the second one led to a new problem. When changing the backcolor of the groupbox to Transparent, it also changes the backcolor of the checkbox to Transparent, thus displaying the text for both the checkbox and the groupbox's header.
View 8 Replies
Jun 15, 2009
I added the WMP control to my project, but I can't figure out how to make the music I play through it loop!
View 1 Replies
May 16, 2012
I have a form in which their is a GroupBox control. I set the Font's Bold property to TRUE. I know that by default any other control put inside a gorupbox will inherit the Font's property settings. I have textboxes and labels in which I manually reset the Font Bold property to FALSE, however, I have a DataGridView that I did the same thing with but whenever I run the app in test mode, it reverts back to the Fonts' Bold property as TRUE rather than FALSE.
View 10 Replies
Jun 19, 2009
from my main form i'm giving focus to a control dynamically to calling form for example i have 3 child form, child1, child2, child3 form main form before i call the form i give the focus to a control which is set on some condition
[Code]...
and when i call child1.controls(cntrlname).focus() it throws the error. any idea how i can give focus using above code to one of my control in groupbox.
View 2 Replies
May 9, 2012
I have multiple form application in vb.netNow i rose to a condition where i want to display one Form in the Groupbox/Panel control of other form.
View 2 Replies
Jun 12, 2012
I have event Button that creates text box in run time.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim textbox1 As New TextBox
static Dim shiftDown As Integer
static Dim counter As Integer
[code]....
All the text boxes that has been created displayed in GroupBox control dynamically. how GroupBox control size can be managed according to quantity controls inside it.
View 1 Replies
Feb 26, 2011
I have two group boxes M Commands and C Commands on the same Dev tab page. I have P Control group box that is located in the M Commands group box that I want to move to the C Commands group box at load time.
View 2 Replies
Jun 6, 2011
How To Enables any Control on a disable GroupBox
View 1 Replies
May 8, 2010
I have five groupbox control. each groupbox contain two radiobutton.
In groupbox1 if I select
radiobutton1 then I need to insert value as "Y"
or
radiobutton2 then I need to insert value as "N"
Likewise I need to do in all groupbox...........
View 2 Replies
Apr 2, 2012
How can i play an audio that possibly mp3 or wav without let the user to select the file by using the open dialog box. i want the audio to play when the user press a key. for example user press key 1 then audio1.mp3 will be play.
View 1 Replies
Feb 4, 2010
I have a groupox in a VB.NET winform app. The groupbox contains a few Labels, Textboxes and Checkboxes. This was created by simply dragging the controls out of VS toolbox. What I need to do is take the 1 Groupbox and at runtime create multiple Groupboxes to display based on user selection. Instead of dynamically creating the Groupboxes and other controls nested inside, is there a way to clone or copy the original one. Then I'd just change the properties. Label text, Textbox text, etc. And the location of the Groupbox in the layout.
View 2 Replies
Sep 2, 2010
I have a Custom Groupbox that overrides the OnPaint event to do some custom drawing, backgrounds, etc. The problem I have is that when I use it in an application and want to draw text on the control, it gets drawn first, then immediately afterwards the OnPaint from the control gets called and draws on top of the text. Is there any way to get the text drawn after the control's OnPaint?
View 5 Replies
Feb 11, 2010
How do I turn off the ability for controls within a groupbox to inherit the groupbox properties. For example, my groupbox text has a fontsize of 9 and bold. Every Label control that I put into the groupbox defaults to the same. How can I change that?
View 2 Replies
Jul 28, 2010
i have a sort of problem when i try to add some linklabels in my groupbox. I used this
Me.Controls.Add(Groupbox3)
Groupbox3.Controls.Add(FlowLayoutPanel)
I can only add 4 linklabels no matter how big is the groupbox, i tried autoscroll but nothing. How can i do to store minimum 20 linklabels in a groupbox? Here is the whole code i used:
Imports System.Net
Imports DevComponents.DotNetBar.Controls
Imports System.Windows.Forms[code]....
Is there any way, maybe with a specific reference to put a control that records what plays wmp activex and to save somewhere on your computer?
View 2 Replies
Sep 8, 2011
Im working on a lay-away form application, this particular part is part of the even where the user adds a new customer, and has come to the section for adding personal references to the customers account. What Im trying to do is to check all the text boxes inside the GroupBox control, and then add all the tags of the text boxes that are empty to the list. If the list holds any records it will be put into a message box to let the user know he missed this value. But I want them to list in one text box. Here is what I've tried:[code...]
I get a conversion error, Cannot convert Prompt to String.
View 3 Replies
Mar 19, 2012
I am trying to do an application where several textboxes and buttons will be added to a groupbox.
for example..
code:
I might have anywhere between 1 and 20 rows of these textboxes and buttons. I can add buttons on from.. but how would i add the textboxes or buttons to the say Procedure for MyButton_Click... Handles MyButton_1.click, MyButton_2.click
View 7 Replies
Feb 23, 2009
I am completely Goggled out on this one. We currently have a datalist consisting of rows of data for our company. What I need to do is to add a link into the individual cells of a particular column called candidate profile. The link will be View Notes. When that link is clicked, I would like to have a new row expand right below the existing row to allow the additions of comments in the empty row. When the user comes to the page and there are existing comments for the row of data, have it expanded and give the user the ability to expand, or close the comments as they see fit. I also need to figure out the best way to allow the user to enter in the comments as well.
View 5 Replies
Oct 5, 2011
i'm using an ExpandableObjectConverter for an expandable property in my app, but it doesn't work as expected.it seems to work inconsistently, but it's not working reliably.
here's the code:
Public Class timeConverter
Inherits ExpandableObjectConverter
Public Overrides Function CanConvertTo( _
[code].....
View 8 Replies
Mar 13, 2011
I'm maintaining a Master Table call "MaterialList" in Datagridview Windows Form now I want to ADD Expandable row option to that Datagridview.
For your information : MaterialList Table is link to MaterialSales Table with Primary Key MaterialCode. By the way if I click any item of MaterialList the Sales Details should appear in that GridView. I'm using Visual Basic 2010 and Database SQLServer.
View 1 Replies
Apr 28, 2011
is there any free panel or frame or groupbox control that has a header where i can type text, maybe with gradient?
View 5 Replies
Jun 22, 2010
Here using VB .Net 2008. I seem to be having trouble getting group boxes to appear when I click a radio button.
For example:
CODE:
This indeed brings up the first radio button however I have other groupboxes underneath which with the same code will not appear when the radio button is checked.
Eg:
CODE:
The second groupbox does not appear and is directly behind the first groupbox. The Top code doesn't seem to be working either.
View 5 Replies
Sep 8, 2010
How To Play mp3 Without a control?
I Know How To Play WAV Files But MP3...
View 2 Replies
Feb 15, 2011
I am developing a small application using VS2008, the mdiparent has a expandable panel with Button 1 and Button 2 on it, which opens up child form 1 and child form 2. ( The two child forms are maximized within the mdiparent form)
The problem is, button 1 opens child form 1 and button 2 - child form 2. I cant open the two forms randomly. I have to close the topmost form to access the other forms below it and vice versa.
View 8 Replies
Mar 20, 2011
I'm trying to play music from a memorystream in a WMP control.I can succesfully stream music with MediaPlayer, but this is limited to .wav and can't pause and so.
Dim mPlayer As New MediaPlayer(entryBytes.ToArray())
'begin playing the file
mPlayer.Play()
Is it possible to load a array of bytes or a memorystream into the WMP control?
View 4 Replies
May 12, 2010
Is there a way to validate a groupbox with a couple radiobuttons in it to make sure that one of the radiobuttons is selected?
Heres why I need this. I need a user to be able to select their class rank out by way of radiobuttons in a groupbox. When they click submit, I need to validate that atleast one of the radiobuttons got selected and if not display a messagebox.
I got one reply early of:
If myGroupBox.Controls.OfType(Of RadioButton).Count(Function(rb) rb.Checked) = 0 Then
'There is no RadioButton checked in myGroupBox.
End If
Is there any other ways other then that? Preferrably a more 'dumbed' down way? This is for just an entry level VB class, I would prefer not to use something of that nature if there is another way.
View 7 Replies
Aug 22, 2009
How can i play an audio that possibly mp3 or wav without let the user to select the file by using the open dialog box. i want the audio to play when the user press a key. for example user press key 1 then audio1.mp3 will be play. Please suggest me something and provide the simple code if possible.
View 2 Replies
Jul 12, 2009
I am having a problem doing select case inside my groupbox.I have a bunch of buttons in a groupbox, each button will do a same function only with a different values when clicked.For example, let's say i have 3 buttons in the groupbox for now.[code]The function will display a message in a textbox.My problem here is, the message shown in the textbox will always be Case "C", the last 1. I jumbled the order, anything that's last will appear instead which I think it's because of the For Each. I tried a do while loop but I do not have any conditions i can think of to use for it. I also tried using IFs instead of Select Case but not successful.
View 2 Replies