Forms :: Re-using Same Buttons, TextBox, Combobox In Different Forms?

Jun 18, 2010

I am creatting an windows application software in which many controls like Buttons, textBox, combobox are remain same in 12 different form. In this 12 diff form the activity of those controls will remain same.The scenareo id

1. I have 12 forms.

2. Each form containing 3 labels (Country, State, City). These labels indicates 3 combobox from which we can select location.

3. Now I need to use these 3 controls in all 12 forms with same activity.

4. When I change forms to another, these buttons shud remain same.

View 3 Replies


ADVERTISEMENT

Assigning Buttons To Textbox With Windows Forms?

Nov 2, 2009

How do I make a connection between a button and textbox when using windows form applications. In other words, if a button is clicked on, how do I assign it to read that certain textbox where the information was entered?

View 4 Replies

VS 2005 - ComboBox / Textbox And Label On 2 Forms

Apr 11, 2009

I have 2 forms. The first form has a label on it. The second form has a combo box, a text box, and a button on it. In the second form, when I select the label name that I want to edit, I type in what I want to change the label name to in the textbox and I click the button. Now this goes through flawlessly except I want the combobox item to change to the NEW label name. I've been able to do that but when I close the form in run-time and open it up again, the previous label name appears once again. Is it possible to make the combobox add the new label name and KEEP it in its collection?

View 9 Replies

Forms :: Combobox And Textbox - Display Fcorresponding Data In Textbox1 And Textbox2

Dec 21, 2009

I use following codes to diplay data in combobox

str = "SELECT sno,name,city FROM employees"
cmd = New SqlClient.SqlCommand(str, con)

[CODE]..............

With ComboBox1
.DataSource = dt

[CODE].......

Table has three fields as sno,name,city Combobox displays name column and data in table is as

sno--name-----city
1-------a------london
2-------b------moscow
3-------c-------tehran

Supose combobox text=a then I want to display following corresponding data in textbox1 and textbox2

textbox1.text=1
textbox2.text=london
(the first row of data)

View 1 Replies

Forms :: Passing Several Textbox.text Between Forms

Jul 28, 2010

I use the code

Dim Selvk As New Selvkost2
Selvk.PassedText = TextBox29.Text
Selvk.Show()

[code]....

in my second form and the text passes. but I need to pass values from 20 textboxes. do I have to copy the code in my second form 20 times an declare passedtext2 and so on or is there an easier way to do this?

View 3 Replies

Forms :: Different Looking Buttons?

Mar 29, 2010

Can anyone tell me why the buttons in the development and in the runtime look different? Buttons.jpg Top is how the button looks like at runtime.Bottom is how the button looks like at development.

View 4 Replies

Forms :: Can Listbox Contain Buttons

Jun 26, 2011

I am working on this app and decided to add a listbox to the form since a listbox can contain objects. The objects I decided to add are buttons. When I launch my app. I see the listbox and what appears to be where the buttons are but no text is being displayed. Maybe I am missing the point of the listbox. Can I have buttons in the listbox and have the text display for the bottons?

View 1 Replies

Forms :: Pressing Buttons In .net?

Jan 8, 2012

I have a button in my windows form using vb.net when I actually clicked the button something happen then when I press any keys like enter or space, it focuses on the button since it was clicked and the codes in my button is the one that is executing rather than the codes in my enter or space key. I think it means that the button is being pressed when I hit spacebar and enter because there is a blue border in the button. When I click a button the focus remains on the button. I don't know how to remove that.

View 5 Replies

Dynamic Buttons Opening Different Forms

Nov 13, 2010

Firstly though, I'll have to mention that I'm a relative newcomer to vb.net and don't really know that much about advanced functions.I have my main form which dynamically generates 15 buttons.

