VS 2008 Detect 'tab' Event And Do Actions?
Apr 5, 2009
I have roughly 20 text boxes on my form,When you press tab, it naturally selects all text in the box (highlighted in blue), so you can press any key, and it replaces it with that,That result is what I want, unfortunately, if you click into the text box, and tab back to it, it no longer selects all the text.I'm wondering how I can detect the tab event properly,I've tried adding a 'KeyDown' event to each text box, and then selecting the text, but the sub never runs, also tried detecting the tab event in my Main Form, thinking that perhaps the parent handles it and will receive that event, but.. No.I've thought of using an event like 'Activated' however, it will also run when the mouse is clicked.
View 4 Replies
ADVERTISEMENT
Aug 10, 2011
is it possible to have 2 simultaneous key presses with the keydown event. I have a keydown sub with 2 sets of keys mapped to move 2 different pictureboxes. But when I press a key for the other picturebox, the first one stops moving. How do I get both to work at the same time?
View 8 Replies
Jul 30, 2011
PROJECT TYPE: Windows Forms Application
LANGUAGE: Visual Basic
.NET VERSION: 3.5
IDE: Visual Studio 2008
OPTION STRICT: on
OPTION EXPLICIT: ON
I am developing a parental control application containing a feature that logs a user off of the computer after an administratively set period of time. I do not however want the application to continue counting time against the time limit when the user is not active on the computer. EXAMPLE: Child logs on and is active for an hour then leaves computer for 45 minutes to get dinner. The session timer needs to ignore the 45 minutes of inactivity. I have thought of two ways to accomplish this.
1) Use a SystemEvents.SessionSwith event (to detect the Start Menu > Log Off > SwitchUser action), or
2) Use an event which would detect user inactivity in excess of a set time, e.g. 5 minutes (similar to a screensaver).
Either event would call a method which would simulate a pause feature (as StopWatch and Timer have no pause support that I know of). I believe the 2nd option would prove to be more universally affective as 1) some users do not have Fast User Switching enabled, and 2) users would be required to manually switch users in order to prevent their inactive time from counting against them. My problem arises when I attempt to implement one of these methods. According to the IntelliSense error checking engine, I have absolutely no clue how to do either of these tasks in spite of the research I have conducted on the topic. I would prefer to go with the system idle time approach.
View 6 Replies
Jan 16, 2010
I'm trying to create an inherited version of the ListView control that (among other things) should have a different background image if the listview is empty to if it has items.Obviously you can easily enough test the count of the collection, but I need to be able to react to the event, however there doesn't appear to be any event related to adding/removing items.
View 3 Replies
Jan 29, 2010
I want in my VB application launching my Browser (or displaying in a WebBroser Control) a Website. But my php website has an authentification page, so i wish my vb code write the login, the password, and press enter (or click onto an image that run an Ajax function).
View 3 Replies
Oct 27, 2009
So Im doing this calculator and i got everything working well. The only thing Im having trouble with is getting it to allow multiple actions before assignment. What i mean by that is . Instead all i can do is (number * number=) does not let me do another before assigningCalculator
Public Class Form1
Dim abp As Boolean
Dim number1 As Double
[code].....
View 3 Replies
Jun 3, 2010
ive got a custom archive type, which i have all the associations set to me application for, when the users double clicks these files i want them to auto import, but im a little stuck on my next step.[code]the tomove string would need to point at the file which was double clicked/ran, and the textbox1.text replaced with the file name of the file that was ran.[code]And the code runs, but i need to replace the "test" (previously it was textbox1.text) withthe name of the file which was ran, is that possible?
View 4 Replies
Oct 17, 2009
Guys,this is my first day at the forum,and my second thread. Can someone explain me how can i make an axshockwaveflashobject2 to copy what happens at axshockwaveflashobject1 like a picture or video. I have a tabed trainer and i want to see my stats in game at the second tab. i have the hack menu on a toolstrip,but i have at the tab 2 flash1.get variables to textboxes,but i can't see what's happening at the flash1,and i may lose the level by falling in the sea. The code should make something like a mirror from flash1 to flash2 at the other tab.
[Code]...
View 2 Replies
Aug 4, 2010
how to detect mouse up event outside my app using GetAsyncKeyState ?
View 2 Replies
Feb 19, 2012
just now I was trying to capture the F1 key on the form, but only managed when the form is selected, and I need to detect it in any form control. I used this code:
Select Case e.KeyCode
Case Keys.F1
MsgBox("Right")
e.Handled = True
End Select
View 1 Replies
Aug 27, 2010
I know you can do it with an WMI event or overriding WndProc and looking for the right messages, but i was wondering if there wasn't something hidden in the net framework that makes this task easyer.
View 1 Replies
Mar 7, 2010
I'm trying to detect the insertion of a USB-Serial COM port device. I found an example that shows how to detect a new USB device - and that part is now working well in my project. The question is, how do I pass on that event back to my Form1 class? In the example, I can create a MsgBox just fine, but if I try to manipulate any of the controls on my form, or raise a user-defined event, I get this message: 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
[Code]...
View 1 Replies
Mar 11, 2009
I have a linkbutton in a column of a Gridview.When the user clicks the linkbutton, I have to redirect to another page.
View 4 Replies
Jan 2, 2010
What is happening now: i click the area in the taskbar which "belongs" to my form, while it is being shown, the form remains "shown"
what i hope to get done: if the form is "shown" and i click the taskbar of my form, i want it hidden
could we detect click event of the form's area in the taskbar?
View 8 Replies
Dec 28, 2011
I am trying to get the event firing when document is ready.
Public Class Form1
'Declaration
Public Event DocumentCompleted As WebBrowserDocumentCompletedEventHandler
Private Sub Main(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Dim frm As New Form1
'frm.Show()
[Code].....
View 1 Replies
Jan 30, 2010
My application has a form which contains several Textboxes where user is required to fill up data. Once data is filled up user can click on "Save" button to save the data. I have added lost focus events to all textboxes so as to validate user input. When I click on cancel button, i want to detect cancel button click, but textbox lost focus is fired first so I get error message for textbox before my code moves to cancel button click handler. Is there any way to detect button click before lost focus event?
View 4 Replies
Apr 10, 2011
I do a lot of programming in VS 2010 on my Windows XP Pro PC. Recently I tried testing my software on a Windows 7 Home PC. For some reason, all of the controls on my forms are slightly misplaced. I also get a bunch of unhandled exceptions I don't get on my pc. For example, one exception said it couldn't access a registry key. Another said it couldn't find the part of a path (it didnt specify which path). What's up? Why is it doing this? My Win XP PC tricks me into thinking my apps are bug free. Guess not.
View 13 Replies
Jun 22, 2010
Is there a event detect change of Listview item count? Like it will be trigger whenever i add an item or delete an item form listview. I search on MSDN Listview Event member, but cant c any usefull.
View 7 Replies
Oct 8, 2009
Is it possible to detect a mouse leave to the left. For example: I have a label and when I hover over it the text changes to "Hovering", and when I leave the label from the left I want the text to change to "Exit left" or if I leave the label from the right that text changes to "Exit right".
View 1 Replies
May 2, 2009
I have a button on vb form and its click event will call Windows to run "system32calc.exe" which is work great. My problem is I do NOT want to have multiple calculators running even if i click the button more than once. Is there any way to detect the calc.exe runing and then disable my button event to call calc.exe?
[Code]...
View 6 Replies
Mar 27, 2011
I need to detect shift + arrow key in blank form. But it's not working. I also tried overriding IsInputKey method but it only detects single key press (like arrow key) but when multiple key are pressed it simply doesn't work.
View 5 Replies
Dec 13, 2011
how can I detect if press Enter in the Textbox Change event and not in Textbox Keypress?
View 3 Replies
Feb 17, 2011
Writing codes for a school project I have to do. Basically I need to make a program that when you click a picture box it replaces the picture with an image in a second picture box on the same spot on the form. I am not sure how to do this. Right now I have the two pic boxes side by side and when I click one the other disappears as it should, but I can't get it to reappear so one can click between the two alternately.
View 7 Replies
Mar 12, 2012
I'd like to do a kind of overload of the actions in the controller.
Is it possible? 'Cause I havn't found any info about it. And when I tryed, I got this error.
The current request for action 'Create' on controller type 'InterviewController' is >ambiguous between the following action methods:
System.Web.Mvc.ViewResult Create() on type
[Code]....
I've tryed few things to get what I wanted. The last one was to copy what was done in the "Edit" action, but for an empty rank. (so I created an empty rank in my DB). I don't think it was a good idea (imagine someone wants to update the DB where idOpportunite = 5...)
View 1 Replies
Oct 4, 2009
I am making a file viewer, and I would like to have the option to open each folder in a new window, but how would I go about start my program and making it open in the correct directory? This is the function I have to open a directory into my viewer: openDir("path", "*"), All I need is to start the program so that this will activate after it's start up.. Is this possible to do?
View 3 Replies
Feb 24, 2012
I have just published an app i was making. However whilst testing i noticed when i close the app using the Exit button which contains the code below
[Code]...
View 14 Replies
Nov 24, 2010
say I have a Button1 subroutine
[code]...
I have a lot of such buttons in my main form. They all do the same thing like this. get the text and pass to some other routine. If i have 20 buttons, then i will have 20 such subroutines. Is there a better (or standard way) to do this without creating that many subroutines?
View 2 Replies
Oct 5, 2011
I am developing an application in ASP.NET MVC structure.I was wondering, I am trying to create a site that only has one page, it has a navigation bar on the left (Which is a list of user input), and then the main content in the middle.My question is, can I make the navigation bar (The user input list) static, and make the main content change, based on the user input, with an asynchronous AJAX postback? I would have multiple controllers which would set different results to the main content, based on the user input. How would I go around doing so, partial views and calling actions with asyncpostback's?
View 1 Replies
Mar 30, 2009
I'm trying to use WebBrowser to remotely log into a site and perform a basic action on the site.
The first step is logging in to the site. Here's the form code for the login:
View 3 Replies
Jun 27, 2010
I want to do the following:
msgbox("Welome to this app!")
*5 secs later*
label1.text="1"
*5 secs later*
textbox1.text="yay"
[Code]...
View 3 Replies