|
-
Jul 30th, 2003, 01:21 PM
#1
Thread Starter
Addicted Member
New To VBA...Pls Help
Hello, I am wanting to sent the appointment item to a folder if the user has checked a check box. Could someone pls give me an example.
Code:
Function Item_Write()
If chkPublish.Value = True Then
' Not sure what goest here...
End If
End Function
Thanks
-
Jul 31st, 2003, 03:49 AM
#2
Is this what you're after?
Code:
FileCopy "C:\FileName.txt", App.Path & "\FileName.txt"
MsgBox "File Copied"
-
Aug 5th, 2003, 07:12 AM
#3
Fanatic Member
Re: New To VBA...Pls Help
Originally posted by mpSmooth
Hello, I am wanting to sent the appointment item to a folder if the user has checked a check box. Could someone pls give me an example.
VB Code:
Function Item_Write()
If chkPublish.Value = True Then
' Not sure what goest here...
End If
End Function
- Is This Access or Excel?
- Would a Public Sub WriteIt() be better or do you need to pass a message back?
- What are you useing to track the different (records?) things...??
Last edited by Matt_T_hat; Aug 5th, 2003 at 07:16 AM.
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
|