Each of these buttons will need to open another form, depending on which form has been assigned to that button in a config file (the config file isn't yet done, as I want to get it working simply by hardcoding the name of the forms for the time being)

The way I have it in my head is that I would assign the form name that needs to be open to the name of the button, if that makes sense....However, I have absolutely no clue how to do it, I've tried a couple of things but to no avail.

Here's my code, and I have no problem changing any part of it if it will help things along, this is just the only way I know how to create dynamic buttons.[CODE...]

View 8 Replies

Make Custom Buttons For The Forms?

Dec 4, 2008

Is it possible to make custom buttons for the forms? I know i can add imaging to the button controls, but if is it possible to really customize the buttons so they look different, like designs instead of blocks?

View 3 Replies

Reading Radio Buttons Between Forms?

Nov 14, 2011

I have a basic math test program, and 2 forms to allow the user to choose which function to test on.

The first form has a list of radio buttons with the 4 basic math functions and a button to load the next form.The second form contains this code on Load..

[Code]...

frmOptions has 4 radio buttons, addition is default chosen.After selecting one, the user clicks a button to open frmTest.The above code runs upon first load to change a label to reflect what was chosen on frmOption above.

On step 3, the label on frmTest that is supposed to be changed based on the Checked radio button from frmOption never changes. It doesn't even change on the first load of the form, so I think something is wrong with the Checked property of the radio buttons.

View 3 Replies

Save And Load Buttons On Different Forms

Oct 25, 2009

When you complete various feats in my program, on a form called "User Details" there is a label with the text that says "Complete" only when you have completed a particular game. There is a save button, and a load button, all on different forms. How could I make a save and load feature? One that saves the fact you've completed certain games - and then when you press load after exiting and reentering the program, the Complete text will reappear.

View 9 Replies

Change Text Of A Forms Buttons During Runtime

Feb 3, 2010

Just a quick question, using Visual Basic 2008, is there a way to change the text of a forms buttons and other objects during runtime so that the text sticks no matter if the form is closed and reopened or not? I can get the text to change, but after closing the window and reopening, the text resets. Is this possible?

View 2 Replies

Clicking On Buttons On Webpages And Inputting Into Forms?

May 21, 2011

I'm making a program which will work minimized in the system tray.Now, what it have to do is to load a page [URL] and then input a specific string which i have stored, into this element:

HTML Code:
<input name="ctl00$ctl00$JobnetBaseMiddelContent$LoginContentPlaceHolder$txtUsername" type="text" id="ctl00_ctl00_JobnetBaseMiddelContent_LoginContentPlaceHolder_txtUsername" class="text required" style="width:183px;">

and another string into this one:

HTML Code:
<input name="ctl00$ctl00$JobnetBaseMiddelContent$LoginContentPlaceHolder$txtPassword" type="password" id="ctl00_ctl00_JobnetBaseMiddelContent_LoginContentPlaceHolder_txtPassword" class="text required" style="width:183px;">

and then press this button:

HTML Code:
<input type="submit" name="ctl00$ctl00$JobnetBaseMiddelContent$LoginContentPlaceHolder$btnLogon" value="Log ind" id="ctl00_ctl00_JobnetBaseMiddelContent_LoginContentPlaceHolder_btnLogon">

After that, it would login to the website, and would afterwards press on another button.Each week, i have to login to a website, and press a button in order to keep my current economic status. Which is quite meaningless. Therefore, having a program to press it for me, working in the background, would be so much easier, and make me not forget it?

Ps.The elements info's were received using Google Chrome's "View Element Details".

View 4 Replies

Dynamic Buttons Opening Specific Forms?

Jun 6, 2011

I have a form which gets populated by 15 buttons dynamically at runtime (these need to be dynamic as there will be a user config file at some point)What I need these buttons to do is to open a specific form when clicked. Which form that opens will be dealt with in the config file.

Public Class frm_MainScreen
Private Sub frm_MainScreen_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim count As Integer
Dim ImageDir As String

[code].....

View 2 Replies

Forms :: Copy Certain Buttons, Textboxes And Associated Code

Jun 8, 2011

I have a grid which users enter their contact information - fname,lname then phone number.

I want to know how i can when the usr clicks a button create an extra row of input boxes

And if possible be told how to make the form scrollable, so i can have many, many input boxes present when required

View 5 Replies

Forms :: Create Two Types Radio Buttons?

Apr 15, 2010

i want to create two type radio button one for sex(male/female) and another for marital status (married /un-married) how it possible. when i create four radio button for this two type of control,then i got only one type control of all radio button

View 2 Replies

Forms :: Find What Mouse Buttons Are Pressed?

Apr 13, 2009

How can I tell what mouse buttons are being pressed at a certain time?

View 1 Replies

Forms :: How To Let Method Know Which Form Is Getting It's Buttons Pushed

Jan 21, 2010

In design mode, I have 2 forms, Main and Profile. Both have many controls on them.When executed, the Profile form is duplicated 4 times and named Profile1 through 4. Among the controls on these forms are 3 buttons that copy the selections from the other 3 forms to the one that had the button pressed.How do I accomplish this? I don't understand how to let the method know which form is getting it's buttons pushed so it knows what form to copy...

View 2 Replies

Forms :: How To Make Buttons To Function As Zoom In / Out

Aug 26, 2010

I program for wm 2003 -pocket pc. in vbnet 2005. I have a picturebox which I load images into it with buttons click. I have another 2 buttons called zoom in and zoom out, what should I do with this buttons that it will function as zoom in and zoom out.

View 1 Replies

Forms :: Trying To Coordinate Start And Stop Buttons

May 21, 2009

I'm very new to Visual Basic, and have just installed VB Express 2008 from a Sams book titled, "Teach Yourself Visual Basic 2008 in 24 Hours", by James Foxall. I've managed to make it through most of the book, which was very helpful in getting a quick jump start, but I find that I am still "not quite getting it" yet.

I've written a program that has a "Start" and "Stop" button which are suppose to control the logging of data through a serial port. When I click the Start button, the serial port gets initialized, opened, and then I go into a Do-Loop-Until loop to process the incoming data stream, and that is suppose to stop when the Stop button is pressed. However, I haven't figured out how to implement that.

[Code]...

View 4 Replies

Forms :: Use Two Radio Buttons To Show Picture

Nov 30, 2010

I have a form with two group boxes. The first one has two radio buttons and the second has four. The user chooses one button from the first group box and one button from the second which gives me eight selections and I would like a different picture for each selection.

View 5 Replies

Forms :: Using Keyboard Command Instead Of Using Buttons To Put Commands?

Sep 1, 2009

Using keyboard command Instead of using buttons to put commands How?

View 5 Replies

Forms :: VS2008 Show Buttons In A Region?

Jul 26, 2010

I have a Rectangle (the class) that I'm using to define a region on a form and when the mouse enters that region it shows 2 buttons (which are on the form and within the bounds of the rectangle) and I would like the buttons to remain visible when the mouse is over either of the 2 buttons then when the mouse leaves the region or leaves the form they are set to invisible again. Here's the code I have so far:

Private m_TitleColor As Color
Private Const m_TitleHeight As Integer = 30I
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)

