Method To Be Visible In Other Forms?

Jul 3, 2010

i am using a method in form1 same method i want to use in form2 . I tried the public and private keyword but nothing happens.

View 8 Replies


ADVERTISEMENT

Jumping Between Forms - Making A Form Visible And Not Visible

Jul 17, 2009

I'm having an odd problem when making a form visible and not visible and it not continuing to function. Here is what I have happening. I have a main form (frmMain) that is an MDIParent. On this form I have a menu to open a second form (frmCalculate) and populate a listview from Items in the database.

As I click or select items in the listview on frmCalculate the tag is read and data is pulled based on the id stored in that tag and fills in various fields on the form. This works great. However, I also have a context menu attached to the listview that allows me to perform a "what if" scenerio on the items I am calculating. When I select this menu, I hide the frmCalculate and open the frmWhatIf form where I can mess around with values on the item I had hilighted in the listview on frmCalculate. Nothing is pulled from or written back to the database here, all the information is filled in from fields on frmCalculate. It just allows me to look at rising costs and how they will affect my margins.... anyway.

If I then close frmWhatIf, it brings my frmCalculate back by setting its visible propery to true (never closed frmCalculate, just hid it). At this point if I click an item in the listview I get an exception for a null reference. IF however I never hide frmCalculate, I can open and close frmWhatIF without ever having an issue. Why do I lose the functionality to select items just by hiding and unhiding the form? As a test I added two menus to the toolbar on frmMain one called hide and one called show. I then opened frmCalculate with original menu item to populate the listview and selected a few items to test that it was working and then using the hide menu I made the form invisible and the show button to bring it back. This yielded the same exception so without even opening frmWhatIf the problem still occurs.

View 3 Replies

Why Is Static Method Not Visible

Sep 14, 2011

I have a C# method in my datatier that I am trying to convert to VB.Net. I converted it to VB.Net but when I bring up the datatier class the method is not showing. It has been a long time since i have used VB.Net and forgot alot of things [code]I believe it has to do with the declaration, which i have as:Public Static Function UserActInfo(ByVal _eno As String) As useraccount..

View 1 Replies

Does Calling The Dispose Method On A Windows.Forms.Timer Call It's Stop Method

Nov 12, 2009

Does calling the Dispose method on a Windows.Forms.Timer call it's Stop method? Or should I stop the timer before I dispose it?

View 5 Replies

Forms :: Visible Textbox After A While?

Sep 6, 2011

i need to make a textbox in my windowsform after 3 seconds.

View 3 Replies

Set Groupboxes To Visible One By One On One Forms?

Aug 27, 2009

can anyone tell me how to set groupboxes to visible one by one on one forms if that form contains 10 groupboxes....

View 13 Replies

Hide / Show Visible / Invisible Forms

Dec 18, 2009

I have a form (Form1 class) which has got a "next" button (like we have setup wizards) which shud take me to other form. Now that other form has two buttons , next and back , and it shud take me to the previous and the next form. And I want to preserve the states of each form. What I did was that I instantiated the Form2 class in the click event of the next button : [code]That does the job of showing the second form . In the click event (of the back button) handler of the second form , I have the following [code]Now , when I press the back button , the program hangs. And nothing happens. how to hide/show forms with .NET. In VB6 it's quite easy using Show/Hide methods.

View 6 Replies

VS 2008 Adding A Method To All Forms Existing Forms Without Changing Their Code?

Jul 28, 2009

just wondering if it is possible to add a method to all forms in my project without having to do it on one form and Inherit all my other forms from that one

View 3 Replies

Get A Quick Piece Of Code To Close All Non Visible Forms?

May 30, 2010

I am starting to debudg my application in depth, and have realised that at certian points, if you close what appears to be the only open form, the application stays open. I was just wondering if there exists somewhere, a list of all open forms that you can view during debugging?Alternatively, is there a quick piece of code to close all non visible forms?

For Each frm In Application.OpenForms
frm.Close()
Next

Doesn't seem to work

View 1 Replies

VS 2008 Mdi Form Controls Are Visible In Child Forms

Feb 12, 2010

