i have a form with a tab control and two tabs and a label below the tabcontrol.. in tab one i'm editing files and such and the label below the tabcontrol shows the directory of the file i am working on.. what i would like, is to have that label not be visible when i click on tabpage 2..
so basically, i need the code for the tabpage select. like when when you click a different tab, a different command applies..
I have a label and button on label in my asp.net webform.i want when i click on button then label1 will be visible with text "Success" and then it will hide automatically after some time say 10 seconds.I M using asp.net (VB)How to auto hide label after 10 sec and after label hide redirect to the ~/Default.aspx ?
I'm curious if it is possible to hide a group of text boxes from view in a form until a particular condition is met, and to have a custom set of text boxes for that condition. To give an example; I want radio buttons offering choices for a manner of searching records, the user selects one and then a specific set of text boxes are displayed for the user to utilize, if a different option is chosen a different set of text boxes will be shown. Is this something that can be done?
I am having tabcontrol in which i want only to hide tabs.Consider i am having 2 tabpages. I want to hide only tabs of tabcontrol not tabpages.Then i will show the tabpages with this coding on button click.TabControl1.SelectedIndex = 1
Ive seen some discussion on here about how to hide tabs in a tabcontrol but they all seem to be in C or some variant. I havent seen one for vb.net (i cant do C)
What i want to do is hide or disable all some of the tabs till the user has logged in. Ive sorted out the login and logout. All i need to do is add the code to enable/disable some tabs until the user has logged in.
One of the great features of Page Frames in the now discontinued FoxPro language was that you could use a Page Frame (like a TabControl) and hide the tabs. The nice thing about this was that if you wanted (for example) to have simulated "frames" you could use a Page Frame control, hide the tabs, and that gave you endless frame that you could then access programmatically.I need to do something along the same lines. To further illustrate, if you look at any configuration screen in Office 2007, they all have a ListBox on the left, and then clicking on those Listbox selections brings up "frames" on the right with what you want to work with.This is the effect I want to create - but in .NET I cannot see a good control to use.
Panels - these seemed a good idea at first, but even when set to Visible and not Visible these frames hide each other so they dont seem like they will work.
GroupBoxes - Tried these but the same problem as with panels.
TabControl - Tried this, and it works great - but I DONT want the Tabs. Instead I want non-tabbed pages, that would then be like frames.
What is the best control to use? And, can I hide the Tabs somehow in the TabControl?
Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my canvas.When I run my project my scrollviewer vertical bar is always showing even when there's more room vertically than needed for a scrollbar.
All I am trying to accomplish here is a min resolution of 1280x768 to be scrollable and anything bigger than that have the scrollbars hide. My laptop is only 768 tall, but my canvases were developed with 1280x1024 in mind. So I would like a way to set this up so that everyone can scroll or just see the canvas all at once depending on their resolution.
Anyone have any ideas why it is always visible? I've tried setting canvas width and height. I tried setting stretch on alignments on the outer grid. Saw both those tips while searching other issues similar to mine.
....lots of child canvas items in my "Main Floor" canvas. Child canvas objects contain lots of path objects. None which are taller or wider than the main floor canvas width/height.
i have a form with a textbox, datagridview, tabcontrol. I use the tabcontrol to create an indexed view of the datagrid using the alphabet to filter the records to show the respected fields according what tab was selected. The textbox I have on the form is databinded to a field of a table in the database. The datagrid is also databinded to the same table in the database. The binding on the textbox breaks when I press on a tab to change the filter type. On the tabcontrol.selectedindex event I have this code to filter and fill the datagrid is: conn.Open()
How can I make an event for a tabcontrol which has Tabpage1, Tabpage2, Tabpage3, and so on.. For example... There's a label outside the tabcontrol (Label1). If tabpage1 is selected, how can I make the label1's text changed?
I'm try to hide the label after few second but it is updating page continuously after 10sec, i just want it once time when i click save button label on display me successfully for 10sec and get disappear
is it possible to show a figure in one Label in another label through a button click event? for instance, i have a figure in label1 and i want to display that figure in a label of another form is it possible?
I'm by far a VB expert, but I've used tabcontrols before without having with happen. VB 2010.I have a tab control element on a form, and on the tabcontrol, tabpage1, I have 21 databound controls that are being pulled from an Access database. Each control has it's own table adapter that is being filled from the same dataset. I also have a save button and a cancel button outside tha tabcontrol on the form itself.
When I debug the app, the forms load correctly and I can see my databound elements containing data. I can click on a single control on the tabcontrol page. Whatever control I click first, such as the gender combobox, becomes the only control I can click on. I can change tab OK, and I can click on the buttons off the tab control (although there is no underlying code for those buttons yet). However I can't click a second control on the form, and I can't close the form without closing the parent form. There is no other code on the trouble form other than the tableadapter fills.
i am developing a web browser in vb.net as my final year project.currently working on displaying browsing history in labels contained in a panel . i have coded label array dynamic in size , using redim stmnt in some method say abc () . now i want to handle event generaten on clicking these label .but i have no idea how to do it .
Public Class frmhistory Dim domainarray(50) As String Dim lblpagename() As Label
In the about use should be a label and a button. The label should tell about the program and have the name of the programmer and the button should hide the about us form.Here's my code:
Public Class Form1 Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click[code].....
how to add a click event to the tabpages of a tabcontrol? I tried double clicking it but nothing happened. I tried putting a button on the tabpage but that did not work either.
I am making a web browser in Visual Basic and I am trying to figure out how to make a middle mouse button (Scroll Button) click to close the tab that the mouse is hovering over (Like In Google Chrome).
Does vs2010 have this under a windows form?I have a text field that i want to show/hide depending if the user wants to view it. Like vista does "show more information"
is there a way to hide a column i a listview? I know that theres a remove but it would be a pain to remake it when the user wants to bring back the column
I am brand new to Vb.Net and was wondering how I could loop through each label and say if the label.text = 0 then Hide panel1. How would I get that accomplished?
I am successfully hiding a combobox, based on the selection of another combobox. However, I can not get the label of the combobox to hide as well. The code I am using, which is basically the same code for hiding the combobox itself returns the following error: Error 1 'DOCUMENT_EVALLabel' is not a member of 'WindowsApplication1.Form1' Here is the code I am using for the label: Me.DOCUMENT_EVALLabel.Visible = (EVALUATIONComboBox.Text = "Text")
I want to display the text of a label as a underscore character until specified otherwise. Kind of like how you can show text in a textbox as any character using passwordchar
Is there any examples with a treeview like this [URL] /scree...tinel-smod.png is it a case of having to draw each form how you would like to then hide/show the controls depending on what is selected in tree view????
I'm calling some data from my Oracle table and I have a field which is called 'image1' which is a BLOB field.
Sometimes an image is input into the field and others it's not. I need a way to read the BLOB field to see if its a blank and then show/hide my label based on its contents.[code]...
I am working on Datagridview control.When Click on a Button in the ButtonColumn then few rows in the datagridview should be unhide or Hide. i.e. For one click Rows are Hide.For Second click Rows are Unhide.Assume the below table contains my present Datagirdview table.
ButtonClick Category A B C D E Button 3101 - - - - - Button 3102 - - - - -
[code]....
If i click 3101 Button then the corresponding "31" rows should be display.If again click same Button the corresponding "31" rows should be Hide.
I am having troubler with hide/show commands, First I did this
Private Sub FavoritesToolStripMenuItem1_Click(ByVal sender As System.Object, [Code] .....
Now I can't have my shortcut because there is two things that use the short cut so can I do a command that hides the shortcut and enables it when I click on the favorites?