[2008] Forbid To The User To Press The Combination Of Alt+F4?

Mar 10, 2009

I was wondering how to forbid to the user to press the combination of Alt+F4? or atleast if user presses Alt then MsgBox("...") so that the combination ruins...?

View 3 Replies


ADVERTISEMENT

VS 2008 - Calling Sub When User Press Enter On Textbox (Computer Beeps)

Nov 10, 2011

I may be doing this wrong but I want to call a sub when the user presses enter on a textbox. The sub then shows a window in dialog mode. When I close that window, the computer makes a ding sound. Why is that? Is there a better way for detecting enter being presses on a textbox and not getting that ding?

If e.KeyChar = vbCr Then
LookupItem()
End If

View 3 Replies

VS 2008 - Using Form2 To Display Informaitonal Messages Without Having The User To Press The OK Button?

Jan 2, 2010

I have an app that I'm using Form2 to display informaitonal messages without having the user to press the OK button. I DIM form2 as a new form as a global and then add a lable to it on the fly and then control it's appearance with a timer. This all works great providing the main form is being displayed however I can't make Form2 show up if the main form is minimized or hidden. I can get around this a bit by keeping the main form maximized but change it's Opacity to zero but once I do that I have no idea how to return the Opacity back to normal when I do want to see the form. Anyone have any ideas on how to make Form2 display if the main from is minimzed or how to control the Opacity of the main form so I can return things to normal? I was thinking that there might be something I could do with hovering over or clicking on the icon in the taskbar but I don't know what that event might be.

View 5 Replies

Combination Of Multiset And 5 Column Combination (Form Design Is Attached)?

Jul 14, 2011

[code]......

View 1 Replies

Forbid Implicit Conversion On Parameter?

Jul 21, 2011

I have 2 methods with the same name, with diferente signatures.

Public Sub Method1(ByVal Parameter1 as String, ByVal Parameter2 as Boolean)
Public Sub Method1(ByVal Parameter1 as Integer, Optional ByVal Parameter2 as Boolean = False, Optional ByVal Parameter3 as Boolean = False)

If I call Method1("My String Parameter", False) it will not give and error, it will try to convert the parameter to integer and use the overload.

Is there a way to forbid the implicit conversion in this specific method or in this specific parameter. For instance, I changed the second method name, but its not an elegant solution.

View 7 Replies

[2008] Keypress Backspace - Msgbox When User Press 'backspace' In The Textbox

Feb 28, 2009

I want to have a msgbox when user press 'backspace' in the textbox.

I wrote this:

Private Sub TextBox2_KeyPress(ByVal KeyAscii As Integer)

If KeyAscii = 8 Then
MsgBox("backspace")
End If

End Sub

Why it doesn't work?

View 6 Replies

While Press On User See Message - Sockets Msg

May 27, 2011

on Sockets msg problem see pic and source code edit it for me big

View 3 Replies

[2008] List All Possible Sums Of A Combination?

Nov 15, 2010

I'm trying to work out with visual basic. I need to calculate the probability of having a certain sum when randomly choosing 5 of 36 possible numbers. I already know all of the 36 possible numbers, and I know what the total number of possibilities is, I just need to write some code that will list all of the possible sums for me when you add any five of those thirty six numbers together. Ideally I would be able to also have it count how many of a certain sum occurred, but even if I could just have them as a list and I just count the instances, that would be fine too.

View 9 Replies

Changing Label Color When User Press K Key

Oct 22, 2009

