R
raylopez99
I've been able to get data for one textbox from a bound control but
not an unbound control (except by using global variables as per the
below). What am I missing?
Keeps returning a Null value, see the below.
RL
PS--Baz, if you're reading this, don't bother replying--you're fired.
Your boss speaking.
Private Sub Text19_Click() 'I want to get information from Textbox1
(unbound) from textbox Text19
Dim Str04 As String
Textbox1.SetFocus 'textbox must have focus to get value or .Text
property
If Me.Textbox1.Text <> Null Then
Str04 = Me.Textbox1.Text 'Never is triggered! Even if I type stuff in
Textbox1, it's always Null here
Else
Str04 = GlobalString + "GlobalStringNotSetFocus!" '<--Else statement
always triggered--i.e., Global Variable
End If
Text19.SetFocus
Text19.Text = Str04
End Sub
'''''''''''''''''''''
FROM THE HELP STUFF:
SetFocus Method
See AlsoApplies ToExampleSpecificsThe SetFocus method moves the focus
to the specified form, the specified control on the active form, or
the specified field on the active datasheet.
expression.SetFocus
expression Required. An expression that returns one of the objects
in the Applies To list.
Remarks
You can use the SetFocus method when you want a particular field or
control to have the focus so that all user input is directed to this
object.
In order to read some of the properties of a control, you need to
ensure that the control has the focus. For example, a text box must
have the focus before you can read its Text property.
Other properties can be set only when a control doesn't have the
focus. For example, you can't set a control's Visible or Enabled
properties to False (0) when that control has the focus.
You can also use the SetFocus method to navigate in a form according
to certain conditions. For example, if the user selects Not applicable
for the first of a set of questions on a form that's a questionnaire,
your Visual Basic code might then automatically skip the questions in
that set and move the focus to the first control in the next set of
questions.
You can move the focus only to a visible control or form. A form and
controls on a form aren't visible until the form's Load event has
finished. Therefore, if you use the SetFocus method in a form's Load
event to move the focus to that form, you must use the Repaint method
before the SetFocus method.
You can't move the focus to a control if its Enabled property is set
to False. You must set a control's Enabled property to True (-1)
before you can move the focus to that control. You can, however, move
the focus to a control if its Locked property is set to True.
If a form contains controls for which the Enabled property is set to
True, you can't move the focus to the form itself. You can only move
the focus to controls on the form. In this case, if you try to use
SetFocus to move the focus to a form, the focus is set to the control
on the form that last received the focus.
Tip
You can use the SetFocus method to move the focus to a subform, which
is a type of control. You can also move the focus to a control on a
subform by using the SetFocus method twice, moving the focus first to
the subform and then to the control on the subform.
Example
The following example uses the SetFocus method to move the focus to an
EmployeeID text box on an Employees form:
Forms!Employees!EmployeeID.SetFocus
not an unbound control (except by using global variables as per the
below). What am I missing?
Keeps returning a Null value, see the below.
RL
PS--Baz, if you're reading this, don't bother replying--you're fired.
Your boss speaking.
Private Sub Text19_Click() 'I want to get information from Textbox1
(unbound) from textbox Text19
Dim Str04 As String
Textbox1.SetFocus 'textbox must have focus to get value or .Text
property
If Me.Textbox1.Text <> Null Then
Str04 = Me.Textbox1.Text 'Never is triggered! Even if I type stuff in
Textbox1, it's always Null here
Else
Str04 = GlobalString + "GlobalStringNotSetFocus!" '<--Else statement
always triggered--i.e., Global Variable
End If
Text19.SetFocus
Text19.Text = Str04
End Sub
'''''''''''''''''''''
FROM THE HELP STUFF:
SetFocus Method
See AlsoApplies ToExampleSpecificsThe SetFocus method moves the focus
to the specified form, the specified control on the active form, or
the specified field on the active datasheet.
expression.SetFocus
expression Required. An expression that returns one of the objects
in the Applies To list.
Remarks
You can use the SetFocus method when you want a particular field or
control to have the focus so that all user input is directed to this
object.
In order to read some of the properties of a control, you need to
ensure that the control has the focus. For example, a text box must
have the focus before you can read its Text property.
Other properties can be set only when a control doesn't have the
focus. For example, you can't set a control's Visible or Enabled
properties to False (0) when that control has the focus.
You can also use the SetFocus method to navigate in a form according
to certain conditions. For example, if the user selects Not applicable
for the first of a set of questions on a form that's a questionnaire,
your Visual Basic code might then automatically skip the questions in
that set and move the focus to the first control in the next set of
questions.
You can move the focus only to a visible control or form. A form and
controls on a form aren't visible until the form's Load event has
finished. Therefore, if you use the SetFocus method in a form's Load
event to move the focus to that form, you must use the Repaint method
before the SetFocus method.
You can't move the focus to a control if its Enabled property is set
to False. You must set a control's Enabled property to True (-1)
before you can move the focus to that control. You can, however, move
the focus to a control if its Locked property is set to True.
If a form contains controls for which the Enabled property is set to
True, you can't move the focus to the form itself. You can only move
the focus to controls on the form. In this case, if you try to use
SetFocus to move the focus to a form, the focus is set to the control
on the form that last received the focus.
Tip
You can use the SetFocus method to move the focus to a subform, which
is a type of control. You can also move the focus to a control on a
subform by using the SetFocus method twice, moving the focus first to
the subform and then to the control on the subform.
Example
The following example uses the SetFocus method to move the focus to an
EmployeeID text box on an Employees form:
Forms!Employees!EmployeeID.SetFocus