Navigation

Search

Categories

On this page

Message Box Error and Solution
Todays Message Box Error and Solution
Tortoise SVN behind Proxy

Archive

Blogroll

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

RSS 2.0 | Atom 1.0 | CDF

Send mail to the author(s) E-mail

Total Posts: 120
This Year: 1
This Month: 0
This Week: 0
Comments: 40

Sign In
Pick a theme:

# Wednesday, December 30, 2009
Wednesday, December 30, 2009 2:05:44 PM (Mountain Standard Time, UTC-07:00) ( All things Microsoft )
Here's another error I got today while using Visual Studio 2008

---------------------------
Microsoft Visual Studio
---------------------------
Error connecting to undo manager of source file 'C:\dev\Work\ReportBrowser\ReportBrowserWeb\SiteLayout.Master.designer.cs'.
---------------------------
OK  
---------------------------

Found a good solution here
http://www.hanselman.com/blog/CommentView.aspx?guid=8bc798ae-da26-4864-b4e3-b68b081b4be1

1) Right-click the designer file and select delete
2) Right-click the aspx file and select Convert to Web Application

Comments [0] | | # 
# Wednesday, December 23, 2009
Wednesday, December 23, 2009 12:47:21 PM (Mountain Standard Time, UTC-07:00) ( All things Microsoft )

I've decided to start a new series of articles on how I solve various problems in my daily programmer lifee. Usually a problem has a distinct message box that shows up which you can copy the text of with the CTRL + C key combination. I think that a lot of people search directly for this text, and it woudl be awesome to have it solved. Maybe I'll even start a website some day to host these solutions so that people (or in a perfect world the vendor...) can post a solution to them. For today, here's my problem that I experienced inside of devenv.exe (Visual Studio 2008) today while trying to use the Server Explorer to add a new Data Connection.

---------------------------
Server Explorer
---------------------------
Unable to add data connection.

Could not load file or assembly 'Microsoft.SqlServer.Management.Sdk.Sfc, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
---------------------------
OK  
---------------------------

I was tipped off by this forum post http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.vstudio.general&tid=89ee0e86-b8fc-40a7-a0e1-51ac4033302e&cat=en_US_38f7e3d1-40bd-4daf-941f-f45d2ff6ff9b&lang=en&cr=US&sloc=&p=1

to install the SQL Server 2008 Managment Objects and Native Client, which you can get from here

http://www.microsoft.com/downloads/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&displaylang=en#filelist

Or more specifically, here

Microsoft SQL Server 2008 Management Objects X86 Package http://go.microsoft.com/fwlink/?LinkId=123708&clcid=0x409

Microsoft SQL Server 2008 Native Client X86 Package http://go.microsoft.com/fwlink/?LinkId=123717&clcid=0x409

Comments [0] | | # 
# Wednesday, December 02, 2009
Wednesday, December 02, 2009 8:30:39 AM (Mountain Standard Time, UTC-07:00) ( )
Sometimes you're at a building who proxies their internet connection and you need to get a copy of some code from sourceforge.net.

The Subversion FAQ has great info on this http://subversion.tigris.org/faq.html#proxy

The specific file you want is %APPDATA%\Subversion\servers

Edit the [global] section

# is the comment character. Remove it to enable the following sections

http-proxy-host # the IP address or hostname of the proxy (don't include http or https)
http-proxy-port # the port the proxy service is hosted on
http-proxy-username # username (sometimes you need the netBiosDomain\username)
http-proxy-password  # password
http-timeout  # in seconds
http-auth-types # authentication protocols.

Comments [0] | | #