프로젝트 편집창에 FTP Explorer 기능 추가

This commit is contained in:
chikyun.kim
2019-04-23 13:22:58 +09:00
parent 8941f9d871
commit 1b487e8c5d
19 changed files with 829 additions and 234 deletions

View File

@@ -209,6 +209,18 @@ namespace FPJ0000
btwEdit.PerformClick();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
if (tbPath.Text == "") tbPath.Text = "/" + tbIdx.Text;
var f = new FCOMMON.fFTPExplorer(nameTextBox.Text, tbPath.Text,
FCOMMON.info.ftp_ip,
FCOMMON.info.ftp_id,
FCOMMON.info.ftp_pw,
FCOMMON.info.ftp_port,
FCOMMON.info.ftp_passive);
f.ShowDialog();
}
}
}