i use a picture control in mdi form .. but when i load child froms then mdi form picture are also show in front of child form...

View 7 Replies

Forms :: Random Functions - When Start Program And Click Picturebox - Same Card Will Always Come Visible

Mar 30, 2011

Okay, so I'm doing a card game and I'm trying to set that when picturebox (PictureBox1) is clicked, a random card from 13 cards will come visible. Problem is, that when i start the program and click the picturebox, the same card will always come visible. As you can see i've put a button (Button1) which will hide every card. If I press Button2, then Button1 and then the PictureBox1 it will show differend card, but the cards which come visible are always the same.

e.g i press PictureBox1 (which will make card visible), then Button1 (which will make PictureBox1 non-enabled) and then Button2 (which will hide every card and make PictureBox1 pressable). Lets say i pressed the PictureBox1 four times and i got cards: 9, 6, 7, 3, then I close the program, start it again and press PictureBox1 again 4 times and it will show the same cards (9, 6, 7, 3). How can this be done that it will not show the same cards always?

Here's my code...
Public Class Form1

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
End

[CODE]....

View 3 Replies

Big Panel Visible And Not Visible Based On Selections Made By User

Jan 28, 2009

I've got a panel - that's in a group box. All of this - with lots of other textboxes on labels - is in another panel (the big panel).I make the big panel visible and not visible based on selections made by the user.This small panel - that's in the group box. I cannot seem to make it appear.Even if I leave it VISIBLE at design time - the objects in it will not appear.Is there some kind of nesting problem that I'm not aware of!

View 9 Replies

Making Menu Item Visible Or Not Visible In Master Page

Jan 25, 2011

I have five menu items that i have created as a user control and placed on the master page. Now i want one of the menu items to be visible only for particular user role and not visible for others. Here is what I did. Its not working though.

[Code]...

View 6 Replies

Forms :: Using Mouse Overs To View (make Visible) Text Boxes And Picture Boxes

Jul 5, 2011

Im trying to make a program that allows the user to view additional information via moving the cursor over the label to view (make visble) additional information, in the form of text boxes and/or picture boxes. How will i go about doing this?

View 6 Replies

Pass A Variable To Another Form Or Else Make The Variable Visible To Both Forms?

Sep 5, 2010

Using Visual Basic 2008 Express. I need to pass a variable to another form. Or else make the variable visible to both forms.

View 4 Replies

Make Several PictureBox Images Randomly Visible = False And Then Back To Visible = True Giving The Appearance Of Flashing Or Blinking Images?

Jun 28, 2010

I have placed several PictureBox Images of different colored dots(which represent lights) on an image of a Christmas Tree. I can make the lights randomly flash using a randomGenerator and a Select case statement. However, the code is very long. There are 67 lights on this tree and the code is 71 pages long. There has to be an easier way to do this. So far I have tried the following with two images of lights just to see if it would work and it does not work:

Dim picLight(2) As
Boolean
For intX

[code]....

View 8 Replies

Forms :: Backgroundworker And Method In Other Classes?

Nov 7, 2009

I have a progressbar that works with the backgroundworker. How can I let the backgroundworker work with methods that do a foreach loop in other classes?

View 1 Replies

Forms :: MDI - How To Call Save Method

Jan 22, 2011

I have MDI form in different project and child forms in different project which is dll project. How can I call save method of my child form from MDI form when I click on save from toolbar button of mdi parent form. I can't access child forms save method at run time?

View 11 Replies

Forms :: Method For Getting ASCII Of A Char?

Jul 11, 2010

and what would be the method for If 'char pressed = "a" then do something end if

View 2 Replies

Implement Common Method To Forms?

Feb 8, 2011

I'd like to implement a common method on most of the forms, but not all.Let's call the method 'FormCleaner'.

I'd like to recursively call each forms FormCleaner method and ignore cases where the form has no such method.[code]...

View 2 Replies

Strongly-typed Generic Method Invokes Its Argument's Base Class Method Instead Of A Shadowed Method In T?

Oct 19, 2010

Consider a MyForm class that contains a shadowed implementation of Show(). It also contains a CreateForm() method, which accepts an instance of the form and calls the shadowed sub:

