help to in yes/no data type

mazen911

Registered User.
Local time
Yesterday, 23:25
Joined
Oct 9, 2012
Messages
12
hi guys
i am new here and i am doing access file
i am doing yes/no option in data type in one field type but want to
when i chose yes it show next 2 fields and if i chose no the next 2 fields do not appear
i am still new in access
help in simple way please
thanks
 
Tables have fields and are used to store data.
To view and/or edit that data you should use a form. So, create a form that is bound to the table. Create a control (like a textbox or checkbox) for each of the tables fields. These controls can be bound to the tables fields by setting their Control Source property.
Use code in the forms On Current event and the After Update event of the checkbox to set the Visible property of each textbox.

Post back if you have questions or would like a simple example.
 
thanks alot i already have form for that
i have field as question and the answer is no or yes or unknown
i want when i choose yes only the next two field appear
how can i do that by steps
 
thanks so much that what exactly i want
but forgive me i can not write the code my self ,,specially the format of command
when i write if what shall i write after it??/the field name or what

thanks i hope get video or steps to start write codes
thanks in advance
 
thanks i can do it,,,,,but when i try make this code in same form for another field
it change that code i do for previous filed so how to make code for each field
 
that my code which work in my form
Private Function fnShowTextBoxes() As Boolean
If Prior_thrombolysis_ = "Yes" Then
Prior_thrombolysis_Date___Time.Visible = True
Percutaneous_Coronary_intervention_Date__Time.Visible = True
Else
Prior_thrombolysis_Date___Time.Visible = False
Percutaneous_Coronary_intervention_Date__Time.Visible = False
End If
End Function
Private Sub Form_Current()
fnShowTextBoxes
End Sub

Private Sub Prior_thrombolysis__AfterUpdate()
fnShowTextBoxes
End Sub


and i want to make that function for another field
 
If you want to switch the visibility of a third textbox, try:
Code:
Private Function fnShowTextBoxes() As Boolean
If Prior_thrombolysis_ = "Yes" Then
  Prior_thrombolysis_Date___Time.Visible = True
  Percutaneous_Coronary_intervention_Date__Time.Visi ble = True
  [B][COLOR=red]NameOfTexbox.Visible = True[/COLOR][/B]
Else
  Prior_thrombolysis_Date___Time.Visible = False
  Percutaneous_Coronary_intervention_Date__Time.Visi ble = False
  [B][COLOR=#ff0000]NameOfTexbox.Visible = False[/COLOR][/B]
End If
End Function
 
Private Sub Form_Current()
  fnShowTextBoxes
End Sub
 
Private Sub Prior_thrombolysis__AfterUpdate()
  fnShowTextBoxes
End Sub
 
i am really thankful for you in that help
but

i mean that want do a new if function for a new field in same form
not to apply for third box
 
Forms do not have fields. They have controls that are often bound to a field in the forms Record Source.

So,
1)What is the name of the control (I'm guessing that this is a textbox) that is to be shown/hidden?
2)What is the name of the control that will determine if the control is shown or hidden?
3)What value will hide it and what value will show it?
 
ok what i did is to edit my form and click my combo box to show property sheet and click event in after-update i write my code which make the others textbox hide and show

what i need now is to do that for another comobox in same form which called stent thrombosis

how can i?
 
what i need now is to do that for another comobox in same form which called stent thrombosis
1)Is "stent thrombosis" the name of the combo box?
2)What needs ro be selected in the combo box to make the other text boxes visible?
3)What are the names of the text boxes that are to be hidden/visible?
 
ok
yes combobox is stent thrombosis
yes is selected in stent thrombosis to show others but else to hide
name of textbox to show or hide is stent thrombosis date
thanks my dear friend
 
Copy and paste the code below:
Code:
Private Function fnShowStentTextBoxes() As Boolean
  If Prior_thrombolysis_ = "Yes" Then
    stent_thrombosis_date.Visible = True 
  Else
    stent_thrombosis_date.Visible = False
  End If
End Function
 
Private Sub stent_thrombosis_AfterUpdate()
  'This runs when "stent_thrombosis" is updated
  fnShowStentTextBoxes
End Sub

Add the line in red to your existing code:
Code:
Private Sub Form_Current()
  'runs these functions each time the record shown on the form changes
  fnShowTextBoxes 
  [B][COLOR=red]fnShowStentTextBoxes[/COLOR][/B]
End Sub
 

Users who are viewing this thread

Back
Top Bottom