上一页 1 ··· 6 7 8 9 10
摘要: 1 //打开目录 2 private void BtnClickOpenDirPics(object sender, EventArgs e) 3 { 4 FolderBrowserDialog DirPics = new FolderBrowserDialog(); 5 DirPics.SelectedPath = "D:\\"; 6 7 if (DirPics.ShowDialog() == DialogResult.OK) 8 { 9 ... 阅读全文
posted @ 2014-02-25 14:01 秋月的私语 阅读(394) 评论(0) 推荐(0)
摘要: 1 #include 2 using namespace std;3 int main(int argc, char *argv[])4 {5 cout << sizeof("goodbye") << endl;6 cout << strlen("goodbye") << endl;... 阅读全文
posted @ 2014-02-24 20:49 秋月的私语 阅读(175) 评论(0) 推荐(0)
摘要: 1 #include 2 using namespace std; 3 4 void show(int a); 5 int main(int argc, char *argv[]) 6 { 7 void (* pfunc)(int a) = NULL; 8 pfunc = sh... 阅读全文
posted @ 2014-02-23 22:28 秋月的私语 阅读(660) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10