I kept getting this error when I was trying to open my project. There was a failure while initializing the Microsoft Visual SourceSafe source control provider. You cannot use this provider to perform source control operations.
Here is the solution:1. Open VS2005, go to menu Tools -> Options, then click "Source Control"2. Choose "None" for the drop-down list under "Current souce control plug-in", rather then "Microsoft Visual Source Safe"
Reference: http://social.msdn.microsoft.com/Forums/en-US/vssourcecontrol/t...
Friday, October 21, 2011
There was a failure while initializing the Microsoft Visual SourceSafe source control provider
Author: xiaoyu
| Posted at: 11:18 AM |
Filed Under:
.NET
Monday, July 25, 2011
java.util.ConcurrentModificationException with ArrayList
Author: xiaoyu
| Posted at: 3:09 PM |
Filed Under:
java
You will receive java.util.ConcurrentModicationException error, if you are modifying a list while iterating it. For example, the following code will throw you the exception:
for (Object obj : list) {
if (obj.getCode().equals("something"))
list.remove(obj);
}
To avoid this exception, the trick is to delete/add an item through the iterator, but not the collection. Here is the example:
Iterator it = list.iterator();
while (it.hasNext()) {
Object obj = (Object)it.next();
if...
Friday, May 6, 2011
The referenced assembly could not be resolved because it has a dependency on System.Data.OracleClient
Author: xiaoyu
| Posted at: 5:05 PM |
Filed Under:
.NET
Received the following build error:
The referenced assembly "xxx" could not be resolved because it has a dependency on "System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider re-targeting your project.
This build error is caused by the project is targeting .NET Framework 4.0 Client Profile and references to an assembly,...
Tuesday, April 12, 2011
Resize image without distorting it
Has anyone come across a problem where image is being distorted on a webpage?
Here is the simple CSS solution to display images without distorted.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
.imgresize {
width: 100px;
height: 150px;
}
.imgresize img {
width: 100px; // to fix...
Sunday, August 22, 2010
"Strict standards : Non-static methods called statically" Error after Joomla Installation
Author: xiaoyu
| Posted at: 12:12 PM |
Filed Under:
PHP
Recently I'm merely setting up a test site on localhost to check out Joomla features. After the installation, there are tons of Strict standards errors appear on my screen when I browse to Joomla homepage. I tried to reinstall several times but it still gave me the same errors.
Finally, I found something useful on Joomla! Discussion Forums.
To solve this issue, simply change the following configuration in your php.ini...
Friday, July 30, 2010
Resize Textbox/Textarea based on content length
Author: xiaoyu
| Posted at: 9:45 AM |
Filed Under:
.NET,
javascript
I was asked to implement resizing textbox based on content length in one of my projects, to avoid having to deal with scroll bars.And here is the code that works for me:<html><head><script>function textAreaResize(o) { o.style.height = "1px"; o.style.height = (25+o.scrollHeight)+"px";}</script></head><body><textarea id="textArea1" onkeyup="textAreaResize(this)" style="overflow:hidden"></textarea><asp:textbox id="txt1" runat="server" Width="500px" Height="25px"...
Subscribe to:
Posts (Atom)