Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to format a textbox and I'm using to following code:
Private Sub TextBox1_Change TextBox1.Value = Format (TextBox1.Value, "###0") End Sub But nothing happens......Any ideas? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Shouldn't that be
Private Sub TextBox1_Change() TextBox1.Value = Format(TextBox1.Value, "#,##0") End Sub -- HTH Bob "Pas" wrote in message ... I am trying to format a textbox and I'm using to following code: Private Sub TextBox1_Change TextBox1.Value = Format (TextBox1.Value, "###0") End Sub But nothing happens......Any ideas? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks guys, but I get a message as follows:
Can't find project or library. with Format highlighted "Bob Phillips" wrote: Shouldn't that be Private Sub TextBox1_Change() TextBox1.Value = Format(TextBox1.Value, "#,##0") End Sub -- HTH Bob "Pas" wrote in message ... I am trying to format a textbox and I'm using to following code: Private Sub TextBox1_Change TextBox1.Value = Format (TextBox1.Value, "###0") End Sub But nothing happens......Any ideas? . |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is built into excel's VBA. It should not cause an error.
So if you're getting an error message on that statement, it usually means that you have an invalid reference in that workbook's project. Open excel and your workbook Open the VBE and select your workbook's project. Then click on: Tools|References Look for MISSING reference. Uncheck that missing reference. The missing reference may not (usually doesn't) have anything to do with the line that caused the error. Pas wrote: Thanks guys, but I get a message as follows: Can't find project or library. with Format highlighted "Bob Phillips" wrote: Shouldn't that be Private Sub TextBox1_Change() TextBox1.Value = Format(TextBox1.Value, "#,##0") End Sub -- HTH Bob "Pas" wrote in message ... I am trying to format a textbox and I'm using to following code: Private Sub TextBox1_Change TextBox1.Value = Format (TextBox1.Value, "###0") End Sub But nothing happens......Any ideas? . -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Dave that works well now.
"Dave Peterson" wrote: This is built into excel's VBA. It should not cause an error. So if you're getting an error message on that statement, it usually means that you have an invalid reference in that workbook's project. Open excel and your workbook Open the VBE and select your workbook's project. Then click on: Tools|References Look for MISSING reference. Uncheck that missing reference. The missing reference may not (usually doesn't) have anything to do with the line that caused the error. Pas wrote: Thanks guys, but I get a message as follows: Can't find project or library. with Format highlighted "Bob Phillips" wrote: Shouldn't that be Private Sub TextBox1_Change() TextBox1.Value = Format(TextBox1.Value, "#,##0") End Sub -- HTH Bob "Pas" wrote in message ... I am trying to format a textbox and I'm using to following code: Private Sub TextBox1_Change TextBox1.Value = Format (TextBox1.Value, "###0") End Sub But nothing happens......Any ideas? . -- Dave Peterson . |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If your textbox contains 35, the following:
Sub dural() Dim i As Integer, s As String ActiveSheet.Shapes("Text Box 1").Select With Selection.Characters s = Selection.Characters.Text i = CInt(s) s = Format(i, "xxx0") .Text = s End With End Sub will update to: xxx35 -- Gary''s Student - gsnu201001 "Pas" wrote: I am trying to format a textbox and I'm using to following code: Private Sub TextBox1_Change TextBox1.Value = Format (TextBox1.Value, "###0") End Sub But nothing happens......Any ideas? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to format text in textbox? | Excel Discussion (Misc queries) | |||
TextBox format? | Excel Discussion (Misc queries) | |||
Textbox date format. | Excel Discussion (Misc queries) | |||
TextBox Format | Excel Discussion (Misc queries) | |||
Format numbers in Textbox | Excel Discussion (Misc queries) |