Word,PDF和其他(300分)

  • 主题发起人 主题发起人 Chenlili
  • 开始时间 开始时间
C

Chenlili

Unregistered / Unconfirmed
GUEST, unregistred user!
netscape 有plugin,ie也有plugin,例如可以在ie窗口中打开word文档
关于IEplugin的开发谁做过,能说说心得吗?
 
建议本题改名为: word、pdf、女人及其他......
laugh,开个玩笑
 
正在学习,了解不深,有本电子书,讲得还算详细
Internet_Explorer_Plug-Ins_and_ActiveX_Companion.ZIP
 
是否是想在IE中浏览WORD、PDF及其他格式文档,如果是建议到www.cimmetry.com 去看一下,
如果能CRACK其DEMO版,希望能给我发一个!!
 
ie窗口中打开word文档并不是因为有什么plugin
而是因为ie本身是一个类似于olecontainer的activex document server

至于ieplugin到是有本书,在cakk.126.com上,不过我觉得那本书比较烂
写的有点不知所云。
 
继续继续,更深入一点
 
Opera 也有阅读PDF文档的插件
 
!我保证你们看到以下的用法一定爽歪歪了!!!
这可是我三天工作的结果。唔。。。
---看最后终结者office。
--------------------------------
如果你们用的office97的server控件,那么用office2000时就要把server上的控件换掉。
做法:
1。在Componet里打开Install Packages.....
2.去掉borland sample automation server components
3.在project中点input type Library....
4.点add加入office2000的类库。(在Microsoft Office/office目录下的)
5。反正是什么Excel9.olb , Msword9.olb 和那些*.olb的东东,有excel的,word的,等。。。
6。palette page:改为servers(因为以前的office的控件完完了)
7。点install就好了。
这样office2000的问题我想应解决了。(如果你用的是什么word.application或excel.application 的控件的话)。
-----------
我的建议:
先用上面一的方法,再用comobj对象。
use comobj, excel_tlb
//excel_tlb 是新excel控件的pas文件,你把新控件放在窗体上看它用的哪个.pas就好了,当然下面要把这个控件去掉。因为comobj不用这个控件。只用这个.pas如excel_tlb中的函数。
var xl:variant;
在事件里写:
xl:=createoleobject('Excel.Application');

然后打开excel或word录一个宏命令,并打开宏命令考入代码。
----以下是宏录下来的宏。
workbooks.add
Range("C5:D7").Select
Sheets("Sheet2").Select
ActiveWindow.SelectedSheets.Delete
Charts.Add
ActiveChart.ChartType = xlColumnClustered
ActiveChart.SetSourceData Source:=Sheets("Sheet3").Range("A1")
ActiveChart.Location Where:=xlLocationAsObject, Name:="Sheet3"
-------
现在把它改为以下:
xl.workbooks.add;
xl.workbooks.add('d:/test.xls');
xl.Range['C5:D7'].Select;
xl.Sheets['Sheet2'].Select;
xl.ActiveWindow.SelectedSheets.Delete;
xl.Charts.Add;
xl.ActiveChart.ChartType := xlColumnClustered;
xl.ActiveChart.Location(xlLocationAsObject,'Sheet3');
现在运行一下,我保证你们爽歪歪!
看到规律了吗?
前面加上对象名,()改[],= 改:=,有参数时直接用,后加
。哈哈,满意了吧,
用office的宏命令可是不用你去想编程的,全是手动。这样少写了一大堆代码。

bbcoll 如有不明白的朋友讨论可:bbcoll@china.com

-------------------------------------------------------
 
I want to know how to change PDF to Word?
 
wPDF控件!!
浏览,
打印都可以
对于word,可以使用vba(delphi中),控制字体什么的,都可以,没有必要在程序里面察看doc阿,
直接调用word就可以了,通过vba就可以控制word阿!

最近在搞这方面的,但是vba的资料太少:( 哪为有,告诉一声
 
请问 wpdf 这个控件哪里有,是不是不需要安装 acrobat reader 就可以
浏览 pdf 文件了?
 
请继续或结束
 
接受答案了.
 
http://www.wptools.com/html/wporder.htm
wPDF creates PDF files using its own compatible 'canvas' property. In this case 'compatible' means that the canvas inherits from a standard TCanvas and has a 'handle' which can be used with Windows API commands. This makes it possible to use your printing code to easily create PDF files.
In contrast to other PDF programs, there's no need to install printer drivers or ActiveX controls. wPDF is a Delphi and C++Builder component which uses a PDF engine DLL. wPDF is fast. wPDF is compatible with WPForm, QuickReport and HTMLView, to name just a few possibilities.
If you already use WPTools then just add on wPDF in order to create full-featured electronic documents. Links and bookmarks are automatically exported and no extra coding is required.

顺便问问 有破解了的没?
 
后退
顶部