ClientDlg.cpp
上传用户:shljtb88
上传日期:2010-02-09
资源大小:82k
文件大小:4k
源码类别:

系统编程

开发平台:

Visual C++

  1. // ClientDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Client.h"
  5. #include "ClientDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CClientDlg dialog
  13. CClientDlg::CClientDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CClientDlg::IDD, pParent)
  15. , m_edit1(_T(""))
  16. {
  17. //{{AFX_DATA_INIT(CClientDlg)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  21. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  22. }
  23. void CClientDlg::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. DDX_Text(pDX, IDC_EDIT, m_edit1);
  27. //{{AFX_DATA_MAP(CClientDlg)
  28. // NOTE: the ClassWizard will add DDX and DDV calls here
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CClientDlg, CDialog)
  32. //{{AFX_MSG_MAP(CClientDlg)
  33. ON_WM_PAINT()
  34. ON_WM_QUERYDRAGICON()
  35. ON_BN_CLICKED(IDC_BUTTON_ReadFromMemory, OnBUTTONReadFromMemory)
  36. ON_BN_CLICKED(IDC_BUTTON_CreatePipeAndReceive, OnBUTTONCreatePipeAndReceive)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CClientDlg message handlers
  41. BOOL CClientDlg::OnInitDialog()
  42. {
  43. CDialog::OnInitDialog();
  44. // Set the icon for this dialog.  The framework does this automatically
  45. //  when the application's main window is not a dialog
  46. SetIcon(m_hIcon, TRUE); // Set big icon
  47. SetIcon(m_hIcon, FALSE); // Set small icon
  48. // TODO: Add extra initialization here
  49. return TRUE;  // return TRUE  unless you set the focus to a control
  50. }
  51. // If you add a minimize button to your dialog, you will need the code below
  52. //  to draw the icon.  For MFC applications using the document/view model,
  53. //  this is automatically done for you by the framework.
  54. void CClientDlg::OnPaint() 
  55. {
  56. if (IsIconic())
  57. {
  58. CPaintDC dc(this); // device context for painting
  59. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  60. // Center icon in client rectangle
  61. int cxIcon = GetSystemMetrics(SM_CXICON);
  62. int cyIcon = GetSystemMetrics(SM_CYICON);
  63. CRect rect;
  64. GetClientRect(&rect);
  65. int x = (rect.Width() - cxIcon + 1) / 2;
  66. int y = (rect.Height() - cyIcon + 1) / 2;
  67. // Draw the icon
  68. dc.DrawIcon(x, y, m_hIcon);
  69. }
  70. else
  71. {
  72. CDialog::OnPaint();
  73. }
  74. }
  75. // The system calls this to obtain the cursor to display while the user drags
  76. //  the minimized window.
  77. HCURSOR CClientDlg::OnQueryDragIcon()
  78. {
  79. return (HCURSOR) m_hIcon;
  80. }
  81. BOOL CClientDlg::OnCopyData(CWnd* pWnd, COPYDATASTRUCT* pCopyDataStruct)
  82. {
  83. // TODO: 在此添加消息处理程序代码和/或调用默认值
  84. CString str=(LPTSTR)pCopyDataStruct->lpData;
  85. m_edit1=str;
  86. UpdateData(FALSE);
  87. return CDialog::OnCopyData(pWnd, pCopyDataStruct);
  88. }
  89. void CClientDlg::OnBUTTONReadFromMemory() 
  90. {
  91.     HANDLE m_hMap;
  92. LPSTR  m_lpData;   
  93. m_hMap=CreateFileMapping((HANDLE)0xFFFFFFFF,NULL,PAGE_READWRITE,0,0x200,"MYSHARE");   
  94. if(m_hMap==NULL)   
  95. {   
  96. AfxMessageBox("CreateFileMapping() failed.");
  97. return;
  98. }
  99. //将文件的视图映射到一个进程的地址空间上,返回LPVOID类型的内存指针
  100. m_lpData=(LPSTR)MapViewOfFile(m_hMap,FILE_MAP_ALL_ACCESS,0,0,0);   
  101. if(m_lpData==NULL)   
  102. {   
  103. AfxMessageBox("MapViewOfFile() failed.");
  104. return;
  105. }
  106.     m_edit1=m_lpData;
  107. //m_list.InsertString(-1,m_msg1);
  108. UpdateData(FALSE);
  109. //释放映像内存
  110. UnmapViewOfFile(m_lpData);
  111. CloseHandle(m_hMap);
  112. }
  113. void CClientDlg::OnBUTTONCreatePipeAndReceive() 
  114. {
  115.     DWORD dwUDW = NMPWAIT_USE_DEFAULT_WAIT;
  116. HANDLE hServer = CreateNamedPipe("\\.\pipe\mypipe",PIPE_ACCESS_DUPLEX,PIPE_TYPE_BYTE,5,256,256,dwUDW,NULL);
  117. if( hServer == INVALID_HANDLE_VALUE )
  118. {
  119. AfxMessageBox("打开管道时发生错误!");
  120. }
  121. else
  122. {
  123. if (ConnectNamedPipe(hServer,NULL))
  124. {
  125. BYTE bRead;
  126. CString temp = _T("");
  127. char cRead[20];
  128. DWORD dwRead;
  129. int i = 0;
  130. while (ReadFile(hServer,&bRead,1,&dwRead,NULL))
  131. {
  132. cRead[i] = bRead;
  133. i++;
  134. }
  135. temp = cRead;
  136. m_edit1=temp;
  137. UpdateData(FALSE);
  138. }
  139. else
  140. {
  141. AfxMessageBox("没有连接!");
  142. }
  143. CloseHandle(hServer);
  144. }
  145. }
  146. void CClientDlg::OnOK() 
  147. {
  148. // TODO: Add extra validation here
  149. CDialog::OnOK();
  150. }
  151. void CClientDlg::OnCancel() 
  152. {
  153. // TODO: Add extra cleanup here
  154. CDialog::OnCancel();
  155. }