> I'm using plucker on Windows. So far the only way I've managed to get
> plucker to hotsync stuff to my palm is by hot-syncing a
> database created with 'Add a new Database'. Is this the only/best way to
do it?
One of the key advantages to Plucker versus Avantgo, is that the
building/refreshing of the webpages is not done when you hotsync.
Instead you have to rebuild your plucker databases at some point
before you hotsync.
To refresh a single database you use the runsync.exe program.
The easiest way is from the start menu...
Start Menu,
Programs,
Plucker
My Database, <-- as appropriate
Hotsync <-- this is a bit of a misnaming IMHO, refresh might be better
And that should be it (as you said).
Anyway, I use the following batch file to refresh all my plucker
databases. I have a shortcut to the batchfile on my desktop,
and it used to be setup to be run automatically at 4pm so I
could then sync before leaving work.
@echo off
title Pluck
echo Starting update
echo ~~~~~~~~~~~~~~~
c:
cd C:\Peter\Plucker
for /D %%d in (*.DB) do (
echo Processing %%d
RunSync.exe "%%d"
echo Finished %%d with errorlevel %errorlevel%.
echo.
)
echo All Finished
echo.
Peter