A
Altemir
There must be a simple way of doing this ...
I have a field on my form that holds an integer-valued variable. I
want to use that integer variable to control how many times a character
is repeated in an unbound text box.
For example, using iCount as a variable and using a period as the
character to repeat,
If iCount = 1 then Text Box Value = "."
If iCount = 2 then Text Box Value = ".."
If iCount = 3 then Text Box Value = "..."
If iCount = 4 then Text Box Value = "...."
.... and so on ...
This is a countinous form, so I think that I need to put something
clever in the Control Source property, but I'm not sure what.
Any suggestions?
-- David
I have a field on my form that holds an integer-valued variable. I
want to use that integer variable to control how many times a character
is repeated in an unbound text box.
For example, using iCount as a variable and using a period as the
character to repeat,
If iCount = 1 then Text Box Value = "."
If iCount = 2 then Text Box Value = ".."
If iCount = 3 then Text Box Value = "..."
If iCount = 4 then Text Box Value = "...."
.... and so on ...
This is a countinous form, so I think that I need to put something
clever in the Control Source property, but I'm not sure what.
Any suggestions?
-- David