[code].....

View 2 Replies

Make Click Buttons And Fill Forms?

Jun 28, 2011

Alright so I looked at a great tutorial that gave me a great understanding of http webrequest. I successfully logged with it in my program.

how do i make it click buttons and fill forms?

View 5 Replies

VS 2008 Minimize And Close Buttons On Forms?

Sep 5, 2010

Is there any way I could have the Minimize button on form while at the same time to have the Close button [X] deactivated (or removed or anything) ? I just want to give the opportunity to the user to minimize the form , but to force him to close the form with the Close mutton , not with the X button

View 3 Replies

Buttons Are Opening Wrong Forms Inside A Panel?

Mar 18, 2010

not quite sure why this is happening but I am just debugging right now and the buttons I am using are opening the wrong forms, I have made sure of the form names, button names etc and it looks all good but specifically the btnPrintReport is opening up the form enterAuditForm while btnProcessAudit is opening printAuditForm instead of their correct ones.

Here's my code, it is rather simple. The reason why I am using a separate sub as my btnPrintReport is because I am using that also on the baseForm's OnLoad Event, which again is also opening the wrong form.

[Code]...

View 4 Replies

Forms :: Adding Tool Strip Buttons Dynamically?

Apr 30, 2010

I need to be able to add buttons to a tool strip at run time. As of now I've been able to get the buttons to display with a nice little picture just how he wants and some text under it. Just can't figure out how to "enable" the click event for these buttons. Obviously I need them to do something rather than just sit there looking good and this is where I'm stuck. Right now I'd be happy for a message box to come up saying yep I'm working as I could then work with that. This is what I have for code so far... this is just to get it working I'll work on the actual code later.

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim btnSomething As New ToolStripButton
btnSomething.Text = "Test 1"

[code]....

View 3 Replies

Forms :: Get Information About Dynamically Created Array Of Buttons

Jul 2, 2009

For example, when I click on the btn(5) I would like the textbox1 says: "5"

[Code]....

View 3 Replies

Forms :: How To Make Buttons And DataGrid Resize To Windows

May 13, 2010

I like to know how to make the forms buttons and text and data... auto adjust when windows Maximize or minimaze..because when its big I can see everything fine and when I restore to a smaller window the buttons are on the bottom and cant see them... Basically I want everything to look in the same position whether its a small window or big or at least that it has scroolbars if I see it small.

View 2 Replies







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