【例子介绍】C#编的通讯录程序,用Access数据库
我在实习的时候用C#编的通讯录,得的高分,运用Dataset连接Access数据库,有用户验证功能,默认用户名1密码2,本通讯录功能简单实用
【相关图片】
【源码结构】
.
├── C#编的通讯录程序,用Access数据库_tongxunlu0.1.rar
└── tongxunlu0.1
├── tongxunlu0.1
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── Form2.Designer.cs
│ ├── Form2.cs
│ ├── Form2.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Settings.cs
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── tongxun.accdb
│ │ │ └── tongxun.mdb
│ │ ├── tongxun.accdb
│ │ ├── tongxun.mdb
│ │ ├── tongxunlu0.1.application
│ │ ├── tongxunlu0.1.exe
│ │ ├── tongxunlu0.1.exe.config
│ │ ├── tongxunlu0.1.exe.manifest
│ │ ├── tongxunlu0.1.pdb
│ │ ├── tongxunlu0.1.vshost.exe
│ │ ├── tongxunlu0.1.vshost.exe.config
│ │ └── tongxunlu0.1.vshost.exe.manifest
│ ├── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ │ ├── bin.Debug.tongxunDataSet.Designer.cs.dll
│ │ │ ├── bin.Debug.tongxunDataSet1.Designer.cs.dll
│ │ │ ├── tongxunDataSet.Designer.cs.dll
│ │ │ └── tongxunDataSet1.Designer.cs.dll
│ │ ├── tongxunlu0.1.application
│ │ ├── tongxunlu0.1.csproj.FileListAbsolute.txt
│ │ ├── tongxunlu0.1.csproj.GenerateResource.Cache
│ │ ├── tongxunlu0.1.exe
│ │ ├── tongxunlu0.1.exe.manifest
│ │ ├── tongxunlu0.1.pdb
│ │ ├── tongxunlu0._1.Form1.resources
│ │ ├── tongxunlu0._1.Form2.resources
│ │ └── tongxunlu0._1.Properties.Resources.resources
│ ├── publish
│ │ ├── Application Files
│ │ │ └── tongxunlu0.1_1_0_0_0
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── tongxun.accdb.deploy
│ │ │ │ └── tongxun.mdb.deploy
│ │ │ ├── tongxunlu0.1.application
│ │ │ ├── tongxunlu0.1.exe.config.deploy
│ │ │ ├── tongxunlu0.1.exe.deploy
│ │ │ └── tongxunlu0.1.exe.manifest
│ │ ├── setup.exe
│ │ └── tongxunlu0.1.application
│ ├── tongxunlu0.1.csproj
│ ├── tongxunlu0.1.csproj.user
│ └── tongxunlu0.1_TemporaryKey.pfx
├── tongxunlu0.1.sln
└── tongxunlu0.1.suo
15 directories, 53 files
评论