Disable In Textbox Has Anything Else Besides Whole Positive Integers?
Jun 12, 2009
For the life of me, I cant seem to do this. In the textbox_textchanged method, I want Button to disable in textbox has anything else besides whole positive integers.If text box has positive integers, i want button1 to enable.
View 6 Replies
ADVERTISEMENT
Apr 25, 2012
The problem is simple: I have a form with textboxes, and in one of those textboxes, I want users to enter either a positive or negative 2-digit number. I'm looking for an easy way to enforce this restriction, i.e. without having to parse the number and check whether its absolute value is below 100.
[Code]...
View 2 Replies
Mar 20, 2010
I tried coding for an application that will display the positive integers, negative integers and zero entered in a inputBox. for some reason it keeps crashing down.here is my code. paging all visual basic professionals. [code]
View 6 Replies
Jun 22, 2011
I need to convert a negative integer to a positive one.
View 14 Replies
Feb 28, 2012
I have written a program that generates and prints 10 random integers from -10 to 10, my problem is that I am returning both negative and positive numbers, aligned right with a pad of 2, but the negative is on the right hand side of my number instead of the left. here is my code, all work but I need to align the numbers and have the correct notation of negative.
[Code]...
View 3 Replies
Apr 15, 2011
I have temp2 value -52340.0 and hslColor.Luminosity is 240.0 When Dim temp1 As Double = (hslColor.Luminosity - temp2). It shoud give -ve number but I am getting always positive number. results should nbe -52100, but I am getting +52100. How to handle this?
View 4 Replies
Sep 9, 2011
What would be the code to validate a textbox so that it can only accept positive numbers and a decimal point? If no value is entered, it automatically enters 0.
View 1 Replies
Jan 10, 2012
How to let textbox1 only enter positive whole numbers and positive decimal numbers
View 4 Replies
Feb 2, 2012
Basically I have and array of integers that vary in size. I need to compare each number to each other number and display which number is repeated. For example:
Dim ints() As Integer = {1,2,2,5,4,6}
The number that shows up more than once is 2.
How can I run through the array and compare each integer with the numbers in the array. I tried a for loop but it didn't return the value I was looking for.
View 3 Replies
May 26, 2010
I have to disable textbox in vb.net. It should be disabled such that no one can select the text from textbox but text in textbox must be visible...
View 4 Replies
Mar 18, 2010
How do I disable a textbox the second time? here is my code, In form load the textbox is disabled, unless the user will input an idnumber that is in the database. But what if the user will input an idnumber that is in the database then, input again another that is not,
That is where this code comes in, but it has problems, it doesnt disable the textbox in the event of a mouse click, what would be the proper way of doing this?
[Code]...
View 1 Replies
May 27, 2011
I want to disable | from bleeping... see attachment. The problem is the thing in the top left corner which indicates where in the text are you.
What is this thing called anyway?
View 1 Replies
Jul 20, 2010
I'm currently working on "transferring" my vb6 application to vb.net. I'm doing a complete rebuild from the ground up - which allows me to address issues that have arisen over the life of my vb6 application and I'm also learning .net as I work. My primary concern though, is that on one of my forms I display all the information about a customer (Name, Address, Notes, Phone Number, Assigned Salesman, etc.) in VB6, I put all the textboxes in a frame and disabled the frame so they boxes looked "normal", meaning there were still white with black text. In .net, if I add the textboxes to a
View 12 Replies
Apr 18, 2011
I am building a form and i want to prevent certain characters from being typed in a textbox? I want to disable the " and ' characters in some of my textboxes
View 4 Replies
Nov 9, 2011
I'm having a problem disabling the TextBox.ReadOnly attribute. Here is my code.
If (ListView1.EditItem IsNot item) Then
Else
If User.Identity.Name = "shinya" Then
[Code]....
but It's not working. I have placed the code in ListView1_DataBound event.
View 2 Replies
Apr 15, 2012
How to disable a textbox and combo box by coding not by changing their properties?
View 3 Replies
Nov 17, 2011
I've been searching on google for a long time and i can't seems to find a code that suits my need.
Heres my problem:
I want to disable all special characters excepted the dot(.) and the underscores(_).
Heres the code i used:
CODE:
Also, it doesnt allows me to erase my text with backspace if i ever do a mistake.
View 7 Replies
Nov 15, 2010
Possible Duplicate:if i type in textbox 1,3 then checkbox1 and checkbox3 will be disabled not checked !! i want to disable checkboxes according to textbox textFor example --- if i enter 1,4 in textbox then checkbox1 and checkbox4 will be disabled and even after that when i type 2,3 in textbox then checkbox2 and checkbox3 will be disabled and checkbox1 and checkbox4 will be enabled again ...Remember : i wanna use this coding with unlimited no. of checkboxes...How to do this ?The code mentioned below can checked according to textbox text --but i want to disabled ony not checked ....
Protected Sub TextChanged(ByVal sender As Object, ByVal e As EventArgs) Handles MyTextBox.TextChanged
Dim separator As Char = ","c
[code].....
View 1 Replies
Dec 26, 2009
How to disable to enter some letters (a,b,c,d...) in textbox? I want to can write just numbers and colon ( in textbox.
View 11 Replies
Oct 3, 2009
is there anyway to disable the menu that contains : Cut, Copy, Paste, etc, on a textbox, when you right click it?
View 4 Replies
Jul 25, 2010
I used textbox.leave so that when user leave the textbox, it will fire a function.
Under some cases, I would like to disable this textbox.leave event.
View 13 Replies
Sep 19, 2006
How do I disable that the user can't paste data into a textbox, and how do I disable the contextmenustrip of the textbox the one that always appears with the copy-paste options two.
View 10 Replies
May 15, 2012
I have set KeyPreview Property of the form to True and in the KeyDown event capturing the 'Enter' key to navigate to the next control on the form (using Me.SelectNextControl). But for one particular textbox i dont wish to perform the form's keydown event instead i want that when the user keys ctrl+enter it should perform some particular task. I have noticed that when the keypreview is on the keydown event of the textbox isn't executing.. The following is the code i have used for textbox keydown
[Code]...
View 3 Replies
Dec 13, 2010
I'm quite new to VB.net (and VS 2008), so I'm afraid my question might be basic, but I'm not sure how to solve it.I have a winform with three textbox fields and a button. All textbox fields must be filled before the user can click the button to continue. To this end I would like to disable the button as long as there is at least one empty textbox.
If I had only one textbox field, it would be easy for me to do. In the Textbox1_Leave event I would check if Textbox1.Text is not empty and if so, set Button1.Enabled = True.But what should I do if I have three textboxes? Have three event handlers, one for each textbox? Or is there a way I'm not familiar with?
View 4 Replies
Dec 21, 2010
if booking closed column values is equal or more than textbox1 text then the book button in gridview will be disabled for each gridview item whose booking closed time is greater and equal to textbox1 time ..
How to do that ?
M using VS 2008 and vb
View 1 Replies
Mar 11, 2010
how to disable textbox when click on radiobutton using VB script on Visual Studio.Net 2005.currently i used this coding but it is not functioning.
Private sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
If RadioButton1.Checked Then
Me.textBox1.Visible = True
[code]....
View 5 Replies
Dec 24, 2010
i've read where you can disable the default context menu for a textbox. But what I neeed to do.. is remove the default and add my own context menu items... Thus far, i've not foudn a way yet
View 5 Replies
Oct 2, 2010
I have a text box set up so when someone presses enter it performs a function, how can I disable the "Ding" sound that the computer makes when someone presses enter?
View 7 Replies
Aug 6, 2010
Using winform w/vb.net.When I have form w/a textbox and one right-clicks on the textbox a context menu pops up w/copy/paste options. How do I disable this from poping up (I want to use the right-click for my one function)?
View 2 Replies
Jan 11, 2009
I have a textbox on my form and I am showing a contextmenustrip when the user right clicks on it. That all works but the only problem is the copy,paste,cut etc menu is appearing above it. How can I disable the copy,paste and cut menu from appearing?
View 1 Replies