How To Add Keypress Options To Form

Dec 31, 2010

Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If vbKeyRButton = True Then

[code].....

View 2 Replies


ADVERTISEMENT

Add Keypress Options To Form?

Apr 21, 2009

i want to be able to load form2 by pressing the right mouse button.

here's what i have so far:

Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If vbKeyRButton = True Then

[Code].....

e.KeyCode is giving me an error.

View 5 Replies

VS 2010 Options View Control - Child Options?

Aug 20, 2011

I am in need of a form that shows various options, exactly like the Options in Visual Studio. Since there are so many options I too want them categorized, with a TreeView to the left taking care of showing the right category.The usual 'easy' approach here would be to just place a TreeView control on the form, add some nodes, and give those nodes a tag or key that corresponds to a panel or UserControl with the options for that category.Since there will be a lot of options however, this is not really feasible design-wise; the form would be cluttered with possibly 50 panels, all of which I would need to select and bring to front from time to time to add controls to them that represent the options.

So I decided to create a custom control that does exactly that. The control is very similar to my Wizard usercontrol, users can add OptionsPanels at design time, which inherit Panel and simply represent one panel of options. When they do, the panel is added to a container panel, and at the same time a TreeNode is added to a TreeView. The control uses a custom ControlDesigner to handle design-time clicks in the Treeview, selecting a different node would select and bring to front the corresponding panel, allowing the user to add the controls he wants.

Due to the design time support the problem of having 50 panels is no longer present, only one panel will be visible at a time and selecting the right panel is as simple as selecting the corresponding TreeNode, just as during run-time. Anyway, I got all this working, but only for a single 'level' of categories. As you can see in the Visual Studio options, there can be multiple levels of categories. For example, the Environment node has a bunch of children, where each child represents one 'options panel'. There can even be deeper nesting, see the Text Editor node for example.Let me begin by drawing out the basics of how my control works so far.

The main control is an OptionsView control, which contains a SplitContainer with a TreeView to the left and a OptionsPanelContainer to the right. The OptionsPanelContainer is merely a Panel to which only OptionsPanel controls can be added, and which raises events when this happens, as well as when OptionsPanels are removed from it. An OptionsPanel also inherits Panel, and these are the actual panels the users will see in the control, one for each option category.For now, each OptionsPanel has exactly one corresponding TreeNode (and vice versa). In the Visual Studio options, each 'parent' category usually has a 'General' node as the first child, and the parent and this General node show the same option panel, but I am ignoring that for the moment.

The OptionsView control has a property Panels that returns the ControlCollection (Controls property) of the OptionsPanelContainer (in other words: it returns a collection of OptionsPanels that are in this container panel).

vb.net
<Editor(GetType(Designers.OptionsPanelCollectionEditor), GetType(UITypeEditor))> _ <DesignerSerializationVisibility(DesignerSerializationVisibility.Content)> _ Public ReadOnly Property Panels As Control.ControlCollection Get Return Me.PanelContainer.Controls End Get End Property

A custom CollectionEditor for this property takes care of the designer: even though the property type is ControlCollection, the CollectionEditor knows it should create instances of the OptionsPanel control instead of just Controls.When it does this, a corresponding TreeNode is also created and its Tag property is set to the OptionsPanel. Vice versa, the Node property of the OptionsPanel is set to the node. Hence the node and panel both know their corresponding object.

vb.net
Public Class OptionsPanelCollectionEditor Inherits System.ComponentModel.Design.CollectionEditor Public Sub New(type As Type) MyBase.New(type) End Sub Protected Overrides Function CreateCollectionItemType() As System.Type

[code]....

So far so good, this all works fine. I can add Panels via the designer and when I do a new TreeNode appears in the TreeView. I can select this node and the panel becomes visible (comes to the front).Now, I am a little stuck. How do I implement child option panels? And more importantly: how do I let the user add child panels?The most logical choice I think is to let each OptionsPanel have a property (ChildPanels or something) that returns the child OptionsPanels for that panel. Once the user selects an OptionsPanel then, he can look in the property grid to find its ChildPanels property and add child panels to that.

