Create A Form From Setting?
May 22, 2012
I want to know is that possible To Copy and create a Form (all Control) From setting. What I Means is Programmatically crate a Form that can use in anytime in Program. The Problem is, I have a form that will dynamically create all related control like Button, Text box, radios button which is read the setting from Database, But Now the problem is there are many control in form and cause loading lack because the loading of those control. What i need actually is make that loading faster.
View 1 Replies
ADVERTISEMENT
Jun 21, 2010
Is it possible to create a new My.Setting item and value at runtime or does the setting already have to created? I'd like create new settings and delete settings.
View 1 Replies
Apr 28, 2010
Is there any way to create a new setting from source code instead of having to create the setting first and editing it later?
View 5 Replies
Jan 8, 2011
Is there a way to create a setting while program is running?For example, have a textbox in which the user will give the name of the setting
and a combobox with 3 items: String, integer, Boolean.But these settings have to stay until you open the program again.
View 4 Replies
Feb 1, 2010
This is what I have..Dim frmSettings As New frmOptionsfrmSettings.ShowDialog(Me)frmSettings is a settings form that you can choose the color for background of form1(Me)
View 1 Replies
Jan 16, 2008
I have used My.Settings for quite some time now, in both VS2005 and now in 2008, but never noticed this behaviour yet... I must be forgetting something trivial? I create a StringCollection setting and manually enter some data (strings).I write some code to handle this, and I get it to work.
Then, I manually add some new strings (and edit the older ones) in the Settings page, save the project, and run my code again.For some reason, the last changes have not been saved... Whenever I look in the settings page, I see them there, but my code cannot recognize them..
[Code]...
View 12 Replies
Nov 9, 2009
I would like to save a form to complete in the properties of "My.Settings" Is this possible? [code]where my.setting.form2 is a system.windows.form. form.it is possible to do that ?
View 8 Replies
May 4, 2010
Form1 shows form2 and form2 shows form3. From form2 I can change the value of the textbox in form1 but from form3 I can't change the textbox value in form2.Please can you look at the application and correct it so I can change the value in the textbox of form2 from form3.
View 3 Replies
Aug 26, 2009
is it advisable to play with the controls to make my form look like this or should i just use this graphic and place it in the background. if the former, then please suggest which controls on the form i can tweak to make the form look like this?
View 1 Replies
Aug 4, 2009
I have a second form that loads when the main form loads. It sits behind the main form, is mainly transparent and does not allow interaction from the User.
Its as if the form is on the desktop, which is what I'm going for.
I set the location of the form to be in the top right hand corner of the desktop. On my PC, which is a 23" monitor, it works and looks great. But when I use my application on a notebook or a smaller screen, the form gets cut off. Why is obvious, because of the screen size differences.
What I want to know is how I might set the form to a more... definitive position. Rather, relative to the size of the screen.
I haven't searched much yet, but maybe there is a way to set the location of the form to a specific location of the desktop, not relative to the size of the screen.
View 4 Replies
Sep 14, 2011
I've made a ComboBox in my form where I add some classes of my own design. Unfortunately they get a generic name when they are displayed in the ComboBox. How can I set their names in the Form?
Class Cabel
Public Sub New(ByVal IName As String, ByVal IConstant As Double)
Name = IName
Constant = IConstant
[Code] .....
cbCurrentCabel and cbNewCabel are the names of my two combiboxes
View 2 Replies
May 10, 2010
I can set the value of a combobox on a form by using ComboBoxName.Text = "SomeText" but how can I do this if the combo box is within a datagridview? When I type DataGridViewComboBox the .text property is not listed. If I try to force it, I get an error.
View 3 Replies
May 5, 2010
I'm doing an application for a school to help them keep track of student attendance and because I'm rather new to VB 2008 .NET I'm sure I'm missing something simple.see the screen shot and attached sample application showing the problem I am having.
The screen shot shows 3 open forms. I'm not able to get the value from the 3rd open form into the Student ID textbox of the 2nd form even though my messagebox shows a value is really in there.The attached application has 3 forms similar to the production application I'm writing which also includes 3 forms. Could you look at the application and tell me what we are missing to get the textbox data in the 2nd form to show up?
View 6 Replies
Dec 4, 2010
I need to dynamically show/hide a form without loosing focus from the original form. How to do this?.
View 1 Replies
Jul 14, 2010
[code]How can I set the BackColor of the form? How can I use an RGB value?
View 3 Replies
Sep 18, 2009
i designed a form in which some records are loading in a datagrid. Here i want to focus the form at form loading. here when i run the pgm it focusing on the grid only. how can i do this?
View 11 Replies
Dec 30, 2009
I have a single form windows application and here is my question; When I set the property of the form's start position manually to centre parent or centre screen it starts up in the centre of the screen. When I do the same thing in the form load event:
[Code]....
View 4 Replies
Apr 19, 2009
I'm having trouble setting a form's location in the load event.
config_set = File.ReadDatabaseKey(Public_Variables.settings_radar, _
"Window Position X", Public_Variables.config, Public_Variables.config_path, 5)
If Misc.GetContainsOnlyNumbers(config_set) Then
Me.Location.X = CInt(config_set)
End If
View 4 Replies
Aug 21, 2009
I am trying to get some objects invisible as I fill a dialog, but it doesn't work when coding from the dialog.
how to get this code working
ProductTypeIdtext = "0"
SingleLineTransfer.grnuminfoPSTN.Visible = True
SingleLineTransfer.grwholesale.Visible = True
[Code].....
View 8 Replies
Jun 25, 2009
in Old vb/VBA, I am accustomed to doing THIS when I instance a form object (as in "pop-up"):
Private WithEvents SomePopUpForm As Form_PopUpForm
Private Sub cmdEdit_Click()
Set SomePopUpForm = New Form_SomePopUpForm
SomePopUpFOrm.Visible = True
End Sub
[Code]...
View 5 Replies
Apr 1, 2011
In my Windows application I have 2 forms, Form1 & Form2 in Form1 there is a Button so now I want to place the form2 exactly bottom of the Button when I click.
View 3 Replies
Dec 17, 2009
I have a dialog that containers a DataGridView, this dialog is opened from a parent Form. I would like the DataGridView to have focus as soon as the form is opened, so on pressing the down key would enable you to scroll down through the rows straight away. I have tried setting the tab index so that the DataGridView is the first selected item in the form. I have also tried calling the DataGridView.Focus() method in both the dialog constructor and the Form_Load event. I have also tried setting the
[Code]...
View 2 Replies
Oct 16, 2010
I have an app that on older monitors the form exceeds the screen size. I have the autoscroll set to True. However, the left part of my form is not visible...only the right side is completely visible ... via the scroll.
View 3 Replies
Mar 27, 2011
Is it possible to set a form Topmost setting only for one commercial program?Say my program is A and commercial program is B... I want Topmost setting for program A will only work when I working on program B, and when I switch to other program than program B the Topmost setting for program A back to false.
View 2 Replies
Jul 1, 2010
I want to make my form freeze for 5 seconds before it resumes to the next form.So I have a form that says : Establishing a connection....
But I don't want it to make a connection, i just want the user to think that it's making a connection.
And I then want it, when the timer reaches zero, that it would resume to the next form.
I just need the code of the timer behavior.
View 18 Replies
Mar 31, 2010
I don't know much about vb.net so I'm hoping this is something that can be done fairly easily. We currently have a system where valves are fired by checkboxes (representing each valve) being checked at certain intervals and when the last valve is switched the timer restarts in order for the sequence to repeat itself. We would like to be able to have a textbox in the form where we can just type in the interval at which the valves (checkboxes) switch without having to change the interval manually in the code each time we want to change it. Currently in our code we just have a set interval. Here's the code:
[Code]...
View 11 Replies
Aug 26, 2009
i have a form that looks like this: i need different areas to execute different code, just as if there were buttons. how do i set areas of the form to be clickable in vb.net?
View 2 Replies
Mar 19, 2010
This should be fairly basic but maybe the search terms are too general to find relevant answers.I have an MDI form with a conventional toolbar. When I open a small non child form I want to set focus back to this main form so the user can click the help button on the toolbar if necessary.
Tried frmMain.Select() and frmMain.ToolStripButton0.Select() at end of small form load but it doesn't work. The user has to click the help button twice, once to select it and once to open it. A minor problem but annoying.
View 2 Replies
Aug 16, 2007
I have a problem.I want to set the focus on TextBox1 when the form loads. TextBox1 has a tab index > 1. I put this line in the form load subroutine:TextBox1.Focus()It does not work! However if I make a button and put the above line of code to its click event procedure, then TextBox1 get the focus.
View 9 Replies
Feb 9, 2010
I have a single form that I would like to move across the screen with my VB program. Of course it's simple to set the location X and Y property for compile time using the properties tab, but I want the form to move as the program runschanging the coordinates within a for-next loop.I can easily get the X and Y coordinates of the form within my program by using X = me.location where X has been dimmed as type point.console.writeline(X) will appear as {X=20, Y=40}. for example
View 2 Replies