I've got a program where I want something to happen when the user presses the 'k' key. I want my label to change colour.
vb.net
Private Sub k(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles MyBase.KeyPress
lbl_letter2.ForeColor = Color.Magenta
End Sub
Doesn't work.

View 12 Replies

VS 2008 : Produce Every Possible Combination Of The Letters In A Word?

Jun 24, 2010

I'm trying to produce every possible combination of the letters in a word, however I've been very unsuccessful at figuring this out.
I can't seem to grasp what I need to do to get this working, I've been at it for the last four hours or so.for example, the word "one" would produce: one, oen, eon, eno, noe, neo.

View 5 Replies

VS 2008 Generate A Random Number Combination?

Dec 11, 2009

I want to create a random number with the combination of the text entered in textbox. Suppose the textbox contains bharani. So now the random number generation is the first 3 letters from textbox and the random number from 1 to 1000. So my output must be "bha876"

View 7 Replies

VS 2008 Nested Arrays - Tore All Combination's Of The Numbers 1,2,3,4?

Apr 14, 2010

I'm working on a program and in it I need to store all combination's of the numbers 1,2,3,4. I would like each combination to be it's own array, and instead of creating 24 different arrays (there are 24 different combinations 1,2,3 and 4 can be arranged) I was wondering if it's possible to create a nested array like so:

[ [1,2,3,4], [1,2,4,3], [1,3,4,2], [1,3,2,4] .......]

That way, I'd be able to reference index 2 of the above array and have the array [1,3,4,2] returned.I looked into multidimensional arrays, but this would require me calling each index of the row and column.I also looked into making a Structure in which there was an array that could hold 4 numbers, but wasn't sure if going that method would be practical or not.

View 4 Replies

Allow User To Press Enter To Trigger Text Change Of Object?

Mar 29, 2009

I am trying to allow a user to press enter in a text box to trigger a text change of an object...
1. Say u put 2 in a text box called "Number" and
2. When you press enter,
3. Another object named and shaped as a book to change it's text, that u can see on the picture to "write"..
4. Originally the book will have the text "Start" on it

Do I changed the "number text box" enter event?
Private Sub xNumberTextBox_Enter(ByVal sender As Object,
ByVal e As System.EventArgs) Handles xNumberTextBox.Enter
Me.NumbertextBox.AcceptsReturn = True
end sub
Is what I have so far.....

View 2 Replies

Deleting Windows Temp Files When User Press Button

Aug 20, 2011

How To Make It So When You Press A Button, It Deletes Windows Temp Files.

View 1 Replies

Repeating Two Popup Input Boxes Until User Press Cancel?

Dec 2, 2010

Is there a way to repeat two popup input boxes (in succession) until the user presses cancel?
Dim hours As Integer
Dim letterGrade As String
Do
hours = InputBox("Total credit hours", "Total credit hours", )
letterGrade = InputBox("Letter Grade", "Letter Grade", )
Loop
The input boxes continue to repeat but when I hit cancel nothing happens... I'm sure I'm missing something to tell it when I cancel to go back to the MainForm I just don't know what it is.....

View 7 Replies

Stop A Threadpool When User Press Cancel Task Button?

Jul 20, 2011

Is there any direct way to stop a threadpool when user press Cancel Task button? I got SmartThreadPool but using that i could not arrange my code. Its becoming difficult.

Here is my simple code:

'Delegaet to update UI
Public Delegate Sub updateClassDelegate(ByVal index As Integer, ByVal status As String)

[Code].....

View 9 Replies

Create One Help File For Whole Application - Once User Press Help Button Next To Any Input Control

Aug 17, 2010

I want to create one help file for my whole application. and once user press help button next to any input control then appropriate help topic from file should get display. how can i create this functionality in vb.net?

View 1 Replies

Create A Shortcut For Program That Sends The User To The World Map Of A Website With The Press Of A Button?

Jun 7, 2011

I'm trying to create a shortcut for my program that sends the user to the world map of a website with the press of a button, but it isn't working. Here's my code:

Private Sub Game_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Game.KeyDown
If e.KeyCode = Keys.M Then
Game.Navigate("http:fallensword.com/index.php?cmd=world")
End If
End Sub

"Game" is a WebBrowser control.

View 4 Replies

Hangman Game - Generate Random Number When User Press Start Button

Jul 29, 2009

i've created a hangman game (Fully working) but since you can only "play" with one phrase (10 letters) it gets boring fast. Basic the current game works by on form load i define the slots (10 string which each hold a letter) and give them there letter. then the user type in a text box and if the textbox = any of the slots then the lbl repasenting that slots changes its text from "_" to the letter.

Anyway what I would like the button to do is when the user presses the start button a random number is generated. The program then looks into a textfile and based on which number is generated it takes a certain line (10 characters per line in a phrase) , moves them into the slots and the game starts. Is that possible to code or it too complicated. The textfile will be in the applications folder (words.txt).

View 6 Replies

[2008] Menu Strip - When A User Clicks On "Print" In The Menu Strip On The Keyboard Should Automatically Press "Ctrl+P"

Oct 25, 2008

I am totally new to VB and I'd like to know, for example, when a user clicks on "Print" in the menu strip on the keyboard should automatically press "Ctrl+P", because the original print dialog, and the WebBorwser print dialog is toootaly different.

View 11 Replies

Login When User Type Password And They Press Enter That Login Code Can Be Activate?

May 29, 2009

how can i login when user type password and they press enter that login code can be activiate. What event can be using for this, i m using button_click event. need textbox typed value and press enter it should be login to that next form.

View 1 Replies

User Type Password And Press "Enter" Without Click Log In Button ?

Aug 10, 2009

I've one form log in and 2 button in that form, log in and cancel. when user type user name and password,they must click log in button. I want when user type password and press "Enter" without click log in button.

View 3 Replies

Call A Routine When The User Press CTRL+Z Or Ctrl+somthing?

Jul 28, 2009

how do i call a routine when the user press CTRL+Z or ctrl+somthing?

View 10 Replies

Show Msgbox To The User When He Press "a" Key In The Keyboard?

Sep 8, 2010

is there any code to know when "a" key is pressed in the keyboard

exp. i want to show Msgbox to the user when he press "a" key in the keyboard ,how i can do that

also i need it to work when i minimize the form

View 11 Replies

Search Field, User Able To Press Enter To Search?

Oct 21, 2009

I have a search function in my app which is a groupbox with a textbox that contains the search keyword and a couple of radiobuttons. Do I have to create a keydown event for every single radiobutton and textbox? Or is there a better way? I tried making a keydown event for the groupbox but that didn't work.

If your interested, this is my

Private Sub Search()
Dim textBoxContents As String = txtBoxKeyword.Text
Dim keyword As String = Nothing

[code]....

View 2 Replies

VS 2008 Key Down Press?

Oct 20, 2009

how can i set it so when i enter text into textbox1 and textbox2 i can press the enter key rather than have to press the actual button ?

View 9 Replies

Get The User To Press The CTRL+"another Key"

Oct 18, 2011

I'd like to get the user to press the CTRL+"another key" and then do a specific method

View 1 Replies

VS 2008 If Press F1 A Msgbox Will Pop Up?

Jun 20, 2009

how can i make it so if i press f1 a msgbox will pop up?

View 7 Replies

VS 2008 : Disable Key Press Procedure?

Jul 6, 2009

I have some code that executes in several keydown procedures.Trouble is, how do I keep these procedures from running?

Private Sub Form1_KeyUp1(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyUp
If e.KeyCode = Keys.D1 Then
PictureBox1.Visible = False

[code]....

When I'm elsewhere in the program (it has different "modes" when operating), I DON'T want lowbit0 true.How do I ignore these subs in code? Also -- from what I've seen, you can only use the key events from within a procedure?Like If KEYX.event = true then do this?

View 5 Replies

VS 2008 Key Press On Image Button?

Apr 21, 2009

I have a simple application launcher, where each button has a picture on it.

Is there a way to set an accelerator key, in VB (as you can't do it any other way) for each button.

Also, can you set it so that you don't have to press alt first?

View 2 Replies







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