CREdit list - http://www.geocities.com/plamen_p/credit/index.html
--------------------------- ListBot Sponsor --------------------------
Start Your Own FREE Email List at http://www.listbot.com/links/joinlb
----------------------------------------------------------------------
The printing is admittedly one of the weakest spots in CREdit. For the moment
the only way to print something less than a full file is to do it as you are
doing it now - to copy&paste it in a new document.
Hovewer, you can automate this by writing a script.
Here is a sample script for printing the current selection using the default
printer:
Sub PrintSelection
Dim newDoc
ActiveDocument.Selection.Copy
Set newDoc = Documents.Add
newDoc.Selection.Paste
newDoc.PrintOut
newDoc.Close dsSaveChangesNo
End Sub
Hope this helps!
Best regards,
Plamen Parvanov
David Bullock <[EMAIL PROTECTED]> wrote:
Greetings!
Has any consideration been given to the possibility of printing less
than a full file? Perhaps a range of line numbers, or a highlighted
selection, or something similar? I often just need to print a portion
of a file for my reference, and currently I highlight the part I need,
copy and paste it into a new document, print the new document, then
close without saving. Other lesser programs offer this, so I'm sure it
can be easily included in CREdit.
Thanks for your thoughts on this.
- DB
____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1
______________________________________________________________________
To unsubscribe, write to [EMAIL PROTECTED]