Created
March 10, 2013 17:48
-
-
Save facebookegypt/5129629 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Private Sub Timg_Click() | |
| 'When clicking on the Timg control, | |
| 'Chat box appears to pic a photo | |
| Cdl.Filter = ("Jpeg Jpg Photo Type (*.Jpg) |*.Jpg") | |
| Cdl.CancelError = False | |
| Cdl.DialogTitle = ("Choose a friend photo") | |
| Cdl.ShowOpen | |
| If Cdl.FileName = Trim("") Then | |
| PicNm = App.Path & "/Phone1.Jpg" | |
| Else | |
| PicNm = ("") | |
| PicNm = Cdl.FileName | |
| End If | |
| Timg.Picture = LoadPicture(PicNm) | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment