You can do it easily with Laplink PCMover, take a look at http://www.laplink.com/pcmover/[^] Cheers.
o sanchez
Posts
-
Moving XP and all Apps to a new PC -
CSingleLock Assertion FailedIf i put this code in a function it works perfectly (in VS2005), Try it: { CCriticalSection ImageInfoSyncObject; CSingleLock * pImageInfoLock; pImageInfoLock = new CSingleLock(&ImageInfoSyncObject); pImageInfoLock->Lock(); pImageInfoLock->Unlock(); }
-
CSingleLock Assertion FailedHow are you creating the singlelock? it seems that the syncobject you are using its not valid. Example: CCriticalSection g_CS; //global or class member func() { CSingleLock SLock(&g_CS, TRUE); } Good luck. -- modified at 8:50 Wednesday 12th July, 2006
-
How to diable ok button of property sheetNaveen R wrote:
but he asks for CPropertyPage
Yes, i read it very fast :-) I don't imagine a propertysheet with different ok buttons in each page. Cheers.
-
How to diable ok button of property sheetYou can do it using CPropertySheet::SetWizardButtons with PSWIZB_DISABLEDFINISH, take a look here: http://msdn2.microsoft.com/en-us/library/ex7e7b4s.aspx[^] Cheers.