在richedit2.0中使用超链接的形式。发出消息。 不错的文章。

Creating the OutLookRichEdit Control
Rating: none

Madhu B Nair (view profile)
December 30, 2002


(continued)

Environment: VC6 SP4, 2000.

Follow these 10 easy steps to build the OutLookRichEdit control:

  1. Insert a rich edit control into the dialog.
  2. Call AfxInitRichEdit() in the InitInstance of the App class or in InitDialog.
  3. If it does not exist, copy OutLookRichEdit.cpp and OutLookRichEdit.h to the project directory.
  4. Click the menu choice Project-Add to Project-Files and select the above-copied files to add the wrapper class to your project.
  5. Import the hand cursor into the resource and rename it "IDC_LINK".
  6. Use Classwizard to add a member variable of the rich edit control (CRichEditCtrl).
  7. Include the OutLookRichEdit.h file in the dialog's header file and change the declaration of rich edit member variable, as in
    CRichEditCtrl    m_ctrlText1;
    
    to
    COutLookRichEdit m_ctrlText1;
    
  8. In InitDialog(), add the following code.
    m_ctrlText1.SetRawHyperText(_T("Click <%$here$#100#%>
                                    to see the about box."));
    

    At this level, if you build the project and run it, you can see the rich edit control with linked text, but nothing would happen if you clicked on the link.

    To Show a dialog while the link is clicked, you have to add some more code in the dialog class. Before that, have a closer look at the preceding code and hypertext syntax. The link text is enclosed between the "$" symbols and the corresponding dialog's resource value 100 (About Box), enclosed in "#" symbols.

    You can find the #define values of dialogs in the resource.h file.

  9. Use ClassWizard to map OnNotify of the dialog and write the corresponding implementation code in .cpp file, like:
    BOOL CDEMODlg::OnNotify(WPARAM wParam,
                            LPARAM lParam,
                            LRESULT* pResult)
    {
      NMHDR* pNmHdr = (NMHDR*) lParam;
      if(IDC_RICHEDIT1 == pNmHdr->idFrom){
        switch(pNmHdr->code)
        {
          case IDD_ABOUTBOX:
            CAboutDlg oDlg;
            oDlg.DoModal ();
            break;
        }
      }
      return CDialog::OnNotify(wParam, lParam, pResult);
    }
    
  10. Now, build and run the project. It is recommended that you set the read-only attribute to the rich edit control.

Downloads

Download demo project - 23 Kb
Download source - 6 Kb
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值