Determine Active Form Name?

Apr 20, 2010

When debugging in VB6 it was easy to find the name of the active form because it was automatically highlighted in the Project Explorer.

How do I find the name of the active form in VS2010?

View 7 Replies


ADVERTISEMENT

Determine If TabPage Active Or Not?

Jul 4, 2011

I tried this:

If TabControl1.SelectedTab = TabPage2

But it didn't work.

View 2 Replies

VS 2005 Get The Active Control Of The Active Form?

Mar 30, 2009

I want to get the active control (control which has the focus or where the cursor is on) each time the cursor moves to another control or each time a control receives a focus.

View 5 Replies

Write Text From A Parent Form To The Active Mdi Child Form VB 2010

Jan 28, 2012

It has to be a simple line of code but I do not know how to construct it. Using VB 2010 Express, I have a MDI parent form and many child forms. I want the parent form to determine what child form is active and load data into the RichTextBox1 on the child form. Each Child form has a RichTextBox1. The parent form gets its data by loading a file.

I am close to a solution but just can't get there. You will see in the code below, if I make a direct reference to a specific child form, it works great. What I want to do is to use the Active Form function to determine which form to write to. I have looked at the MS tutorial which gets me close.

Private
Sub OpenToolStripMenuItem_Click(ByVal sender
As System.Object,

[Code].....

View 6 Replies

Bring A Form To The Front As Active Form

Jul 14, 2009

I am trying to have any only one form type eg Countries, Projects, or Vendors etc. open at the same time. So, if a user has the Country form open and goes to open it again from the menu I would like the applaication to bring the form to the Front of the MDI container. I have tried a number of things like BringToFront, ActivateMdiChild, etc.

[Code]....

View 3 Replies

Can Zoom Form While It Is Active

Mar 20, 2012

i want to know is there any way i can zoom my form in vb.net. i could resize the form and byanchoring all controls to left top right bottom i can make it look like zoom. but it is not actually zooming. it is resizing. while font size and other formats are still as same.

View 1 Replies

Get Active Control Of Form?

Mar 30, 2009

I want to get the active control (control which has the focus or where the cursor is on) each time the cursor moves to another control or each time a control receives a focus.

View 1 Replies

Get The Text Of The Active Form?

Apr 6, 2010

I need to build a program that can get the form's name of whatever window/application that is currently active/in focus. How do I do that?

View 2 Replies

How To Put An Active Login Form

Jul 30, 2010

I would like to put an active login form where by if one fails toput the correct password after 3 trials the program exits

View 1 Replies

MDI Application - How To Get Active Form

Mar 11, 2010

I have a mdi application. When some childforms are open (but only one is active) and the user press a button, I want to know, what form is open, because depending on this, an event will fire up. I imagine this so: at first I determine the active form with a separate function. And then with a select case statement the event will be fired up. How can I make this?

View 2 Replies

Determine Form Inside Desktop?

Dec 29, 2009

How to determine whether form is it inside the desktop?

View 3 Replies

Determine If A Form Is Already Open In SDI Application?

Feb 2, 2010

My program has many forms that can be launched from the main form, and when launching a form, I need for my program to know whether or not there is already an existing instance of the requested form open before it launches the requested form.

So, if I have form "Search" with button "View" that launches form "Details", I need to know if the "Details" form is already open when the user clicks the "View" button.

Apparently, if I had developed my application as an MDI application intead of an SDI application, I could just do "If frmDetails.visible = True then DoStuff()", but the Details form's Visible property always comes back as False, even when the form is already open. If the form is always being reported as not being visible even when it is indeed visible, what method do I use instead to find out that the form is open/visible/in use?

View 1 Replies

Determine The Top Most (zOrder) Window Other Than The Form?

Dec 21, 2011

im trying to find the top most window other than my form or its parent form...Background:Im writing software for a TS-MFD (touch screen - Multi function display), it has a docked menu bar at the bottom with the option to pull up an onscreen keyboard. Now the keyboard ive written and works well but the only drawback is i need to specify what window to send the keys too, be it inside my own application or a 3rd party app such as notepad. I believe the answer lies an recursively looping through GetForegroundWindow() from user32.dll and ignoring "Keyboard" and "MenuBar", but I dont know how to advance to the next top most window, i only know how to get the top window...so my window order is likely Keyboard,Menubar,(then the window im trying to grab)?

View 7 Replies

Determine Which Control Called A Form?

Mar 3, 2010

I have three buttons on my main form, say Form1. Clicking any of the buttons brings up Form2 modally for input, it's a number pad. Now, depending on which button was clicked to get there, after the user enters his numbers, I need to change a specific label on Form1. In other words, btn1 clicked puts user input into lbl1 and so on... I could probably do this with a variable but wondering if there is a more elegant way.

View 3 Replies

Active Directory Groups In Form

Sep 18, 2008

I am writing an application where active directory validation is required before accessing the main form. There are 2 forms. Form 2 is the login form and form 1 is the main form. The main form would have a simple look, with about 10 checkboxes.I have managed to get the authentication working great but what now need to do is validate groups. Say if "user A" is in "groups A,B and C" and "user B" is in "groups B and C" i would like for them to use my login form, once they log in, the groups that they are members of would appear in a listbox on either form, (whichever is easiest) and is hidden from the user ... if they are in group A, then the main form would show only the first 3 checkboxes, if they are in group B, then it would show the 4th and 5th checkboxes, if in both groups then show the first 5 checkboxes etc.It is a simple idea, but is complicated to explain.As i said, the login form is working with the active directory... here is the code for the login form:[code]Form1 in the code is my main form, and wish for it to change according to which groups the user is in.

View 9 Replies

Active Form In Windows Application?

Oct 7, 2009

I am developing a Windows Forms application. I have four forms which is inherited from Baseform in another project. In all four forms I am using a label to show some transaction count based on network status. I have implemented a thread which gets the active form of application and setting up the text. The code works fine if application screen is active. If I minimize and open any other application, I am getting an null error exception.

How do I get the active form of an application?
Private Sub StartThread()
pollThread =New Thread(AddressOf PollfileStatus)
pollThread.IsBackground =True
running =True
pollThread.Start()
[Code] .....

View 2 Replies

Forms :: Detecting If Form Is Active

Jun 2, 2011

I am new to vb.net and what I want to do is change the bg color if my form is active.
I have tried searches and try and fail but I cant figure it out

View 9 Replies

Forms :: Set The Form As The Active Window?

Mar 4, 2011

I was wondering if there's a method to set the form as the active window (not topmost obviously), if it's currently not the active window (meaning another window is currently the active one). By active I mean "selected".

View 1 Replies

Get Active Form Caption Color?

Aug 3, 2009

How can i get the color of the caption of the active form in winforms?

View 1 Replies

Get The Contents Of The Active Child MDI Form?

Jul 20, 2010

I want to get the contents of the active child MDI form, how do you do that? Here's what I did to create a child form.

childForm += 1
If childForm > UBound(childForms) Then
ReDim childForms(childForm)

[Code].....

So say I want to get the text from an active form. How can I get the active form id so I can just do this?

childforms(childform).textbox1.text

View 1 Replies

How To Close An Active MDI Child Form

May 31, 2011

I just starting to use MDI form. I can show the child MDI form, without any problem. My problem is that I want to close the child form also from the parent menu bar. This is my code:

Private Sub CloseToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CloseToolStripMenuItem.Click
Dim frmActive As Form = Me.ActivateMdiChild

[code].....

View 3 Replies

How To Find Name Of Active Control On Form

Mar 12, 2009

I'm an old Access developer and know VBA quite well, but now I'm working at learning VB.net. I'm trying to find the equivilent of the following Access VBA code using VB.net:

Function EvalField()
Dim x As Integer, ctl As Control
Set ctl = Screen.ActiveControl
x = Val(Mid(ctl.Name, 5))
Screen.ActiveForm.Controls("Formula" & x) = ctl
ctl = Eval(ctl)
UpdateTotal
End Function

This code sets a control variable to the currently active control, then copies the text from that control into it's matching "Formula" field for reference by the user), then turns the string of math into the answer. For example, if the user enters 5 + 4, that will be copied to the Formula textbox, then it will be evaluated and the answer will replace the 5 + 4. And lastly, the UpdateTotal sub will execute which will add this answer to the existing Total field.

View 1 Replies

Resize Active Main Form?

Dec 25, 2009

The form my application starts with is called Form1.

now if i have another form called form2 and call

form2.width=500

when you press a button on form1 then form2 is resized to 500

BUT if I call

form1.width=500

from the same button Form1 is NOT resized why is this?

View 2 Replies

Determine Form User Defined Control Is Placed On?

Jan 25, 2012

I'm writing a control that needs to check a property of the form it's placed in.Is there a way to do that?

View 1 Replies

Determine If A Form Class Exists At Runtime?

Feb 17, 2010

I have the name of a form in a string variable, e.g. "frmOptions". I want to:

1) get the fully qualified name of the form

