0
votes
3answers
50 views
Remove specified text from beginning of lines only if present (C#)
I have a textbox in which the user can edit text, in a scripting language. I've figured out how to let the user comment out lines in one click, but can't seem to figure out how to …
1
vote
2answers
30 views
Multilingual TextBox-Winforms C#
I need to display Korean and Arabic characters in TextBox. Following code is working fine for Arabic but not for Korean.
Any sugeestion will be helpful?
private void PrintArabi …
0
votes
4answers
86 views
RESOLVED: Puting textboxes in to a TextBox[] array
im trying to create a loop to avoid copy pasting these lines 30 times.
the names is
sum1 to sum30
br1txt1 to br30txt1
br1txt2 to br30txt2
// decimal sum30 = decimal.Parse(b …
0
votes
1answer
27 views
ASP.NET with VB. ListBox adding and removing items
Hiya i'm creating a web form and i want a user to be able to make certain selections and then add the selections to a text box or listbox.
Basically i want them to be able to type …
0
votes
4answers
48 views
Validate date textbox
I'm using the following code to check if a valid date has been typed into a textbox:
public bool ValidateDate(Control ctrl)
{
if (!string.IsNullOrEmpty(ctrl.Text))
{
…
1
vote
2answers
47 views
Databinding Textbox to Form.Text (title) in C# (winforms)
I'm trying to bind a Textbox.Text to Form.Text (which sets the title of the form).
The binding itself works. But, the title isn't updated until I move the entire form.
How can I a …
0
votes
4answers
30 views
PHP web-textbox syntax highlighting
I'm looking for a solution where users can copy/paste PHP code into a textbox and it will be highlighted like it is inside an IDE. (Like stackoverflow does when you paste a code sn …
2
votes
2answers
83 views
Auto-scrolling text box uses more memory than expected (C#, .NET v3.5)
I have an application that logs messages to the screen using a TextBox. The update function uses some Win32 functions to ensure that the box automatically scrolls to the end unless …
0
votes
3answers
25 views
Opacity of Buttons/TextBoxes - VB.NET
Hey everyone,
Is it possible for me to set the opacity of a button or textbox? I know that you can set the opacity for a form, but I'm not so sure about a button or textbox.
Tha …
0
votes
2answers
34 views
WPF TextBox Height Equals Parent Height minus 50 pixels?
I'm successfully getting a TextBox to resize with a parent Border height but I need the TextBox to actually be 50 pixels smaller in height than the parent Border.
Any ideas how to …
3
votes
4answers
57 views
VB: Allowing Only Numbers (not Letters) To Be Entered Into Textbox
I have a textbox which controls the interval of a Timer control. How do I filter out letters? Is it possible to restrict entry to numbers only (like if you enter a letter or a spac …
1
vote
2answers
43 views
How can I handle click event to Web readonly TextBox in c#
How can I handle click event to Web readonly TextBox in c#
1
vote
1answer
20 views
Silverlight Textbox
I have a textbox which has a very long url inside of it. What I would like to do is, when the user hits the home button I would like the cursor to go to the beginning of the textb …
0
votes
2answers
31 views
How can I set Regular Expression on TextBox?
How can I set a regular expression on WPF TextBox?
I want the textbox to accept input in some predefined format.
Is it possible?
0
votes
2answers
27 views
WPF: simple TextBox data binding
I have this class:
public partial class Window1 : Window
{
public String Name2;
public Window1()
{
InitializeComponent();
Name2 = new String('a', 5);
myGrid.Da …
