No announcements
Found 1203748 threads
-
0 Votes
formating textbox databinding text
TextBox4.DataBindings.Add(QDatebinding) AddHandler TextBox4.DataBindings(0).Format, AddressOf Me.FormatDate Private Sub FormatDate(ByVal ...Answered | 4 Replies | 1616 Views | Created by AndyNakamura - Friday, May 27, 2016 12:35 PM | Last reply by AndyNakamura - Friday, May 27, 2016 3:17 PM -
11 Votes
Formatting a textbox for currency
(when the textbox has a databinding of course) Thank you so much!Answered | 16 Replies | 99316 Views | Created by JonM - Tuesday, November 15, 2005 12:51 AM | Last reply by blind_skwirl - Wednesday, April 4, 2018 3:22 PM -
0 Votes
Formatting textboxes
You can do the job in the advanced databinding properties of each field !!!!Answered | 5 Replies | 3224 Views | Created by PSAKSor - Friday, December 12, 2008 1:26 PM | Last reply by PSAKSor - Tuesday, December 16, 2008 10:45 AM -
1 Votes
Display text in currency format in Bound TextBox
:) Select the TextBox in the form.Answered | 3 Replies | 7736 Views | Created by Robert Valentine - Tuesday, March 24, 2015 1:17 AM | Last reply by Reed Kimble - Tuesday, March 24, 2015 3:10 AM -
3 Votes
How to format digits in textbox
Or go here: http://www.csharp-examples.net/string-format-double/ - you can find planty of various formats.Answered | 4 Replies | 8283 Views | Created by AlexAnB - Sunday, May 27, 2012 4:26 PM | Last reply by AlexAnB - Monday, May 28, 2012 7:12 AM -
0 Votes
saving a multiline textbox to a text format
i created a class Public Shared Sub saveTo_file(saveFileDialog1 As SaveFileDialog, tbx As TextBox) ...Answered | 6 Replies | 645 Views | Created by Big_Yusufff - Tuesday, February 21, 2017 11:08 PM | Last reply by Big_Yusufff - Friday, March 31, 2017 7:17 PM -
0 Votes
VB.Net Databinding Error with Textbox
The data you are putting in the textbox is failing validation, which is why it won't let you leave the box, however decimal and double types should both allow decimals.Answered | 2 Replies | 797 Views | Created by RashaadBryan246 - Thursday, October 1, 2015 1:17 PM | Last reply by Kareninstructor - Friday, October 2, 2015 1:20 AM -
0 Votes
Format TextBox Text
Hello, If using SQL-Server simply perform the formatting in the SELECT statement.Answered | 5 Replies | 392 Views | Created by LeKhanhVN - Wednesday, April 18, 2018 5:08 AM | Last reply by LeKhanhVN - Friday, April 27, 2018 6:30 AM -
0 Votes
Textbox format
This sample shows that you can use Binding to bind the TextBox!Answered | 2 Replies | 4926 Views | Created by DevNC - Tuesday, March 15, 2011 12:04 PM | Last reply by Neddy Ren - Thursday, March 17, 2011 3:07 AM -
0 Votes
Textbox goes blank after exiting - Linq2SQL and databinding to textbox
I hae a checkbox column (bit) that if I databind then I hae problems (like I can traerse the rows in the datagrid but the textboxes don't change to the row - ...Answered | 9 Replies | 4824 Views | Created by JamieC7 - Tuesday, June 7, 2011 10:38 PM | Last reply by JamieC7 - Tuesday, June 14, 2011 10:46 AM -
0 Votes
formatting numbers in wpf textbox
Hi, I am moving this thread from Base “Windows Forms Data Controls and Databinding" forum to the WPF forum, ...Answered | 3 Replies | 6167 Views | Created by alihijazi - Wednesday, October 6, 2010 1:02 PM | Last reply by Jing0 - Friday, October 8, 2010 9:16 AM -
1 Votes
Databinding string to textblocks text
After doing some more tests, I figured out that the textblock's text becomes the value of the string when I create the databinding, but does not change dynamically when the ...Answered | 2 Replies | 1847 Views | Created by WWtrain - Monday, September 3, 2012 5:28 PM | Last reply by SandorN - Monday, September 3, 2012 8:14 PM -
2 Votes
Textbox currency format.
If you bind to some source property of type double or decimal and want to display two decimals, you could specify StringFormat=f2: <TextBox Text="{Binding ...Answered | 4 Replies | 8465 Views | Created by Suraj Singh Rana - Sunday, February 23, 2014 6:24 PM | Last reply by RemyOuji - Sunday, April 7, 2019 10:28 PM -
7 Votes
how to format textbox to be like this format 0.00
The "Format" function that I have suggested previously works perfectly on any number if you put the same line in the "LostFocus" Property of the text box.Answered | 16 Replies | 11655 Views | Created by wael.shazly - Wednesday, June 1, 2011 3:31 PM | Last reply by Frank L. Smith - Thursday, June 2, 2011 2:01 PM -
5 Votes
Format values in a textbox
yes you can bind you textbox by doing it: after conected you can do it: TextBox.DataBindings.Add("Text", table, ...Answered | 6 Replies | 2854 Views | Created by johmolan - Sunday, August 9, 2009 11:45 PM | Last reply by Levi Domingos - Sunday, August 16, 2009 5:07 PM -
0 Votes
Inserting formatted text
> Its Powerpoint I need to insert formatted text into, both in text boxes and table cells which already contain text but with different ...Answered | 3 Replies | 705 Views | Created by Y a h y a - Friday, April 3, 2015 4:18 PM | Last reply by L.Hl - Thursday, April 9, 2015 1:33 AM -
0 Votes
how to lost focus from textbox using databinding
I used like this as u told ABitSmart <TextBox x:Name="tbName" Text="{Binding Path=Name, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" ...Answered | 7 Replies | 4466 Views | Created by Shrey Chouhan - Friday, March 6, 2009 5:24 AM | Last reply by Tao Liang - Tuesday, March 10, 2009 5:57 AM -
0 Votes
Bound Textbox Formatting
double click the TextBox in the designer at design-time, it will generate the method for you, put there a breakpoint in the generated method and see....Answered | 3 Replies | 3309 Views | Created by REvans611 - Saturday, September 6, 2008 2:30 PM | Last reply by Shimmy Weitzhandler - Monday, September 8, 2008 2:20 PM -
2 Votes
Store a Textbox Value in array format
A string is already an array, so it is simple 'Have some text in the textbox TextBox1.Text = ...Answered | 2 Replies | 843 Views | Created by DivisBalaji - Thursday, July 31, 2014 11:33 AM | Last reply by Crazypennie - Thursday, July 31, 2014 2:14 PM -
0 Votes
Special textbox format control
It is much more usual to format when an input field loses focus.Answered | 11 Replies | 1521 Views | Created by Bernd Riemke - Friday, April 12, 2013 7:36 AM | Last reply by Min Zhu - Monday, April 15, 2013 7:29 AM - Items 1 to 20 of 1203748 Next ›
No announcements