Devi48354's Q&A profile
Visual Studio Team System How To Temporarily Disable Field Validation When Publishing Work Items From Excel?
I am attempting to migrate work items from our old ticket tracking system into VSTS using the Excel integration feature (from Team Explorer, right-click on Work Items folder and select "Add Work Items with Microsoft Excel"). I have exported the work item data from the old ticket tracking system and converted values to match those expected by VSTS and can paste the data into Excel, matching the data to the proper columns (all cols added from Team menu). The problem is that when I attempt to publish the work items to VSTS, I encounter many field validation problems stemming from the fact that these are not "new" work items. For example, the State of most of the work items I would like to migrate is actually "Close ...Show All
Smart Device Development Already installed message after cf update
Hello, Every time when I debug my solution there appears a very annoying message on my Windows CE device: Already Installed ----------------- Microsoft .NET CF 1.0 ENU-String Resource is already installed. Reinstall How can I switch that off If it's already installed I don't want to reinstall it every time... Thanks for your help! Thanks for your answer. Now I know that I'm not allone! :-) Some additional information: I also have updated my VS2003... and I think this update has overwritten something in my configuration. ...Show All
Internet Explorer Development Div Tag with height in style overlaps HTML below
The following HTML causes the DIV tag to overlap html below This wont happen if I remove “height:50px;” or“<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">“ I know removing the DocType Tag will resolve the issue, but I don’t what to disable the standards compliance. What should I do to make the code below standard compliant. _____________________________________________________ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head></head> <body> <div id="Div1" style="display:block;height:25px"> DIV Line 1<BR/> DIV L ...Show All
Windows Forms clickonce
hey guys can i get any links abt ClickOnce. I am totally new to this. Thanx in advance ...Show All
Visual C++ Multiple file extensions
If I create a C++ project and select 'MFC application', there is a dialog where I can enter the file extension I want to use. If I want to use two different file extensions in my program, for example '.abc' and '.def', then what shall I do I am sorry if I posted in the wrong forum, but it was the the first time I posted, so I didn't that MFC is outside the scope of this forum. You asked a question that I want to answer. The two extensions are for two different formats, and I want to add that it is an SDI project. ...Show All
Visual Studio Security Exception Problems
Hi, I am quite a newbie to security issues here. I wrote a small Control(.dll) file which actually able to browse the files and upload it on the net. And I embed that .dll file inside the Internet Explorer and I try to run it. But I ran into Security Exceptions problem as it needs to access IO resources like files etc from client's computer. I am not too sure how to work around to get this thing work. Below is the Security Exception Messages I got System.Security.SecurityException: Hash for the assembly cannot be generated. at System.Security.Policy.Hash.get_RawData() at System.Security.Policy.Hash.get_SHA1() at Microsoft.CLRAdmin.CFullTrustWizard.CreateCodegroup(PermissionSet pSet, Boolean fHighjackExisting) ...Show All
Visual Studio PostgreSQL as data provider?
I would like to be able to use PostgreSQL as a data provider\data source within Visual Studio 2005. I am using the free\open source Npgsql ADO.Net data provider in my code, but now I would like to be able to use the visual tools provided by Visual Studio. Is this possible When I go to choose a data source, one of the options is "<other>", but I don't see any way to add a different data provider to the listing. See this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=998285&SiteID=1 ...Show All
SQL Server SQL Server Management Studio and SQLCompact
Hi, just wondering if there are any plans to have SQLServer Management Studio Express connect to SQLCompact databases - given express and compact are both free products it would seem to make sense. Or am I missing some configuration setting that already allows SSMSE to do this - dont seem to be able to connect to a non SQLExpress datasource thanks, Roger Hi Roger, This is in our plan and we are working on it. With the release of SQL Server 2005 SP2, it will be integrated with SSMS express. Thanks Sachin ...Show All
Smart Device Development WebException: "Could not establish connection to network."
Hi, My Windows Mobile 5.0 smartphone app throw this exception "Could not establish connection to network." when it try to talk to another local http server on my laptop. I have spent many hours going through online help to find a solution for this problem without success. I have installed the loopback adaptor as suggested and also configured the smartphone emulator through vs 2005 Tools->Options->Devices ... to select the NE2000 loopback adaptor. I have also tries configuring the loopback adaptor for static ip as well as dynamically assigned by server without success. I also have vs.2003 installed on the same laptop. There used to be a beta 2 version of vs2005 which was uninstalled and now I have a official release ve ...Show All
Visual C# any example using mobile client factory
Any one use mobile client factory.sample codes ...Show All
Visual Studio "The class diagram service failed to load."
imediately followed by another message: "The operation could not be completed". I got the two messages when I create a new C# project and then choose "View Class diagram" on Form1.cs. After this happens I can't open either code or designer window for Form1! I'm using Visual Studio Team Suite RC (8.0.050727.86) I removed old bits like Beta2 with a cleanup utility found at http://go.microsoft.com/fwlink/ LinkID=47598 Yes, it happens both for VB and C# I have reported a bug on this issue ( http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=d1e86534-2133-4a21-86a3-01a284790d23 ) I installed SQL Server 2005 Developer Edition (September CTP) before VSTS RC! My OS i ...Show All
Game Technologies: DirectX, XNA, XACT, etc. free sound effects
Anyone know of a good spot to download free sample sound effects for those of us that can't make our own yet I am also curious about this. From the plain technique of embedding sound in your programs/games what is the general approach (if there is one). Would you create a sound effect as a sound file and loop it, e.g. for engine sound, and change pitch andvolume somehow to give the impression of e.g. acceleration Or would you make up the sound programmatically by modelling frequency and volume at runtime ...Show All
Microsoft ISV Community Center Forums Using Access XP VBA to post a file to SharePoint
Good afternoon, I've looked high and low for a solution to programatically, through use of VBA in Access XP, post a file to a SharePoint site. I am a "Contributor" and can manually post a file without issue. I tried a straight copy to the the sharepoint directory via VBA, but always get a strange message that says the file already exists. Any assistance would be greatly appreciated. Below is the code I tried without success. FileCopy "C:\Data\Report.xls", " \\sharepoint\sites\ Report.xls " Thank you in advance, Manny You can use Sharepoint Web Services for VBA...it's a library for VBA that let's you communicate with Sharepoint sites. It's downloadable from the MS ...Show All
Visual C# HtmlDocument on Console
I'm trying to use an HtmlDocument into a Console application, using an string with all the HTML code to build it. But seams that need a WebBrowser object to create it, and I can't create a WebBrowser object in my application because it's a console application. How can I solve this problem Thanks, TONI. why dont you just use a normal string and place html in it There is also no HtmlDocument property in the webbrowsercontrol but maybe the Document property you could still use the webbrowser control although I wouldnt recommend adding the control to the application since its of a different type of application but if you must, right click references and go to add reference and select Syste ...Show All
Visual Studio Express Editions Unhandled win32 exception
Since I installed (all) Visual Studio Express 2005 modules, I have been getting "An unhandled win32 exception...No installed debugger has Just-In-Time debugging enabled." form Microsoft Word, Excel, Outlook, and newly installed games. Reviewing everything I could in the Microsoft search list, I find that the debugger is not available for the Express edition. In desperation, I unintstalled all modules of Visual Studio Express 2005, VB, VC++, VC#, J#, SQL Server...ASP.NET 2.0 I am still getting the errors. I checked and found many references to Visual Studio still in the registry. Any thoughts I was setting up a new WinXP PC for myself and installed VS2005 and Office2007 - ...Show All