[Code]....

View 3 Replies

Forms :: Border Visible First Time - Second Time Not

Nov 7, 2010

I create an app, with it when I click a button it opens a new form on a second monitor.
This works perfectly, but every first time the app start and I open the second form, on my primary screen (right side) I see the border of the second form. When I click the button again, the form is hidden, and when I click it again, it appears again but then the border is gone.

[Code]....

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 :: Listbox Faster Method For Selecting All

Dec 1, 2010

I have a listbox control that has a selection mode "MultiSimple" (I've also tried MultiExtended). I also have a button that uses this code to select all the items in the list:

Dim i As Integer
For i = 0 To ListBox1.Items.Count - 1
ListBox1.SetSelected(i, True)
Next i

It works ok but the problem is that it's very slow. I have cases where there are 60 000 items in the listbox, and it takes forever to select them all. Is there any function that would select all at once (Just like ListBox1.ClearSelected() unselects all instantly)?

View 3 Replies

Forms :: Multi Column Combobox (looking For Method)?

May 14, 2010

I'm using vs2008 with vb.net, and I have googled all around for a multi column combobox and I know there is not an easy way to do it in .net. However, this is my situation:I have a table in my database that only has around 4 or 5 entries, with the columns FirstName, LastName, Type. I need all of these columns for each of the 4 or 5 entries to be displayed in the combobox. I've been trying to think of simple ways to do it such as counting all the rows, selecting each cell in a loop and programmatically assigning them to the comboboxes, but I realized that the ID column for these entries have numbers that do not go chronologically. (I thought that if I counted the rows, the row number would correspond to the ID number and I could go about looping and assigning variables/concatenating them into the combobox, but this is not the case).

So I am just looking to see if anyone else has any ideas on what I can do to solve this? It's a pretty simple problem but I'm kinda out of any simple ideas.

View 1 Replies

Forms :: ProcessTabKey Method - One Of ComboBoxes Skips

Nov 1, 2010

I'm trying to detect when the tab key was pressed and intercept it in certain cases. Since the form I'm working with has many fields, I've tried overriding ProcessTabKey so that I don't have a separate sub for each control. However, I've found that after adding a simple ProcessTabKey method, each time I press tab it skips one of the combo boxes. In order to duplicate the situation, using Visual Basic Express 2008, create a new Windows Forms project and add 5 combo boxes to the form - allowing each to automatically get an incrementing TabIndex.

Then add the following code the form:
Public Class Form1
Protected Overrides Function ProcessTabKey(ByVal forward As Boolean) As Boolean
MyBase.ProcessTabKey(forward)
End Function
End Class

Now when you run the project, you'll see that each time you press tab it skips one of the combos.

View 5 Replies

Forms :: Textbox And Overwriting WndProc Method

Oct 13, 2011

I have a class that inherits the Textbox class. My main goal is to prevent specific keys from being entered into the textfield. Now, I have a solution however I have one issue with it.

[Code]...

View 8 Replies

Forms :: Focus() Method Fails With Second Show Form?

Feb 7, 2010

I have a simple login field, which works fine with the exception of one quirk. The form is set up with the tab order to go to the UserID first and the Password text box second. This works fine when the form is used the first time, but when the form is used the second time the focus in placed in the Password field. If the form is used a third time, focus is moved the OK button, that is each time moves to the next tab order. I even tried to set the focus in the Load event as in Me.txtUserID.Focus(), but this doesn't change the behavior. Again, I should note that I close the form and not hide the form.

View 3 Replies

Forms :: Form Object Access From Class Method

Oct 22, 2009

I want a string and a listbox, both which are in a form to be modified by an instance of a class method. Should (could I):

1. Pass the entire form to the class method as parameter.

2. Pass the listbox and the string to the method as parameters.

What's the best approach to get access and modify this string and listbox on the form.

View 3 Replies

Forms :: Mdi Call Active Child Form Method?

Aug 20, 2009

I'm trying to call a method defined within a child form from the menu strip of the parent form when the child form is active.

View 1 Replies







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