C# 명함관리 프로그램 (C#(WinForm), ibatis.net, log4net, MS SQL Server Compact 3.5 (파일DB)로 개발한 명함관리 프로그램입니다.)
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
해당 자료는 10페이지 까지만 미리보기를 제공합니다.
10페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

C# 명함관리 프로그램 (C#(WinForm), ibatis.net, log4net, MS SQL Server Compact 3.5 (파일DB)로 개발한 명함관리 프로그램입니다.)에 대한 보고서 자료입니다.

목차

[BizCard]
  [bin]
  [Ibatis.DataMapper.1.6.2.bin]
  [Models]
  [obj]
  [Properties]
  app.config
  BizCard.csproj
  BizCard.sdf
  FrmBizCard.cs
  FrmBizCard.Designer.cs
  FrmBizCard.resx
  ProBizCard.cs
  providers.config
  SqlMap.config

BizCard.sln


BizCard.suo

본문내용

FrmBizCard.cs



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;
using System.Net.Mail;
using IBatisNet.Common;
using IBatisNet.DataMapper;
using Excel = Microsoft.Office.Interop.Excel;
using System.Data.OleDb;


namespace BizCard
{
  public partial class BizCard : Form
  {
    private static readonly log4net.ILog log = log4net.LogManager.GetLogger(typeof(BizCard));//System.Reflection.MethodBase.GetCurrentMethod().DeclaringType
    Card CurrentCard; // 현재 선택된 카드의 객체

    public BizCard()
    {
      InitializeComponent();
      CurrentCard = new Card(); // 현재 선택된 카드의 객체 생성
    }

    #region 명함리스트 가져오기
    private void setBizCardList(Card card)
    {
      try
      {
        IList list = Mapper.Instance().QueryForList(\"SelectCard\", card);

        BizCardGrid.Rows.Clear();
        BizCardGrid.ColumnCount = 10;
        BizCardGrid.Columns[0].Name = \"번호\";
        BizCardGrid.Columns[1].Name = \"회사명\";
        BizCardGrid.Columns[2].Name = \"성명\";
        BizCardGrid.Columns[3].Name = \"부서\";
        BizCardGrid.Columns[4].Name = \"직위\";
        BizCardGrid.Columns[5].Name = \"주소\";
        BizCardGrid.Columns[6].Name = \"전화번호\";
        BizCardGrid.Columns[7].Name = \"핸드폰\";
        BizCardGrid.Columns[8].Name = \"Fax\";
        BizCardGrid.Columns[9].Name = \"Email\";


        // 홀수행 다른 색으로 보여주기
        BizCardGrid.AlternatingRowsDefaultCellStyle.BackColor = Color.Aqua;

        // 행 단위 클릭
        BizCardGrid.SelectionMode = DataGridViewSelectionMode.FullRowSelect;

        // 헤더 색상 변경
        //BizCardGrid.ColumnHeadersDefaultCellStyle.BackColor = Color.RosyBrown;
        //BizCardGrid.RowHeadersDefaultCellStyle.BackColor = Color.SeaGreen;
        //BizCardGrid.EnableHeadersVisualStyles = false;
        //BizCardGrid.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;
        //BizCardGrid.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;

        foreach (var item in list)
        {
          string[] strRow = { item.Num.ToString(), item.Cmpy, item.Name, item.Demt, item.Post,
                    item.Addr, item.Tel, item.HP, item.Fax, item.Email };
          BizCardGrid.Rows.Add(strRow);
        }




▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒



FrmBizCard.Designer.cs



namespace BizCard
{
  partial class BizCard
  {
    ///
    /// 필수 디자이너 변수입니다.
    ///

    private System.ComponentModel.IContainer components = null;

    ///
    /// 사용 중인 모든 리소스를 정리합니다.
    ///

    /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.
    protected override void Dispose(bool disposing)
    {
      if (disposing && (components != null))
      {
        components.Dispose();
      }
      base.Dispose(disposing);
    }

    #region Windows Form 디자이너에서 생성한 코드

    ///
    /// 디자이너 지원에 필요한 메서드입니다.
    /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
    ///

    private void InitializeComponent()
    {

키워드

visual studio,   C#,   ibatis,   졸업작품,   MFC,   c++,   java,   jsp,   명함,   명함관리
  • 가격3,300
  • 페이지수73페이지
  • 등록일2014.03.01
  • 저작시기2014.2
  • 파일형식압축파일(zip)
  • 자료번호#906582
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니