由Excel转化成的PDF文件,类似下面的表格形式(空隙的部分实际连在一起),现在想完成的功能是:当鼠标右机相应的单元格部分(如:1)时,在对应的的单元格(1)里添加一个文本框,要求文本框大小要与这个单元格大小一样,用什么语言,方法实现都可以,我用的是Adobe Acrobat 6.0 Professional!提供思路也将感激不尽!分不够可以加!
-----------------------------------
|           |     1       |        |
-----------------------------------
|           |             |        |
------------------------------------
|           |             |        |
------------------------------------

解决方案 »

  1.   

    谢谢 jam021(jam)给你20分!
    是不是高手都去吃饭,还没有回来啊?
      

  2.   

    也就是说,在PDF中,你想点中一个表格然后插入右键菜单是吗?
    这需要对Acrobat进行编程啊,非常复杂,不有这个必要吗?
      

  3.   

    肯定是要对Acrobat编程的,客户是白痴,他就是要这种傻瓜操作,他说手动加,还得调整大小,费劲,所以想在空白的地方右键然后选添加个文本框,程序就去找上面的线,下面的线,左边的线,右边的线,然后计算出文本框的大小加入到相应的地方..........哎,难啊......,大家这回明白了吧,帮我想个办法
      

  4.   

    我曾经看过这方面的资料,联系我详谈。
    msn:[email protected]
    ** FDFOpen:
    */
    errorCode = FDFOpen ("-", howMany, &FdfInput);
    /*
    ** FDFGetValue:
    */
    errorCode = FDFGetValue (FdfInput, "Customer.Name",
    cNameBuffer, sizeof(cNameBuffer), &howMany);
    errorCode = FDFGetValue (FdfInput, "Customer.Address",
    cAddrBuffer, sizeof(cNameBuffer), &howMany);
    errorCode = FDFGetValue (FdfInput, "My Combo Box",
    cComboBuffer, sizeof(cComboBuffer), &howMany);
    /*
    ** Presumably after we parsed this data, we would populate a
    database
    ** or generate another FDF file with some sort of response ...
    */
    // Your code goes here
    /*
    ** This next line of code is important if you are returning FDF
    ** You must emit the correct MIME type to "stdout" or you'll get a
    ** CGI error simular to this:
    **
    ** "The specified CGI application misbehaved by not
    returning
    ** a complete set of HTTP headers."
    **
    ** At this point you would generate FDF for the return and
    ** then do this:
    **
    **
    ** printf ("Content-type: application/vnd.fdf\n\n");
    ** fflush (stdout);
    **
    **
    ** For this example we will only send back acknowledgement that
    the
    ** code worked
    */
    printf ("Content-type: text/plain\n\n");
    printf ("Parsing of the submitted FDF completed\n");
    FDF Toolkit Overview and Reference 17
    FDF and Web Server Connectivity
    Creating the Client Side PDF File
    2
    /*
    ** FDFClose:
    **
    ** Use FDFClose to close any open FDFDocs and free resources
    */
    errorCode = FDFClose(FdfInput);
    }