P
pololotsrus
prompt1 = "Thank You"
prompt = "Would you like to be placed in a mailing list?"
title = "Question"
buttons = vbYesNo
list = MsgBox("Would you like to be placed in a mailing list?",
vbYesNo, "Question")
If (txtcustomer.Text <> "") And (txtdestination.Text <> "") And
(txttickets.Text <> "") Then
Open "Mailinglist.txt" For Append As #1
Write #1, txtcustomer.Text, txtdestination.Text, txttickets.Text, list
Close #1
Can someone help me out I have no idea how i can add the response from
the msgbox to the mailinglist.txt file either saying yes or no
prompt = "Would you like to be placed in a mailing list?"
title = "Question"
buttons = vbYesNo
list = MsgBox("Would you like to be placed in a mailing list?",
vbYesNo, "Question")
If (txtcustomer.Text <> "") And (txtdestination.Text <> "") And
(txttickets.Text <> "") Then
Open "Mailinglist.txt" For Append As #1
Write #1, txtcustomer.Text, txtdestination.Text, txttickets.Text, list
Close #1
Can someone help me out I have no idea how i can add the response from
the msgbox to the mailinglist.txt file either saying yes or no