Hi Robert,
You're not alone. I also have this problem on my network.
See:
http://listserv.nethelps.com/main/wa.exeA2=ind1302A&L=toolbook&P=R1606&I=-3
I also use 9.01 but it seems the type of network may also cause the problem
as, if I remember correctly, Denny said he could not reproduce the problem
with any version of Toolbook.
On my system it would seem to be linked to UAC. I only get the problem using
author mode. If I run my program using runtime only on a computer with no
Toolbook author, the problem disappears. Only if I disable UAC can I use
author mode.
---------------------------------------------
BTW (completely different subject)
If you use version 9 regularly you might want to put this in your book
scripts to stop TB crashing after the mouse buttons are pressed for more
than 5 seconds.
--(Make sure TB90r.sbk is in bound sysbooks)
to handle buttonDown
startTime of self = Asym_Ticks()
end
to handle rightButtonDown
startTime of self = Asym_Ticks()
end
to handle buttonUp
clear startTime of self
end
to handle buttonStillDown
local LONG currentTime
get startTime of self
if it is not null
currentTime = ASYM_Ticks()
if currentTime > it + 3500
clear startTime of self
get flushMessageQueue()
break to system
end
end
end
to handle authorButtonDown
startTime of self = Asym_Ticks()
end
to handle authorRightButtonDown
startTime of self = Asym_Ticks()
end
to handle authorButtonUp
clear startTime of self
end
to handle AuthorButtonStillDown
local LONG currentTime
get startTime of self
if it is not null
currentTime = ASYM_Ticks()
if currentTime > it + 3500
clear startTime of self
get flushMessageQueue()
break to system
end
end
end
John