2) determine if the form exists in the application

3) create an instance of the form

4) show the form

I know that using reflection I can do #3 this way, but I need to get the fully qualified form name first[code]...

View 3 Replies

Determine What Element Of A Form Is The One Responsible For An Autopostback In ASP.NET?

Nov 12, 2009

I have a number of dropdown lists that I'm trying to chain together and they all have autopostback. How can I tell which one of the dropdown lists was the one responsibe for the autopostback?

View 1 Replies

Determine Whether A Form Has Raised Its Shown Event?

Aug 5, 2011

I have an MDI application that can either run in TABBED or WINDOWED mode. When a user selects something from the menu a form is shown. All menuItem clicks pretty much look the same:

Dim frm As New <SomeForm>
frm.MdiParent = MDIParentForm
frm.Show()

[code].....

View 3 Replies

Displaying Active Date And Time On Form

Mar 11, 2010

I've got a module for my program thats displays the active time and date, on a form. For some reason my code is incorrect and nothing happens when I run the form. Heres the code I have in the module:

Module ModDateAndTime
'Declares tmrdat as a timer with events
Public WithEvents tmrdat As Timer
'declares lbldat as a label
Public lbldat As Label
[Code] .....

And the code in the form's:
'declares lbldat as lbldateandtime
lbldat = lblDateandTime
The relevant label in the form is named lblDateandTime

View 12 Replies

Embed Form In Titlebar Of An Active Window?

Oct 7, 2009

I have created a form containing a text box and a button. i would like to know if it is possible to embed this form in the title bar of the current active window that is opened eg: ie,notepad,word this is so that i can enter a word in the text box and use text to speech to say it or highlight a word in the active window and it will be placed in the text box of my form. i can position the form in the top right location but then the form position is stagnant.

View 3 Replies

Exit Application When Parent Form Active?

Jun 9, 2012

I have created an application which has a parent form and various child forms, when all child forms are closed and only the parent form is viewable would it be possible to exit the application?[code]...

View 3 Replies







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