Skip to content

Instantly share code, notes, and snippets.

@facebookegypt
Created March 10, 2013 17:48
Show Gist options
  • Select an option

  • Save facebookegypt/5129629 to your computer and use it in GitHub Desktop.

Select an option

Save facebookegypt/5129629 to your computer and use it in GitHub Desktop.
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