There is a problem though: what would this property return? It must return a ControlCollection of some container (this is, I think, a requirement for the designer features to work, otherwise panels are not added to the Form.Designer.vb file). But there is no container. I cannot add them to the OptionsPanel itself, that would make no sense because the parent OptionsPanel has its own set of controls (the options itself...), there cannot be another (fully docked) Panel on top of those obviously.The container of the main OptionsView then? That is not an option either, its Controls collection holds ALL OptionsPanels, not just the children of the selected panel. I cannot 'select' only the right panels either, that would require me to return a new instance of ControlCollection, it would be impossible to return the actual ControlsCollection that holds merely a small selection of its controls.

View 5 Replies

Detecting Keypress Outside The Form?

Mar 17, 2009

I need to find out how to detect keypress's outside of my form

View 1 Replies

Getting KeyPress Without Form Focus?

Sep 29, 2009

I want to create a program that gets if the user has pressed a code, for example F8, but without the user having to have focus on the form. I want the program to start hidden, and while the user works normally (say browses the internet (Go Google Chrome)), he just presses F8 and the form shows up. So I ask, is there any way to get key presses outside the form? [code]

View 2 Replies

MDI Child Form List / Sub-Menu Options

Jan 19, 2012

As you can see from the screen shot I have managed to get MDI Parents / Child forms working, and managed there to be a menu option on the Parent form that displays all the Child forms opened at the time. What I was wondering, and as of yet through research haven't discovered, is there a way when the list of windows is created, if a user highlights any child in the list it opens a sub-menu from its name (eg. Rename Window, Center Window, etc).

View 4 Replies

MDI Child Form List / Sub-Menu Options?

Jun 23, 2012

MDI Child Form List / Sub-Menu Options

View 12 Replies

On Form Load Want To Provide User With 3 Options?

Nov 12, 2011

creating a simple pong type game. want to provide human user option to choose from "rookie , Veteran, Allstar" as CPU AI skill.

Q1 - currently on form load game starts (I do not want) I want to present list of options first. Player Skill Level *See above.

Q2 - Want to provide an option for who gets the ball first CPU or Human

Q3 - Want to choose "Game to #" the user can set as the first to score x points wins.

View 6 Replies

Saving Options With Tick Box When The Form Loads

Nov 24, 2009

how to code a form that has 2 text and a tick box. When the user selects the options he needs it keeps the options they selected when the form loads next time round once the user has closed it. My first thought was hold the options in a text file but glad to hear any further ideas on that.

View 1 Replies

How To Move The Windows Form On A Keypress

Sep 30, 2011

Dim en As Boolean = False
Private Sub ArrowKey(ByVal sender As Object, ByVal e As KeyEventArgs) Handles Me.KeyDown
If en = True Then

[code]....

View 1 Replies

Keypress - How To Use KeyDown Event In Form

Mar 10, 2011

I'm using VB.NET (2008) and .NET framework 3.5. In my application I've got an on screen button that, when pressed, sends "00" as the characters [via SendKeys.Send("00")]. I also have a keyboard that has a '00' key that sends "00", two zeros, when pressed. I'm picking up the keypress using the form's KeyDown event - it fires twice, once for each "0" and works whether the on-screen or keyboard '00' is pressed. There's also a singe '0' on-screen button and key on the keyboard that sends "0".

I want to be able to treat the "00" as a single event. I.E. in the KeyDown handler, if the character is a single zero "0", I would like to check the next character to see if it is also a zero "0". If it is then I can handle it appropriately, but also need to remove it (from the keyboard buffer?) so that it doesn't fire the second KeyDown event. If it's not a zero then it should be left to fire the next event in the normal fashion.

View 2 Replies

Or Keyword - Does Options = Options Or Does It Set RegexOptions.none

Feb 28, 2010

With the following piece of code

CODE:

The Or keyword is confusing me. So in the above example which variable gets set. Does options = options or does it set RegexOptions.none.

View 9 Replies

KeyPress Enter To Tab Muli-TextBox Form?

Jun 22, 2010

move the focus to the next TextBox (don't worry about the Case 38, 58 etc too much I).

My Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'(Unrelated code here)
AddHandler Form1.KeyDown, AddressOf EnterkeyHandler 'Would like to understand this better

[code]....

View 1 Replies

Interface And Graphics :: Making An Options / Preferences Popup Form

Jul 18, 2010

what I mean, every full-featured program has one. Tools > Options brings it up in Firefox. First off, I've looked for tutorials on making these and can't find them anywhere, does anybody have any links? Second, I'm making mine with a TreeView and panels. The problem is designing this thing with all of these overlapping panels! It's crazy. So, how do you easily make an options menu like Firefox where clicking on different tabs brings up different data options?

View 2 Replies

VS 2008 Stopping A Loop By Keypress When Form Isn't In Focus?

Aug 21, 2009

I have a loop that says this...

Do
If e.KeyCode = Keys.F4 Then
Exit Sub
Else

[code]....

My problem here is that what the loop does is click on another program, thus taking the focus off of mine, how would i be able to make my app see if I press the key even if the form isn't in focus?

View 3 Replies

Dynamic Form Buttons - Place Buttons On Each Form That Will Show The Next Available Options?

Sep 1, 2010

I have 7 Windows forms.The order of the forms is defined within a configuration file.I want to place buttons on each form that will show the next available options.The Next button will move the next form in the list.The Back button will move to the previous form in the list. The Finish button will execute the final piece of code.The Cancel button will exit the application.If the user is on the first form, then there is no Back button.If the user is on the last form, then there is no Next button, but there is a Finish button.

Example 1:

Form1 - Next, Cancel
Form3 - Next, Back, Cancel[code]....

View 2 Replies

VS 2005 Code To Make A Form Keypress Event For Escape?

Jul 4, 2009

What's the code to make a form keypress event for escape? I know that "If e.KeyChar = Chr(13) Then" is for the ENTER button. What's the code for the ESCAPE button?

View 22 Replies

Credits-style Scrolling Textbox And Form Detecting A Enter Keypress?

Mar 8, 2012

I have two issues. The first is that I want to make a textbox scrolling similar to how credits scroll. I don't want it to move on the form, just to scrolling the text down a line/pixel. I thought I could do it with the "Lines" element, but I'm not exactly sure how to execute it.

The other problem is with my flash screen. Right now I have it set so when a button is click, it goes onto the main form. I don't want to use the button but rather have it so if Enter is pressed at any time, it'll go to the main form. All the solutions I've tried to use involve the "e.Keycode" code, but for some reason its unavailable.

View 11 Replies

[2008] KeyPress - TextBox On My Form Can Only Accept Numbers 0-9, Backspace And '.' /without Quotes

Mar 10, 2009

I have a simple question regarding the KeyPress event. I'm trying to make it to where my TextBox on my form can only accept numbers 0-9, backspace and '.' /without quotes. I've successfully got it to accept numbers 0-9, accept backspace, I'm just wondering - what line do I add so that it can accept periods as well?

Here's my

Private Sub TextBox_KeyPress(ByVal sender As Object, ByVal e _
As System.Windows.Forms.KeyPressEventArgs) Handles _
TextBox.KeyPress

[CODE]...

View 4 Replies

Hypothetical Controls - Options Checked As Enabled In FrmConfig Effects - Controls (like Buttons/menu Options) Are Enabled In FrmMain

Nov 26, 2010

As i'm learning more and more about developing ive just got my head around creating classes and modules, i started wondering about something to do with configuration of applications where deployment is in a more diverse environment say in a company where different branches dont need access to all parts of a program, so i thought id throw the question out there in a basic sense and get some feedback. so i can go off and do some more reading and learning.

So the scenario in my head is like this.

So we have for arguments sake FrmConfig which is the master configuration form, then we have FrmMain which is the root menu our application general user interfaces with. So here based on what options are checked as enabled in FrmConfig effects what controls (like buttons/menu options) are enabled in FrmMain.

View 2 Replies

Master Details Table Upgrade In Form - Employee Table And Employee_Permission Options(Yes/No/Override/Never)

Dec 7, 2010

I am using Visual Studio 2010 and SQL Server 2008. I made one preject using Employee table and Employee_Permission Options(Yes/No/Override/Never). I want to both table in form detail view most using combo box. if I used Employee detail view and Employee_Permission Datagridview than its work fine to add/edit/update but if table Employee_permission I used detailview (all Combobox) than I can not add/edit/update records. I can add only employee but can not add record in employee_pemission. I have relationship with two table EmpID in both table Primery key with auto increase in Employee table.

View 1 Replies

Add The Menu Options That Appear?

Aug 26, 2010

I want to learn how to add the menu options that appear when you click your right mouse button.So far I have a normal menu strip control, rich text box control and I have added a ContextMenuStrip control.

I have not got a clue on how to set the properties for the contextmenustrip on the richtextbox control, so when the user clicks the right mouse button the contextmenustrip appears.

View 4 Replies

How To Go Through Different Options In Combobox

Aug 22, 2009

Ok lets say I have a combo box with like 3 options in.

Ex:
Combobox
Option 1
Option 2
Option 3

How could I make it so the timer like every 5 seconds it will change from option 1 and be highlighted to option 2? then after so long, to option 3? and loop this process?

View 1 Replies

Many Different Options - How To Display

Nov 21, 2010

I've got a project where each "person's profile" will have many options associated with them, they are broken into groups such as

"Hobbies"
"TV Shows"
"Dinners"

What I was going to do it tick each "group" that applies to each profile and show only the fields that apply to the user.I was going to display them on a panel or a tabpage but How would I show the user what panels need data entered? (there could be 3 or even 4) but would the panels 2-3(or 4) be hidden how would I promt the user to enter data.I don't like the "look and feel" of tabpages.

View 8 Replies

Options For Databases ?

Apr 29, 2010

Well my project will basically involve a database of the sports info of students in my school. It has to work with about 1000 profiles, each containing a personal info record (basically an address book) and a Sports Info record which has some simple information like what sport they do for winter and summer but it also has some records like "Training Info" which will contain a some 10 fields. It'll wind up something like an array of records of records of records.

One of the key points for assessment is that we employ search and sort functionality explicitly using algorithms that have been provided to us. Essentially we'll have to write up our own subs for binary searches and stuff like that.

Now this is group work and I was put in charge of making the database, one thing I'm unsure of is what I should use. Most of the other groups are using .txt files to store their databases as they've been told that these are easier than Access files. However their databases don't appear to be quite as complex as the one my group's planning. Another random titbit of info I heard was that using our own search functions to search an Access file would not only be slower than using the inbuilt ones (another random something gleaned from conversation) [does it have inbuilt search functions?? I heard somewhere else it didn't] but also that it'd be slower than searching a .txt file with a similar sub.

I'm not sure of the veracity of those statements, however I still want to ask if you guys have any recommendations for what I should use to make the database with. The only ones I know of are CSV text files and MS Access, I'd be very grateful if you could point me in the of a good "thing" to use with VB.net for this kind of project.

View 2 Replies

Print Options In .net?

Aug 31, 2009

I want to know what are the possible ways to print the data using vb.net?

View 8 Replies

Using My.settings As Options?

Apr 6, 2012

I'm working alot with dates(more specificly the monthcalendar), and for the user's options I have a few features.I'm having some difficulty with letting the user choose their language. For the language I'm using CultureInfo(String), which I have copied and pasted the 2nd and 3rd column from the NLS API into a combobox.Is there anyway I can speed up language option.

View 1 Replies

Dgv And Various Other User Selected Options?

Mar 16, 2012

Just wondering if it possible to save a form. I have a form with dgv and various other user selected options.

Is there a way to save this form on closing so that it will open again exactly as it was closed?

View 1 Replies

Allow To Search For Data Via Two Different Options?

May 19, 2011

I need to create a program that will allow you to search for data via two different options. When radio button one is selected I need it to change the items in combobox to display dataset1 and when one of them is selected to show the corresponding array value. and two radio buttons to change between either searching by first set of data, or their corresponding values set two. and then display the value thats not being searched. like is you search by name it displayes age and if you search by age it displays name

Dim StatesInfo(,,) As String = New String(,,) {{"Alaska""AK"}, _
{"Alabama", "AL"}, _
{"Arkansas", "AR"}, _

[Code]....

thats all i have i cant find anything on the internet about this that makes sense, also it gives me an error Error1Array initializer has too few dimensions.

View 3 Replies

Display A Mesgbox With To Options?

Feb 1, 2010

Im displaying a msgbox with a question in it. Instead of displaying a msgbox yes/no, is it possible to display a mesgbox with my to options?EG. Open with firefox or IE ?Msgbox options: "Firefox" & "IE" , instead of yes/no ?

View 3 Replies







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