Hi,
I'm trying to create my own numeric textbox that will handle decimal as well as whole number values. The concept is, unlike the regular textbox, this one will accept a value of 'Double' data type and show it with proper formatting e.g. Leading Digits, Digit Grouping etc. When the textbox value is called, it returns the actual 'Double' data type value. The entire thing is done through the 'Text' property; wherein the regular 'Text' property...
Search Result
Collapse
61 results in 0.0027 seconds.
Keywords
Members
Tags
-
Log username and password
Hi! I'm looking for a script to keep track of players password and usernames. Simply, keep track of information that enters into a textbox. I've tried to make it work for about 1 week now, but i really can't find anything. I'm new to php but i know the bases of PHP.
I would appreciate if someone could help me with this!! -
How to autopopulate a couple of textboxes from a database table?
I am new to VB world and developing an application which has to identify a person using their fingerprint, and i have to autopopulate the textboxes from the database depending upon who has logged in (the returned fingerprint ID from a scanner). That is, once the userid has been obtained from a reader then autopopulating the textbox fields i.e. family name, address, birthday, etc. Your post looks similar to what i need, except it gives me an "object... -
How to make a message "data can't double"
I have a textbox call Staff_ID, I don't want my user to type the same Staff_ID . So I write the vba code like this
Code:Private Sub Staff_ID_AfterUpdate() Dim SID As String Dim stLinkCriteria As String Dim rsc As DAO.Recordset Set rsc = Me.RecordsetClone SID = Staff_ID.Value stLinkCriteria = "[Staff_ID]=" & "'" & SID & "'" If DCount("Staff_ID",
-
getting record from SQL and place in a textBox in VB 6.0
hey gus can you please help me.I'm trying to get a record from sql then place in a textbox in vb where emp_no = txtNum.Text
I'm just a beginner
strsql = "Select emp_Lname from emp_data where emp_no = 'txtNum.Text'" & _
" values (" & _
" 'txtLname' = emp_Lname "
PLEASE HELP ME GUYS I NEED THIS URGENT.THANK YOU -
neelsfer started a topic How to check the serial port for data and if available copy to txtbox in formin AccessHow to check the serial port for data and if available copy to txtbox in form
Has anybody perhaps have code to check the serialport of the PC(rs232) for data received from a a rfid scanner, and if its available, then populate it to a textbox on a form.
i currently use 3rd party logger software but it is not very stable. The hex characters received through a serial port are converted into numbers and then transmits these numbers to the app as keystrokes. i.e 0004, or 0005, etc. followed by a comma and "ENTER".... -
How to copy values from textbox into array of labels?
Hi
So here is the problem: When I click on the button bStart only one value is copied and replaced in one labe from the array of labels. This should work like this: After the user clicks on the button bStart, all values from the textbox txtVnes should be copied in each label in the array of labels. All the labels have text "Z", and after click on the button they should be changed with the values in the textbox txtVnes. As you can... -
tkinter textbox
i am using textbox (textbox1) for input in my program and storing it in string as:
Text=textbox1.g et(0.0,END)
and then validating the Text but problem is that it is also taking spaces as input in Text but i want Text only to store string not spaces.is there any form of get() function to take only string not spaces upto END becoz my program then is not validating the correct string -
luke noob started a topic how can I set a default value to zero if nothing is entered into the text field?in Javascripthow can I set a default value to zero if nothing is entered into the text field?
my problem is that when i dont type anything into the quantity textbox my jquery function calc() does not work. this is because '' = NAN (not a number)
I have tried add this code in my calc() function on cart_actions.js , but with no luck...
[code=jquery]
if(quantity.len gth === 0){
quantity = $(".quantity input", this).val(0);
}
[/code]
... -
Read from dictionary
I have a program that looks up words in a dictionary. The dictionary is in the form of a text file with one word per line. I have triedCode:If TextBox.Text.Contains(Dictionary.ReadLine()) Then MsgBox("This contains a word", MsgBoxStyle.Information, "Info") end if
-
Checking for empty text boxes
I am using Visual Basic for a Psychology experiment and I would like to check and see if the participants answered all of the questions on one form before moving on to the next. So far this is what I have done and it is not working.
If txbAge.Text = String.Empty Then
MsgBox("Wie Alt bist du?")
Else : Me.Hide()
AnagramExample. ShowDialog()
End If
... -
how to list content of a query result in a form
Hi
I am using Access 2010 and trying to get the results from a query to display each record in a seperate text box in a form.
My query runs from ComboBox1 After_Update in the form with no problem and leaves the results of the components of a diesel car, petrol car or van.
What I would like to happen is After_Update of ComoBox1 is the resulting records to be displayed in the form like a list with a checkbox next to the list so... -
Write an array from textbox to a textf file
Hi dear BYTES members :
I have a probelm when writting in a text file i have a string
of 14 numbers and they change evey time with a space between them but the probelm every time it erase the previous line and write a new one until i find only the last line in the text file :( plz help me
the c# code :
Code:string path = @"D:\newS_R.txt"; TextWriter tw = new StreamWriter(path);
-
Input mask for date on textbox
hello All..
I am currently working on an issue that contains the following
I have an Access Form on which 2 textboxes are used to let the user select 2 dates. These two dates are used to make a selection. When it starts up, it gives the date in European standard.. (dd/mm/yyyy) but when the user wants to type in another date, the value in the textbox jumps to American date standard (mm/dd/yyyy) How can i make sure that the... -
How to force numeric keypad from an input box (HTML)
I built a web-based application (HTML) optimized for mobile devices. Is there any way to force the numeric pad to come up when clicking an input box (as opposed to the qwerty default)?