|
-
Oct 9th, 2006, 04:55 AM
#6
Frenzied Member
Re: save text
 Originally Posted by om-yousif
 Yes  gavio it's working thanks
what about opening and loading the two texts 
should work for opening.. i dun have vb to test though
On Error GoTo out
With CommonDialog1
.CancelError = True
.Filter = "Text files (*.txt)|*.txt"
.DialogTitle = "Open the file..."
.ShowOpen
If .FileName <> "" Then
RichTextBox1.LoadFile .FileName, rtfText
End If
End With
Exit Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|