inputbox Questions
3
Solved
Quick question:
I'm using a Microsoft.VisualBasic.Interaction.InputBox in my C# code to allow users to add websites to a list, but I don't want them to enter an empty string so I give an error pop...
6
Solved
Inputbox:
answer:=Inputbox('a','b','c');
works good, but I'm looking for a masked one, like a password box where you only see little stars instead of the typed characters.
6
Solved
I have the following piece of code:
dim selectRange as Range
Set selectRange = Application.InputBox("Select your range", "Hello", , , , , , 8)
When a user chooses Cancel the InputBox prompt, it ...
Luncheonette asked 26/10, 2013 at 17:10
4
I am trying to create function that will look at the username if it is not valid send an alert to the user, clear the username field, and put the username field back into focus. I am trying to do t...
Flow asked 13/10, 2014 at 23:54
8
Solved
My goal is to simply use a pop-up box to ask the user for an input. I've searched around quite a bit and pretty much all the results say that creating a messageBox is really easy:
MessageBox (NULL...
2
I am trying to make an Excel Macro that asks for a day and then inserts it into the next open cell. here is the code I am trying to use.
Sub Button7_Click()
Dim AddName As String
AddName = Input...
3
Solved
The current function I use to collect text InputBox can't accept more than 255 characters apparently, and I need to be able to collect more than that? Is there a parameter or different function I c...
2
I'm trying to create a custom component (directive) which is composed of an <input> box and a [-] and [+] buttons. Currently, the example below only implements the input box.
So, say I have ...
Sneaky asked 11/8, 2015 at 17:22
1
I think I have a fairly simple question. I'm looking for a method to get the hwnd for an excel input box. I'm automating a process and I'm noticing that a type 8 input box is consistently underneat...
3
I read so many answers to my problem but somehow if I try to "mimic" what I see, I still am not able to do what I need.
The problem is very simple: fill an inputbox on an opened IE page.
Result: ...
Idiomorphic asked 15/12, 2014 at 12:17
1
Let's say I have the following code
.username {
font-size: 30px;
padding-top: 8px;
padding-bottom: 8px;
border: 2px solid #E0E0E0;
}
<input class="username" type="text" />
...
2
I'm going to try and get this across as clearly as I can.
I need an input box to read an integer, for example "12345" and turn it into a money format, example: $123.45. This needs to take place wh...
Legislator asked 16/10, 2012 at 11:42
3
Solved
I'm trying to add non-editable text after the cursor in a text field/input box as to achieve the following:
1) The text before the cursor is editable
2) The text after the cursor is not editable a...
Ceremonious asked 8/9, 2014 at 20:16
4
Solved
Can I reduce the textbox width without using classes?
<input type="text" maxlength="5" style="3px"/>
14
Solved
I have an absolutely positioned input box in a form. The input box has transparent background:
.form-page input[type="text"] {
border: none;
background-color: transparent;
/* Other stuff: font-...
Suzettesuzi asked 20/1, 2010 at 2:39
1
Chrome recently updated its input element styles. I really like the number input type, but their new style gives us rounded buttons that don't fit neatly into square input boxes.
I've put in...
Uwton asked 21/1, 2014 at 19:4
3
Solved
using Microsoft.VisualBasic;
Microsoft.VisualBasic.Interaction.InputBox("Favourite RPG?", "Game", "Cool!");
So what this does is basically ask the user their favourite RPG. Then it displays the ...
1
Solved
I have been using the standard password textbox written by Daniel Klann (http://www.ozgrid.com/forum/showthread.php?t=72794) to hide the password inputs.
The main problem is that the standard Inp...
2
Solved
Say I have an input box with default text "name" in it. I would like for the user to click the box, the text stays in the box until the user starts to type.
I am not looking for code to clear the...
2
Solved
I'm building a VB application that accepts numbers in the beginning. I want to be able to exit if the user presses the cancel button in any of the input boxes.
The code is :
Private Sub Command1_...
2
Solved
I know i shouldnt do it but it may be easier then explaining to the clients that you should do it through the browser. They have a public computer and a server running on the machine in an admin ac...
Crusade asked 16/9, 2010 at 20:39
2
Solved
I need a quick text input dialog box (MessageBox with a single text box in it). Is there any control available or should I use a form?
I just want user to enter some ID. And in other occasion I wa...
Subassembly asked 29/10, 2009 at 13:55
1
© 2022 - 2024 — McMap. All rights reserved.