I logged into codeproject.com. I was trying to change my profile settings (other than my current email id) but I get an error message that my email id (which was not changed) is already taken. How can I update my profile without having to change my email id.
RedSunBeer
Posts
-
profile change -
Rudra Anti VirusI recently attended the launch of this software at Bangalore. This antivirus apparently prevents viruses from even being loaded into the RAM. All viruses, including unknown ones are immedeately removed from all folders inluding the temporary internet folders. Below are some related links. http://www.chennaionline.com/science/Technology/2006/09rudra.asp[^] http://www.domain-b.com/infotech/itnews/2006/20061005_software.html[^] http://www.ciol.com/ciol-techportal/Content/Security/News/2006/2051221193.asp[^] Cheers
-
Is this fair? [modified]My take would be that if you learnt this technology on company time then they have already paid you for it and it is fair that you share your knowledge. Share the web sites, name of books or other material that you used so that the other employees go through your struggle and value the knowledge in the same way. Dont give the answers; guide them instead. If you learnt this on your own time then you should ask for a raise and get it. Tell the company that it is distracting having people sitting beside you. Being asked to share your knowledge could be because the company may see a risk if you leave or cannot report to work or are on vacation. This is fair on part of the company. In this industry my personal experience is that only by sharing knowledge can we all grow. I wouldnt have survived without reading all that free code and ideas on the internet. I know its hurts to give away something that you struggled to learn yourself. If your managers are understanding then maybe you should discuss your concerns with them. But dont presume that they will go along with you. They may point out how you have benefitted from the company. The last option I guess is to sell yourself to the highest bidder. Not necessarily a good option because you would have gained some recognition and a new employer may not give you that.
-
Funny QuoteAs thompson and thomson would have rephrased it, 9 out of 10 conversations couldn't start ...;P
-
Error in article viewsI was monitoring the number of views for the articles "Running NUnit tests from FinalBuilder By RedSunBeer" and "How to estimate a software project in man-hours? By RedSunBeer" and find that the count has decreased. In the first case it has decreased from 2,745 to 2,255 and in the second case from 30,601 to 30,380. The dates are 05/Dec/2005 to 02/Jan/2006. How did this happen?
-
com+ and dllsHello, I created 2 .net dlls using C# and visual studio.net. One of the dlls (DLL1) references the other (DLL2). I then create a .net exe (windows forms) which referenced both the DLLs. I registered DLL1 with my system com+ services using regsvcs.exe. This was created as a server application with maximum access rights given. I then created a proxy (proxy application) and deployed it on one workstation along with the .net exe. When the exe file runs it is able to access DLL1 on the server. But DLL1 is not able to access DLL2. To overcome this i registered DLL2 in the GAC but the problem was still present. I want to know whether user created COM+ dlls can access other user created dlls on the system. If so how to do this. A.Almeida
-
exceptions, remoting and marshallingHello, I have a problem with remoting. In my remoting component I have a custom defined exception handling class. This class derives from the ApplicationException class. Now i need to send my custom exception to the client via remoting. As i have already inherited the ApplicationException class i cannot inherit the marshalbyrefobject which is required for remoting. So how can i send my custome exception object to the client via remoting? I have tried sending the exception object by using another class which inherits remoting and then creates an instance of the custom exception class. Still it throws some errors (remoting based or serialization based). If I try to use the [serializable] attribute it throws a deserialization error when I run the application. Please Please help as my work is stuck unless i solve this one. :doh: :confused: :((