Stuby085's Q&A profile
Visual Studio Team System Team Explorer - red cross on "documents"-folder
Since installation of TFS I am unable to see the content of the documents-folder (teamexplorer) on a client-machine. There is always a red cross on the folder! If I start the team explorer on the server the documents folder is shown correctly. I tried to copy the http-url ( http://[servername]/sites/[Project ]) to an IE on a client and there the sharepoint site is shown without any problems. I did the changes required after installation of Sharepoint Portal Services SP2 ( http://blogs.msdn.com/robcaron/archive/2005/10/07/478336.aspx ). I think I also configured the users like mentioned in the install guide (TFSInstall-v50926.chm - Managing Security Roles for Team Foundation Server). Did anyone have a suggestion how to fix it ...Show All
Visual Studio Express Editions Webbrowser - need options - help needed
Hey how can i make a option on a menu strip under file called work offline and what i need it to do is basicly turn the browser off so that i can't connect to the net like in Internet Explorer etc... also dose any one know how to get the favourites to work say if some one clicks on a button i need it to popup with a small window with there favourites in cheers. that cant be right as I've just done it and reading the docs as well as the tooltip description "Gets or Sets a value indicating whether the System.Windows.Forms.WebBrowser control is in Offline mode" can you show us exactly what you have coded for this and if you are using a WebBrowser control ...Show All
.NET Development Installing .. advpack.dll
Not sure if this is where to put this question but I can't find anything else on these forums (shrug ). I'm trying to install the 2.0 redistribution package and get an error with c:\windows\system32\advpack.dll when trying to install. Any suggestions The reason I'm looking to install it is because I have an application that requires it. Maybe I actually need something different Ugh. lol http://www.microsoft.com/downloads/details.aspx FamilyID=b44a0000-acf8-4fa1-affb-40e78d788b00&DisplayLang=en us this one gl ...Show All
Visual Studio 2008 (Pre-release) Color Picker
I'm looking to make a color picker like the one in Microsoft Design and Microsoft Blend. Any methods on how to do that Thanks! Check out Shawn's recent post about a WPF Color Picker . Also, a live.com search may have more interesting things... Thanks, Rob Relyea Program Manager, WPF Team http://rrelyea.spaces.live.com ...Show All
SQL Server modifying data from extract before import
Hi all, Having some fun with an excel import. I have a excel sheet that has data that needs to be UpSert'ed into 2 different tables. In addition, I need to use a value in the spreadsheet to determine the PK from a reference data table, for one of the UpSert oprations. That is all working now. The thing I'm struggling with is something I am sure is quite simple - but I'm not seeing a solution from attempts, googling or BOL. 2 of the columns I receive have either nothing, or X in them. The columns they go into are defined as BIT, NOT NULL. So, in SQL it would be something relatively simple like: CASE When IsAvailable = 'X' then 1 When IsAvailable is null then 1 ELSE 0 end But I don't kno ...Show All
Visual C++ CRichEditView::OnCreate
I am using MFC single document with base class CRichEditView. I want to display some text on my editor when the editor first opened. I tried this way but the folowing fragment does not set the editor text on start up int CMyView::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CRichEditView::OnCreate(lpCreateStruct) == -1) return -1; // TODO: Add your specialized creation code here GetRichEditCtrl().SetWindowText("Hello World"); return 0; } what do u think is the problem. is there any function call that will reset windows text after call of OnCreate. Because you are using the doc view architecture the function OnNewDocument or DeleteCOntents might do this. ...Show All
Visual Studio Tools for Office Add control to ActionsPane
I am developing an add-in to excel 2003 using Visual Studio Tool for Office SE. I want to add a user control to the actions pane (or task pane). Anywhere I looked for doing it says to use: this.ActionsPane.Add(theControl). My problem is I dont have this.ActionsPane I dont know why but I can't get access to that property, then I can't add controls to the actions pane. Thanks in advance Hi Nanon Correct, there is no ActionsPane available for Office 2003 Add-ins. ActionsPanes are only available for document-level customizations (the full VSTO 2005 - the version without "SE"). ...Show All
Visual Studio 2008 (Pre-release) SQL2LINQ
Does a tool like this exist Baiscally something to encapsualte all of the complex business rules/logic of the LINQ syntax. Now I understand what you were asking for. Strangely enough, we had a developer here working on a prototype of something just like that. It was fairly limited, but with it you could 'copy' SQL text to the clipboard and paste C# LINQ-to-SQL aka DLINQ code into Visual Studio. ...Show All
Windows Forms Deleting Last Row of DGV causes nullreferenceexception
I had a problem that I am curious if anyone has heard of. I've searched the knowledgebases and forums but can find no information on it. I'll post it here so that if anyone else encounters it they will have a resource to turn to. I have a databound dataGridView control bound to a database. I can perform all the normal functions on the data and reflect those changes back into underlying database just fine, EXCEPT if I attempt to delete the last row displayed above the blank "add-a-new-row-here" row. If I attempt to do so, I get the UserDeletingRow event just fine, then a nullreferenceexception before the UserDeletedRow event is fired. It appears from the call stack that the exception is occurring in the meth ...Show All
SQL Server CASE Returning NULL
Hello, I have a query that contains six derived columns; FirstPerYr; The current year FirstPerMo; The current month FirstPeriodRevenue; CASE the current year, use the CurrentYearSalesTable (CY). CASE the current month, match the correct column (JanRev, FebRev, etc) of the CurrentYearSalesTable to get the correct data. FirstPeriodYrAnnum; Last year FirstPeriodMoAnnum; The current month, last year FirstPeriodAnnumRev; Same as FirstPeriodRevenue, but from the year and month before. In the following query, I get the correct FirstPeriodRev value, but FirstPeriodAnnumRev comes up NULL. I know I have data for January 2006. The query is as follows; --************************** DECLARE @FirstPerYr Int DECLARE @FirstPerMo Int DECLARE ...Show All
SQL Server Data Flow Task - Multiple Columns from different sources to a single table
Hi: I have a data flow task in which there is a OLEDB source, derived column item, and a oledb destination. My source is a SQL command, that returns some values. I have some values, that I define in the derived columns, and set default values under the expression column. My question is, I also have some destination columns which in my OLEDB destination need another SQL command. How would I do that Can I attach two or more OLEDB sources to one destination How would I accomplish that Thanks MA2005 In general a data flow can have as many source components as you want; and if the destination component is common to more than one source; you need to use a transform component to 'join' the data pipeline (arrows) toward the common des ...Show All
Visual Studio 2008 (Pre-release) Reliable Messaging and custom transports
Hey, first i got to ask if anyone happens to know of some sort of step-by-step tutorial for implementing reliable messaging Then on to my question... I'm doing some request/reply-communication over mail, and want to add some reliable messaging. The plan is that the client sends a mail to the server, with the message supposed to be sent AND the CreateSequence piggybacked on it. The server then replies with another message piggybacking both the CreateSequenceResponse and SequenceAcknowledgement. Finally the client sends an TerminateSequence over mail to the server. (This should work, right ) The big problem is that when my Proxy calls Channel.Request(), the message I get is a CreateSequence instead of the message i sent over Proxy.Request() ...Show All
Visual Studio wrong file version on 1 user machine, all others correct
I have vss 6 client loaded on 2 of my machines and loaded and used on several others machines. On both of my machines I log on with the same user id. On 1 machine it shows an older version of files. All the other machines in the company are showing the correct version. I have tried removing and reloading vss6 on the machine, the same old version of files show up. Thank you for any help DW What do you mean "it shows an older version" If you do a History on a file, does it not include all the revisions Are you sure you're connecting to the same database ...Show All
Windows Live Developer Forums VECollections in FF2
Trying to load a VECollection in FF2 results in the following error: this.m_velayermanager has no properties I'm assuming this is an map control incompatibility and not my code I'm using the following test code: <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src=" http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js"></script > <script> var map = null; var layerid=0; var source="160E6B936FFEBD1!111"; function GetMap() { map = new VEMap('mymap'); try { map.LoadMap(new VELatLong(51.076351, -3.05), 11 ,'h' ,false); } ...Show All
SQL Server Service Pack 1 -- account information could not be verified
When installing Svcpack 1 ontop of my 9.00.1399.06 RTM Developer Edition I get the following error everytime: --------------------------- Invalid Login Information --------------------------- Your account information could not be verified for one or more instances. Ensure that you can connect to all the selected instances using the account information provided. To proceed further deselect the instances to which connectivity cannot be established. --------------------------- OK --------------------------- I have followed all possible suggestions on the following post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=358003&SiteID=1 but nothing works. I'm running as the local admin on t ...Show All
