Questions tagged as 'textbox'

1
answer

Show HTML text in ASP TextBox?

I'm trying to show text formatted in HTML in a asp text box and I'm not able to. For example this formatted text: <font size="6">teste</font> , I would like that when I display this text in text box it i...
asked by 03.07.2015 / 00:51
0
answers

Binding in TextBox with DataGrid (WPF)

I have a TextBox where I get the client id and also have a DataGrid where it has some personal information. Well that's fine, what I can not do is connect the two in the following way: When I change the value of the TextBox (client id) changin...
asked by 21.05.2015 / 19:21
0
answers

Update with textbox and combobox

I'm not able to write my data when I write them in the textbox and when I choose the value in the combobox .. I do not understand what might be wrong, can you check it? Thank you Imports System.Data.OleDb Imports System.Data.SqlClient Public...
asked by 23.12.2014 / 12:32
1
answer

How to get the text of the line where the cursor is positioned?

I have a textbox, and I need to get the contents of the line where the cursor is positioned. For example, I'm in the third line of the textbox (cursor positioned on it), I'd like to get the contents of that line. Thanks in advance ...     
asked by 18.07.2016 / 02:05
3
answers

Get the name textview in loop repeat

How can I get the textbox inside a For: I have a For that runs 20 times and I have 20 textboxes on my screen, I would like to know how to get all textboxes containing name get the text and play in an array.     
asked by 05.02.2016 / 19:11
1
answer

Typing in the TextBox

I'm doing a project in visual studio and need help. I would like to know if you have how or how to do that when I type in the textbox, this that I typed in starts regardless of the position of the cursor or that it goes kinda deleting until you...
asked by 04.06.2016 / 01:36
2
answers

I can not call JavaScript function in textBox

I have the following java script function to format my date fields: function MascaraData(data){ if(mascaraInteiro(data)==false){ event.returnValue = false; } return formataCampo(data, '00/00/0000', event); } but I can not call th...
asked by 24.09.2014 / 19:04
1
answer

Run Event TextBox c # WPF

I have a Textbox and need to press the right button and click paste, it checks, tried several methods like TxtTexto.PreviewMouseLeftButtonDown+= new MouseButtonEventHandler(OnMouseClick); TxtTexto.MouseUp += new MouseButtonEventHandler(OnMouse...
asked by 05.10.2018 / 22:24
1
answer

How to get integer value from textbox and convert to integer? Javascript

I'm starting with Js on the technician and I'm trying to get the value of the textbox by document.getElementById and then do operations to return the value by alert but to no avail. Here is the code: <html> <head>...
asked by 01.11.2017 / 13:14
1
answer

Force a SqlDataReader result

I have the following method: public ClassCardapio MontaCardapioEdit(string periodo, int tipo) { ClassCardapio cardapio = new ClassCardapio(_stringconexao); _conexao.Open(); var sql = $"SELECT " +...
asked by 04.08.2017 / 14:17