Guest User

Untitled

a guest
Apr 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public string templatehost {
  2. get { return templatehost_; }
  3. set {
  4. if(value == null)
  5. {
  6. templatehost_ = string.Empty();
  7. return;
  8. }
  9. System.IO.FileInfo fio = new System.IO.FileInfo(value);
  10. Interaction.MsgBox(fio.FullName.ToString());
  11. templatehost_ = fio.FullName;
  12. AxShockwaveFlash1.Movie = fio.FullName;
  13. AxShockwaveFlash1.Base = fio.DirectoryName;
  14. }
  15. }
Add Comment
Please, Sign In to add comment