// 1Dlg.cpp : implementation file
//#include "stdafx.h"
#include "1.h"
#include "1Dlg.h"
#include "column.h"
#include "columns.h"
#include "COMDEF.H"#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App Aboutclass 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)
//}}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()/////////////////////////////////////////////////////////////////////////////
// CMy1Dlg dialogCMy1Dlg::CMy1Dlg(CWnd* pParent /*=NULL*/)
: CDialog(CMy1Dlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CMy1Dlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}void CMy1Dlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CMy1Dlg)
DDX_Control(pDX, IDC_DATAGRID1, m_datagrid);
DDX_Control(pDX, IDC_ADODC1, m_adodc);
//}}AFX_DATA_MAP
}BEGIN_MESSAGE_MAP(CMy1Dlg, CDialog)
//{{AFX_MSG_MAP(CMy1Dlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////
// CMy1Dlg message handlersBOOL CMy1Dlg::OnInitDialog()
{
CDialog::OnInitDialog(); // Add "About..." menu item to system menu. // IDM_ABOUTBOX must be in the system command range.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000); CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
CString strAboutMenu;
strAboutMenu.LoadString(IDS_ABOUTBOX);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
} // Set the icon for this dialog.  The framework does this automatically
//  when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon

// TODO: Add extra initialization here
m_adodc.SetRecordSource("SELECT UserId,UserName As 用户名,UserPwd As 密码 FROM Users");
m_adodc.Refresh();
_variant_t vIndex;
vIndex=long(0);
m_datagrid.GetColumns().GetItem(vIndex).SetWidth(0);
    vIndex=long(1);
m_datagrid.GetColumns().GetItem(vIndex).SetWidth(180);
    vIndex=long(2);
m_datagrid.GetColumns().GetItem(vIndex).SetWidth(140);

return TRUE;  // return TRUE  unless you set the focus to a control
}void CMy1Dlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.void CMy1Dlg::OnPaint() 
{
if (IsIconic())
{
CPaintDC dc(this); // device context for painting SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0); // Center icon in client rectangle
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2; // Draw the icon
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CMy1Dlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}BEGIN_EVENTSINK_MAP(CMy1Dlg, CDialog)
    //{{AFX_EVENTSINK_MAP(CMy1Dlg)
ON_EVENT(CMy1Dlg, IDC_DATAGRID1, -600 /* Click */, OnClickDatagrid1, VTS_NONE)
//}}AFX_EVENTSINK_MAP
END_EVENTSINK_MAP()void CMy1Dlg::OnClickDatagrid1() 
{
// TODO: Add your control notification handler code here

}
就红色的这点我用的是C++和SQL Server但是红色这部分的功能没有实现为什么。就是设置宽度和UserName 被用户名,UserPwd A被密码代替

解决方案 »

  1.   

    只有红色的这部分是添加的,其余的都是原来就有的
    m_adodc.SetRecordSource("SELECT UserId,UserName As 用户名,UserPwd As 密码 FROM Users"); 
    实现将“用户名”代替UserName   “密码”代替UserPwd
    _variant_t vIndex; 
    vIndex=long(0); 
    m_datagrid.GetColumns().GetItem(vIndex).SetWidth(0); 
        vIndex=long(1); 
    m_datagrid.GetColumns().GetItem(vIndex).SetWidth(180); 
        vIndex=long(2); 
    m_datagrid.GetColumns().GetItem(vIndex).SetWidth(140); 
    实现宽度的调整
    在C++中我用ADO中的ADO Data来连接我的数据库,DataGrid来显示我在数据库中的表
    因为我数据库中的那张表的字段是UserId  UserName  UserPwd所以我想将它改为用户名   密码
    并将第一个UserId给删去 ,大概就这个意思,但是不能实现
    DataGrid 中已经显示出表了,我加红色的这段程序只是为了实现将字段是UserId UserName UserPwd
    替换成用户名  密码
    大概就是这个意思,不知道我说清楚没
      

  2.   

    没有实现应该不是SQL语句的问题,应该是你程序的问题
    有个建议,如果是使用的MS SQL 2000/2005,为什么不写成过程,这样调用起来就简单多了,
    写在程序里有点多,个人建议。