April 12, 2006

Remove Scheduled Tasks

If you want the remove the Printers and Scheduled Tasks from your network shared folders then you can remove them from HKEY_LOCAL_MACHINE\ SOFTWARE\Microsoft\ Windows\ CurrentVersion\ Explorer\ RemoteComputer\ NameSpace

You can go to WinXPTutor's XP Resources too ;-)

February 18, 2006

Connect 98 to 2003

Error: \\ME_PC is not accessible. You might not have permission to use this network resource
Problem: if you have above error message in windows ME (or 95/98) for connecting to Windows 2003 (or 2000/XP) then
Solution1: goto MyNetworkPlaces>Properties>Add NETBEUI
Solution2: goto Client for Microsoft Windows>Network Adapter Driver>NETBEUI>File and Printer sharing for Microsoft Windows

Error: IPC$ dialogbox error message
Error: you must supply a password to make this connectoin
Problem: If you have above error when you trying to access Windows 2003 (or 2000/XP) computer from a Windows ME (or 95/98) computer then
Solution1: You must create a UserName/Password for your Windows ME client in Windows 2003 from Control Panel>Administrative Tools>Computer Management> Local Users and Groups>Users and create a new user

Error: \\ME_PC is not accessible. Unknown error 31
Problem: Do you have a user in your Windows 2003 (or 2000/XP) with a blank password? ... YES, this come here ...
Solution1: set a password for your user (go to above solution if you know that whom user!)

February 15, 2006

Access Project Trick

Q: I can't see the ADP source code?
A1: Hold "Shift" key when the project is opening.

Q: What is MDE or ADE files?
A1: Microsoft Access provides a database utility to create a compiled version of an .mdb desktop application or adp project file that contains no source code.
A2: MSAccess build a compiled version (from MDB to MDE) OR (from ADP to ADE)

Do you have another problems?

February 03, 2006

.Net licensing with Registry

1- You must use your LicenseProvider on the top of your control class like:
[LicenseProvider(typeof(MYLicenseProvider))]
2- You must check the validation of License in constractor's control class by
LicenseManager.Validate(typeof(MYControl), this);
3- You must define you specified MYLicenseProvider and override GetLicense function and read something from registry and return a valid instance of "Licence".

PS: The promise is that you define your License class and return one object of that
public class MYLicense : License {...}
PS: Another application can fill up registry for use by this control