office-2003

How to compare two word documents? [closed]

感情迁移 提交于 2019-11-29 10:55:16
问题 Businesses Analyst from my team keeps sending us the updated Requirements documents often and I end up hunting the recent changes by comparing the old version. Is their a good way of comparing the Word documents? Note: We have the track changes option ON, but now the documents looks like a blood bath, complicating it much more :( 回答1: The document comparison features in Word 2003 are extremely poor, and often results in the user removing parts of documents they did not want too The only

Making Word document embedded in a web page editable or read-only

烈酒焚心 提交于 2019-11-29 10:52:20
I'm embedding some Word documents into our web page using iframe like this: <iframe src="ftp://ftp.example.com/www/uploads/Image/test.doc" width="100%" height="400"> Alternative </iframe> The problem is that the embedded Word control allows the user to edit the documents and shows an icon to save them, but doesn't actually save anything. Is it possible to setup Word to save edits back to the FTP server? If not, is there someway we can make the document read-only so the user doesn't get the idea that they can make changes? We're using IE7 and Word 2003. (I just asked a related question about

Making Word document embedded in a web page editable or read-only

∥☆過路亽.° 提交于 2019-11-28 04:35:35
问题 I'm embedding some Word documents into our web page using iframe like this: <iframe src="ftp://ftp.example.com/www/uploads/Image/test.doc" width="100%" height="400"> Alternative </iframe> The problem is that the embedded Word control allows the user to edit the documents and shows an icon to save them, but doesn't actually save anything. Is it possible to setup Word to save edits back to the FTP server? If not, is there someway we can make the document read-only so the user doesn't get the

How do I call a VBA Function into a Sub Procedure

限于喜欢 提交于 2019-11-27 19:29:16
I know this is a simple question for someone out there, but I have never really used function module at all because I did not understand what they were. So I have a whole bunch of things I can use this for (cut down on redundancy), but I want to know how I call into a sub (like a button click) procedure from a form. I tried this... Sub Command_Click() Call "pptCreator" End Sub I know that is pretty bad, but I have no idea how to bring this into a procedure. Here are some of the different ways you can call things in Microsoft Access: To call a form sub or function from a module The sub in the

How do I call a VBA Function into a Sub Procedure

此生再无相见时 提交于 2019-11-26 22:49:40
问题 I know this is a simple question for someone out there, but I have never really used function module at all because I did not understand what they were. So I have a whole bunch of things I can use this for (cut down on redundancy), but I want to know how I call into a sub (like a button click) procedure from a form. I tried this... Sub Command_Click() Call "pptCreator" End Sub I know that is pretty bad, but I have no idea how to bring this into a procedure. 回答1: Here are some of the different

Is there a need to set Objects to Nothing inside VBA Functions

允我心安 提交于 2019-11-26 10:32:49
I always read that it is recommended to set objects to nothing, once I am done with them. But I normally use them only in functions inside forms. Isn't the reference lost and memory released when the function scope is left, regardless of setting objects to Nothing? i.e. is it really necessary to do: Set db = Nothing Set record_set = Nothing VB uses a so-called "reference counting" garbage collector. Basically, the moment a variable goes out of scope, the reference counter on the referenced object is decremented. When you assign the object reference to another variable, the reference counter is

Is there a need to set Objects to Nothing inside VBA Functions

你离开我真会死。 提交于 2019-11-26 01:59:41
问题 I always read that it is recommended to set objects to nothing, once I am done with them. But I normally use them only in functions inside forms. Isn\'t the reference lost and memory released when the function scope is left, regardless of setting objects to Nothing? i.e. is it really necessary to do: Set db = Nothing Set record_set = Nothing 回答1: VB uses a so-called "reference counting" garbage collector. Basically, the moment a variable goes out of scope, the reference counter on the