• 将表格粘贴为Word可识别的格式


    // Open the clipboard...
    if(!OpenClipboard()) {
       ::MessageBox(NULL, "Cannot open clipboard.", "Error", 0x10010);
       return;
    }

    // Get Clipboard format id for RTF.
    UINT cf = RegisterClipboardFormat("Rich Text Format");

    // Empty anything already there...
    EmptyClipboard();

    // *** This section of code adds the RTF table to the clipboard
    // *** RTF-Data to put on clipboard
    const char *text =
       "{\\rtf1\\par "
       "\\trowd \\trgaph30\\trleft-30\\trrh262\\cellx980\\cellx1991\\cellx3001"
       "\\intbl \\qr \\f0\\fs20 \\cf 1\\cell \\qr 2\\cell\\qr 3\\cell \\intbl \\row"
       "\\trowd \\trgaph30\\trleft-30\\trrh262\\cellx980\\cellx1991\\cellx3001"
       "\\intbl \\qr \\f0\\fs20 \\cf 4\\cell \\qr 5\\cell\\qr 6\\cell \\intbl \\row}";

    // Allocate global memory for transfer...
    HGLOBAL hText = GlobalAlloc(GMEM_MOVEABLE |GMEM_DDESHARE, strlen(text)+4);

    // Put our string in the global memory...
    char *ptr = (char *)GlobalLock(hText);
    strcpy(ptr, text);
    GlobalUnlock(hText);

    // Put data on the clipboard!
    ::SetClipboardData(cf, hText);

    // Free memory...
    GlobalFree(hText);

    // *** Now, add a version of the same data as tab-delimited text...
    // *** This will be used by Microsoft Excel
    char *text2 = "1\t2\t3\n4\t5\t6";

    // Allocate global memory for transfer...
    hText = GlobalAlloc(GMEM_MOVEABLE |GMEM_DDESHARE, strlen(text2)+4);

    // Put our string in the global memory...
    ptr = (char *)GlobalLock(hText);
    strcpy(ptr, text2);
    GlobalUnlock(hText);

    // Put data on the clipboard as CF_TEXT
    ::SetClipboardData(CF_TEXT, hText);

    // Free memory...
    GlobalFree(hText);


    // Close clipboard...
    CloseClipboard();
  • 相关阅读:
    C# 排序技术研究与对比
    基于.net的通用内存缓存模型组件
    Scala学习笔记:重要语法特性
    一个初学者的指南,使用D3做数据绑定
    CLR垃圾回收的设计
    CLR线程概览(下)
    CLR线程概览(一)
    使用sos查看.NET对象内存布局
    .NET对象的内存布局
    MYC编译器源码之代码生成
  • 原文地址:https://www.cnblogs.com/MaxWoods/p/619012.html
Copyright © 2020-2023  润新知