Quote Originally Posted by JBD2
Actually use this code instead:

VB Code:
  1. Private Sub Command1_Click()
  2. cd1.ShowSave
  3. On Error Resume Next
  4. Open cd1.FileName For Output As #1
  5.  Print #1, Text1.Text
  6. Close #1
  7. End Sub

So if cancel is pushed, then there isn't an error.
THANK YOU! This worked great. Is there a way I can set a default file format for the app to save to, since my wife is not technically-minded enough to remember? Also, for the "Open," and "Print" commands, Do I need an separate Common Dialog for each one? Thanks, again, Dennis