上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 73 下一页
摘要: #include int main() { if(remove("1.txt")) printf("Could not delete the file &s \n","1.txt"); else printf("OK \n"); return 0; } 阅读全文
posted @ 2017-08-27 17:00 Dsp Tian 阅读(359) 评论(0) 推荐(0) 编辑
摘要: http://docs.wxwidgets.org/trunk/classwx_u_i_action_simulator.html 阅读全文
posted @ 2017-08-27 17:00 Dsp Tian 阅读(387) 评论(0) 推荐(0) 编辑
摘要: #include #include #include void main( void ) { /* Check for existence */ if( (_access( "D:\\a.txt", 0 )) != -1 ) { printf( "File ACCESS.C exists\n" ); /* Check for write p... 阅读全文
posted @ 2017-08-27 16:59 Dsp Tian 阅读(1842) 评论(0) 推荐(0) 编辑
摘要: unsigned long get_file_size(const char *filename) { struct stat buf; if(stat(filename, &buf)<0) { return 0; } return (unsigned long)buf.st_size; } 阅读全文
posted @ 2017-08-27 16:59 Dsp Tian 阅读(373) 评论(0) 推荐(0) 编辑
摘要: #include #include class myApp : public wxApp { public: bool OnInit(void); int OnExit(void); }; IMPLEMENT_APP(myApp) bool myApp :: OnInit(){ int max = 500; wxFrame* f... 阅读全文
posted @ 2017-08-27 16:58 Dsp Tian 阅读(931) 评论(0) 推荐(0) 编辑
摘要: Android 客户端: AndroidManifest.xml添加: 界面如下: c++服务端: 阅读全文
posted @ 2017-08-27 15:28 Dsp Tian 阅读(2120) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication1 { public partial class WebFor... 阅读全文
posted @ 2017-08-27 15:25 Dsp Tian 阅读(773) 评论(1) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2017-08-27 15:24 Dsp Tian 阅读(886) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2017-08-27 15:24 Dsp Tian 阅读(1177) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2017-08-27 15:24 Dsp Tian 阅读(526) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 73 下一页