I downloaded and installed the version 1.15, after using version 1.12, but no my Delphi 5 complains about the no finding of the HotSyncActionDialog. There is no such component present anymore, what to do?
Please help,
Spencer
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
That's weird - the default TpfgHotSyncActionForm form is still present in the pfgHotSyncAction.pas file; it hasn't been changed or anything. You might want to check that you haven't accidentally modified the old package in the past, like accidentally changing the name of the hotsync dialog, since I noticed you called it "HotSyncActionDialog" when it's actually "THotSyncActionForm".
Paul.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I didn't change anything of the package, it work's (normally) perfect.
I have de-installed everthing from my desktop, even the physical files of the package and the bpl file of Deplhi. Re-installed everything and having the same result. There is no actial component anymore. After this I de-installed the v1.15 again completely and installed the v1.12. This package give no problem.
Please help!
With regards,
Spencer
ps. When using the v1.15 package with the your demos it gives problems during register the package : error "no Sync20.dll found". Might this be a source of problems? This error doesn't appear with the version 1.12
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Taking some time to review the code, the TpfgHotSyncActionDialog is defined in the pfgHotSyncAction.pas file. One thing that I noticed is that the component isn't automatically registered. Is the error you're getting because you previously dropped a copy of the dialog component into your form? If that's the case, you can simply add a Register procedure to the source for the pfgHotSyncAction.pas file to register the dialog as a visual component to appear in the palette (see the Register method in several of the other files for how it's formatted).
This is only if your project is manually using the HotSyncActionDialog component - the default project handling if you don't have a configuration event handler is to display it automatically.
As for the sync20.dll errors, I can't say for sure; you may have a problem with the configuration on your system, since I haven't heard of any problems on other systems. Try tracing through the source code - particular the PalmPath function in pfgUserData.pas, which determines what directory all the DLLs should be in.
Paul.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I downloaded and installed the version 1.15, after using version 1.12, but no my Delphi 5 complains about the no finding of the HotSyncActionDialog. There is no such component present anymore, what to do?
Please help,
Spencer
That's weird - the default TpfgHotSyncActionForm form is still present in the pfgHotSyncAction.pas file; it hasn't been changed or anything. You might want to check that you haven't accidentally modified the old package in the past, like accidentally changing the name of the hotsync dialog, since I noticed you called it "HotSyncActionDialog" when it's actually "THotSyncActionForm".
Paul.
Hi Paul,
I didn't change anything of the package, it work's (normally) perfect.
I have de-installed everthing from my desktop, even the physical files of the package and the bpl file of Deplhi. Re-installed everything and having the same result. There is no actial component anymore. After this I de-installed the v1.15 again completely and installed the v1.12. This package give no problem.
Please help!
With regards,
Spencer
ps. When using the v1.15 package with the your demos it gives problems during register the package : error "no Sync20.dll found". Might this be a source of problems? This error doesn't appear with the version 1.12
in the ps. I do mean register the demo conduits giving the sync20.dll error
Taking some time to review the code, the TpfgHotSyncActionDialog is defined in the pfgHotSyncAction.pas file. One thing that I noticed is that the component isn't automatically registered. Is the error you're getting because you previously dropped a copy of the dialog component into your form? If that's the case, you can simply add a Register procedure to the source for the pfgHotSyncAction.pas file to register the dialog as a visual component to appear in the palette (see the Register method in several of the other files for how it's formatted).
This is only if your project is manually using the HotSyncActionDialog component - the default project handling if you don't have a configuration event handler is to display it automatically.
As for the sync20.dll errors, I can't say for sure; you may have a problem with the configuration on your system, since I haven't heard of any problems on other systems. Try tracing through the source code - particular the PalmPath function in pfgUserData.pas, which determines what directory all the DLLs should be in.
Paul.