T.R | Title | User | Personal Name | Date | Lines |
---|
299.1 | | HLDE01::MIDDELDORP_B | | Thu Dec 01 1994 15:33 | 8 |
299.2 | Explanation but still no solution | HLISC1::HLP674::PC079021 | | Thu Dec 01 1994 15:54 | 6 |
299.3 | | HLDE01::MIDDELDORP_B | | Thu Dec 01 1994 16:35 | 7 |
299.4 | known bug ? | UTRTSC::SCHOLLAERT | Ajax: World Champions 1995 | Wed Feb 05 1997 09:04 | 12 |
| Hi,
Customer reports same problem (Word 6 Autosave doesn't work using
ILockBytes).
Is this problem identified as a bug in Word ?
If so, does someone know if it reported to Microsoft.
If so, what was the response.
Thanks,
Jan
|
299.5 | | elec1.uto.dec.com::wijermars_v | | Wed Feb 05 1997 10:25 | 11 |
| If you use the Ilockbytes interface, the calling application (in this case LinkWorks) is
resposible for the AutoSave and if required also for starting the macro's (like AutoOpen).
LinkWorks 3.0 does not do this.
LinkWorks 3.2 will offer these features.
If you need these features you can either
- Switch off the IlockBytes interface
- or modify the calling methods in LinkWorks to start a macro in Word.
In this macro you can handle the AutoSave
See the partner web - unsupported elec tools - 32 bit sdk examples for an example
Vincent
|
299.6 | patch to 3.0.8 ? | UTRTSC::SCHOLLAERT | Ajax: World Champions 1995 | Fri Feb 07 1997 08:50 | 13 |
| Hi,
Customer told me that 3.2 will be released in August and that they
do not want to wait so long for a fix for what they consider
a major bug. Some people lost a whole day work.
What about a patch to 3.0.8 ?
Thanks,
Jan
|
299.7 | | suppdc.uto.dec.com::PETERS_M | | Fri Feb 07 1997 12:12 | 3 |
| As Han said, check out www.linkworks.aware.net
Martin
|
299.8 | Almost there........ | UTRTSC::SCHOLLAERT | Ajax: World Champions 1995 | Mon Feb 10 1997 08:54 | 15 |
| Hi again,
re .5
>- or modify the calling methods in LinkWorks to start a macro in Word.
> In this macro you can handle the AutoSave
> See the partner web - unsupported elec tools - 32 bit sdk examples
I found autoopen.swc, so now my last question is : how do
you "handle" the AutoSave in start macro.
Thanks,
Jan
|
299.9 | | wijermvc.apd.dec.com::wijermars_v | | Mon Feb 10 1997 11:36 | 28 |
| Jan,
Below the code that I use:
First the LNXAutoOpen macro that I call from LinkWorks after having set the Document variable
ObjRef
Sub MAIN
objRef$ = GetDocumentVar$("ObjRef")
Channel = DDEInitiate("LNX", "General")
Subject$ = DDERequest$(Channel, objRef$ + ".Object.Subject")
' FileSummaryInfo .Subject = Subject$
SetDocumentProperty("Subject", 0, Subject$, 1)
diff = Now() + 300 / 86400
OnTime diff, "LNXAutoSave"
End Sub
And now the LNXAutoSave macro
Sub MAIN
If IsDocumentDirty() = - 1 Then FileSave
diff = Now() + 300 / 86400
OnTime diff, "LNXAutoSave"
End Sub
The autosave time is now set to 300 seconds.
Vincent.
|