C#的简单的通讯录程序,是同学做的~具体的我忘记了,很久以前做的,能运行
2023-09-08 09:43:36 1.33MB C# ,通讯录,简易
1
Android获取通讯录程序源码.zip
2022-07-14 09:08:19 66KB 安卓
通讯录程序设计通讯录程序设计
2022-06-15 21:04:13 53KB 文档资料
Android 获取通讯录程序源码.zip
2022-06-15 11:04:21 55KB 源码
VC++通讯录程序设计报告
2022-06-14 19:07:06 169KB 文档资料
//C02.cpp // C02.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "C02.h" #include "MainFrm.h" #include "C02Set.h" #include "C02Doc.h" #include "C02View.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CC02App BEGIN_MESSAGE_MAP(CC02App, CWinApp) //{{AFX_MSG_MAP(CC02App) ON_COMMAND(ID_APP_ABOUT, OnAppAbout) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAP // Standard file based document commands ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew) ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen) END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CC02App construction CC02App::CC02App() { // TODO: add construction code here, // Place all significant initialization in InitInstance } ///////////////////////////////////////////////////////////////////////////// // The one and only CC02App object CC02App theApp; ///////////////////////////////////////////////////////////////////////////// // CC02App initialization BOOL CC02App::InitInstance() { // Standard initialization // If you are not using these features and wish to reduce the size // of your final executable, you should remove from the following // the specific initialization routines you do not need. #ifdef _AFXDLL Enable3dControls(); // Call this when using MFC in a shared DLL #else Enable3dControlsStatic(); // Call this when linking to MFC statically #endif // Change the registry key under which our settings are stored. // TODO: You should modify this string to be something appropriate // such as the name of your company or organization. SetRegistryKey(_T("Local AppWizard-Generated Applications")); LoadStdProfileSettings(); // Load standard INI file options (including MRU) // Register the application's document templates. Document templates // serve as the connection between documents, frame windows and views. CSingleDocTemplate* pDocTemplate; pDocTemplate = new CSingleDocTemplate( IDR_MAINFRAME, RUNTIME_CLASS(CC02Doc), RUNTIME_CLASS(CMainFrame), // main SDI frame window RUNTIME_CLASS(CC02View)); AddDocTemplate(pDocTemplate); // Parse command line for standard shell commands, DDE, file open CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); // Dispatch commands specified on the command line if (!ProcessShellCommand(cmdInfo)) return FALSE; // The one and only window has been initialized, so show and update it. m_pMainWnd->ShowWindow(SW_SHOW); m_pMainWnd->UpdateWindow(); return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CAboutDlg dialog used for App About class CAboutDlg : public CDialog { public: CAboutDlg(); // Dialog Data //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }; //}}AFX_DATA // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CAboutDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: //{{AFX_MSG(CAboutDlg) // No message handlers //}}AFX_MSG DECLARE_MESSAGE_MAP() }; CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) { //{{AFX_DATA_INIT(CAboutDlg) //}}AFX_DATA_INIT } void CAboutDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CAboutDlg) //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) //{{AFX_MSG_MAP(CAboutDlg) // No message handlers //}}AFX_MSG_MAP END_MESSAGE_MAP() // App command to run the dialog void CC02App::OnAppAbout() { CAboutDlg aboutDlg; aboutDlg.DoModal(); } ///////////////////////////////////////////////////////////////////////////// // CC02App message handlers
2022-04-22 13:43:22 64KB Visual C++
1
python课程设计 通讯录源码
2022-03-21 19:43:37 5KB python
1
C语言通讯录程序课程设计归类.pdf
2022-02-22 09:08:33 1.35MB 网络资源
Java 命令行程序案例,实现通讯录功能。通过控制台的菜单,实现数据增删查改。 学生可以通过这个案例掌握循环、分支、命令行输入输出等基本的编程技能。讲解视频地址:https://www.bilibili.com/video/BV1vY411L7F8/ https://www.bilibili.com/video/BV1FR4y1L7yh/
2022-02-09 18:03:10 8KB java 小程序 开发语言 后端
1
内容索引:C#源码,数据库应用,通讯录  C#初学者的一个数据库编程实例——个人通讯录,数据库采用MSSQL,附有数据库文件,附加即可,通讯录相对简单,界面也不复杂,仅完成信息的添加、修改,因此对C#的入门者来说,是个能帮助你快速进入数据库编程角色的好范例。
2021-12-27 17:12:12 1.41MB C#源代码 数据库应用
1