资源简介

    Mykey for winodws是个简洁高效的轻量级个人重要信息分类管理软件及源码。
    使用轻量级SQLite数据库,本地化存储,绿色便携。
    主要功能有:
    --记录的新增、删除、修改、保存
    --记录的分组、树状分组过滤查询
    --记录的EXCEL导出、记录的打印
    --数据列表显示行号、允许多选等
    --显示软件运行时长、当前操作状态
    --模糊查询、输入时实时快速查询

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SQLite;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Excel = Microsoft.Office.Interop.Excel;
using System.Timers;
using System.Net.Mail;
using System.Drawing.Printing;

/*
* Program name:Mykey for windows
* Version Number: 1.0
* Update by:Shoo Wong
* Update date:2020-03-10
*/

namespace MyKey
{
    public partial class FormMain : Form
    {

        private int intStateID = 0;
        private static DateTime timeLogin timeNow;
        private static string strSQL;
        private static int intKeyID;
        private static readonly string strBuildNo = “2020031401“;

        public FormMain()
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       39877  2020-03-14 20:28  FormMain.Designer.cs
     文件       34947  2020-03-14 20:30  FormMain.cs
     文件       72109  2020-03-14 20:26  FormMain.resx
     文件        5013  2020-03-14 12:24  Mykey.csproj
     文件         489  2020-03-08 10:33  Program.cs
     目录           0  2020-03-14 20:21  Properties\
     文件        1331  2020-03-14 20:21  Properties\AssemblyInfo.cs
     文件        2845  2020-03-07 10:12  Properties\Resources.Designer.cs
     文件        6097  2020-03-07 10:12  Properties\Resources.resx
     文件        1092  2020-03-01 12:54  Properties\Settings.Designer.cs
     文件         249  2020-03-01 12:54  Properties\Settings.settings
     文件        2782  2020-03-09 09:30  SQLiteHelper.cs
     目录           0  2020-03-14 16:09  bin\
     目录           0  2020-03-14 20:32  bin\Debug\
     文件      151552  2020-03-14 20:32  bin\Debug\MyKey.exe
     文件       67072  2020-03-14 20:32  bin\Debug\MyKey.pdb
     文件      904704  2010-04-18 13:58  bin\Debug\System.Data.SQLite.dll
     文件      184765  2010-04-18 13:34  bin\Debug\System.Data.SQLite.xml
     文件       16384  2020-03-09 22:28  bin\Debug\mykey
     目录           0  2020-03-14 20:54  bin\Release\
     文件       67646  2020-03-08 10:27  key.ico
     目录           0  2020-03-14 16:09  obj\
     目录           0  2020-03-14 20:32  obj\Debug\
     文件        6699  2020-03-14 16:37  obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7188  2020-03-14 20:21  obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件       44882  2020-03-14 20:32  obj\Debug\MyKey.FormMain.resources
     文件         180  2020-03-14 20:32  obj\Debug\MyKey.Properties.Resources.resources
     文件        2889  2020-03-14 20:32  obj\Debug\MyKey.csproj.FileListAbsolute.txt
     文件      151552  2020-03-14 20:32  obj\Debug\MyKey.exe
     文件       67072  2020-03-14 20:32  obj\Debug\MyKey.pdb
     文件           0  2020-03-14 20:32  obj\Debug\Mykey.csproj.CopyComplete
............此处省略4个文件信息

评论

共有 条评论