Davenmcd576's Q&A profile
Smart Device Development Can't find project template Smartphone Magneto
Folks, I just installed VS 2005 Beta and Pocket PC SDK 5.0 along with Smartphone SDK 5.0 but when I try to create a new Project for Smartphone I do not find those options. Should I be doing something else I refered to this document http://msdn.microsoft.com/library/default.asp url=/library/en-us/dntake/html/yctiwy_wm5.asp but seems like I did everything it says. Any help Regards, Udaypal Aarkoti Are you using Beta 2 of Vs 2005 this usually happens if you had done a custom setup and not installed C++. We had a dependency in beta 2 on C++ on the machine which causes this issue. You can try one thing - create a NET CF 2.0 - PPC 200 ...Show All
Visual Studio AssemblyInfo task
I am trying to use the AssemblyInfo task in my team build, from this blog: http://blogs.msdn.com/msbuild/archive/2005/11/11/491947.aspx A few questions: - rather than editing each .vb/.csproj file, is there a way to set assemblyinfo details across all assemblies in a team build - what about web apps that dont have an assemblyinfo file - is there an easy way to use the $(BuildNumber) property in Team Build as the assembly version numbers I ask because I have different branches in source control for each testing environment we have (dev, test, stage, live). I have a build type on each branch and the build from each never makes i ...Show All
SQL Server .NET Runtime error on SQL Server 2005 (RTM)
I upgraded my primary production server this morning to SQL 2005. Everything went fairly smoothly, but a couple of hours after my installation was complete, I found the following error in my event log: Source: .NET Runtime Optimization Service EventID: 1101 .NET Runtime Optimization Service (clr_optimization_v2.0.50727_32) - Failed to compile: Microsoft.ReportingServices.QueryDesigners, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 . Error code = 0x80070002 I am a little stumped since we did not install Reporting Services. We only installed Database Services, Int ...Show All
Visual Studio 2008 (Pre-release) "permission of type System.Net.WebPermission" question
I try to make a Web Browser Application in VS,I use the code to load a XML file from internet: public Page1() { InitializeComponent(); XmlDocument myxml = new XmlDocument(); myxml.Load(" http://......com/feed.rss "); } but when i run in IE,the response is : ------------------------------ Startup URI: F:\My Documents\Visual Studio 2005\Projects\WebBrowserApplication1\WebBrowserApplication1\bin\Debug\WebBrowserApplication1.xbap Application Identity: /WebBrowserApplication1/bin/Debug/WebBrowserApplication1.xbap#WebBrowserApplication1.application , Version=1.0.0.0, Culture=neutral, PublicKeyToken=7a9 ...Show All
SQL Server Duplicate Events
The nature of the event provider for my SQLNS application is to produce exact duplicate rows into the event table. Obviously, I am not interested in receiving duplicate notifications. What are some strategies for having SQLNS produce one notification for several exact rows being sent to the events table. I have an event chronicle that retrieves distinct rows from the event table and puts them into the chronicle. My thoughts were that I could use the chronicle table in my matching statement. But the timing doesn't seem to be working out. The matching is apparently done before the chronicle is updated. Any thou ...Show All
Software Development for Windows Vista Beta 2 problems with any workflow & designer
Hello, I have a Windows Vista CTP December 05 machine on which I had installed the WinFX RTC CTP December, the Windows SDK CTP December, the Orcas VS Extensions CTP December and the WWF Extensions CTP December. All of them worked OK. I'm using the RTM Visual Studio 2005 Team Suite and RTM SQL 2005 Developer Edition. Now I uninstalled them in the reverse order and it seemed that the machine was clean. I could not see the the WinFX RTC in Vistas uninstall console, but I used the uninstall tool vs_uninst_winfx.exe instead. Is that not enough to uninstall the WWF runtime components There was no entry in Vistas uninstall cons ...Show All
Visual Studio Tools for Office Button is not getting removed after uninstalling the Word add-in
Hi All, I'm creating and installing a Word Add-in. The add-in creates a button on standard toolbar. When I uninstall the add-in the button is not getting removed. The add-in is the basic add-in from the link http://support.microsoft.com/default.aspx scid=kb;en-us;Q302901 as it is. The code in OnBeginShutdown is as follows: public void OnBeginShutdown(ref System.Array custom) { object omissing = System.Reflection.Missing.Value ; System.Windows.Forms.MessageBox.Show("MyCOMAddin Add-in is unloading."); MyButton.Delete(omissing); MyButton = null; } Can anyone let me know what am I missing I've even tried using oCommand ...Show All
Visual Studio Express Editions Q : MDI Forms
hi, now i'm learning how to create MDI form that can contain other forms but i have 2 problems, the tutorial wasn't clear about them 1) when i add a menubar to the child form it doesn't appear in the child form but it appear in the parent form so i will have duplicated menus like 2 menues for file , the same for edit ... etc how can i stop that and make the menu appear in the child form 2) parent form may contain many Child forms opened, how can i get a list for all child forms that are open in the parent form to switch between all of them thx in Advance MDI menu merging is something that I'm yet to work out properly myself ...Show All
SQL Server extended connection managers for data flow destinations?
It looks like you can only extended connection managers for data flow sources. Is there anyway to develop a custom connection manager for the SQL destination in the data flow destinations I can’t use hardcoded connection strings. I can’t use configurations because they are not encrypted. I already have managed code that will give the corrected connection string. I already have a custom connection manager that I use from the data flow sources. I just need one for data flow destinations but I can’t see a way to extend into the OLE DB The OLEDB Destination is just l ...Show All
Windows Forms Why is SplitContainer a sealed class?
Hi, I just tried to derive from SplitContainer but had to notice that it's a sealed class. Why is that Probably a little late, but FYI: It's no longer sealed in Beta 2. ...Show All
Visual Studio Team System Capacity Planning
Hi We are about to deploy TFS in a single-server configuration using the following hardware: - Dual Xeon CPU - 2GB RAM - 2 X 73GB HD's - mirrored - for the OS - 3 X 73GB HD's - in RAID5 - for data Now, even though right now there will be about 50 users working with the system, I'd like to know how much can that number grow, based on current configuration. What is the maximum number of users that can be supported by this server configuration Hey, If you are refering to the basic published number it is 500, and since your config meets the requirements, that should be okay. ...Show All
Visual Studio 2008 (Pre-release) WinFX November CTP released!
I just found this: http://blogs.msdn.com/tomarcher/archive/2005/11/18/494274.aspx It seems the download links don't work yet. I just posted a draft of an MSDN article that goes over new features and breaking changes, including some porting tools and code samples -- see http://blogs.msdn.com/karstenj/archive/2005/11/18/494551.aspx Regards, Karsten Januszewski ...Show All
.NET Development client can't get events
Hello, In my project, my clients registered to an event on server. And, when server raise that event, every client write an event log entry to confirm that event handled successfully. All of my clients can register to event, and handle one event from server. But after first event, clients can't get any other events from server. What can I do to solve that problem Thanx. Hi Ilker, I'm not sure what the problem is here. You may want to check out the events sample up on the Remoting Blog [1]. If that doens't help, paste your code here and we'll take a look at it. Cheers, JJustice [MSFT] [1] ...Show All
Visual Basic Selecting datagridview cell
I am totlly newbie in vb.net and want to find out how can i utilize the datagridview tool here. I wanted to know how can i pass the content of a ceratain cell in datagridview on a click event to a textbox...thanks in advance. You can refer to the columns by index or by name. Textbox1.Text = Me .DataGridView1.Rows(0).Cells(0).Value Textbox2.Text = Me .DataGridView1.Rows(0).Cells( "ColumnName" ).Value These are simply using index values to refer to the rows and cells. There are collections of selectedrows, selectedcells, selectedcolumns. So it really depends upon which "ce ...Show All
Visual Studio Team System customized test templates
In the thread http://forums.microsoft.com/msdn/ShowPost.aspx PostID=13002 , it is explained how to create your own manual test templates. Easy enough. But, it would be nice to have the whole team working with the custom template. Is there an easy way to get this template an each machine I dont know about other source code control tools, but for source safe: Set the working firectly for the project where these files are located, and point it to the VS Templates director For TFS: File/SourceControl/Workspaces/edit the workspace for the files -- you can select the local directory for part of the tree in this dialog. (Sorry for not more de ...Show All
