jjrdk's Q&A profile
Visual Studio Team System Project Server Integration
I read on Brian Harry's latest post: http://blogs.msdn.com/bharry/archive/2005/10/01/476030.aspx and he mentioned a small change in the way fields are mapped to MSFT Project... however, has there been any work done in integrating directly with Project Server I read awhile back that integration was going to be enhanced, just not sure if it made it into TF Beta 3 or not. Thanks, ~slee No, I'm afraid we didn't add any project server integration in Beta 3 (nor do we plan to for V1 :(). It's a common request and a priority for the next version. We are working on something in the "Power Toy ...Show All
.NET Development .Net 2.0 release version breaks VS 2005b2?
I have just upgraded my .Net frameworks to 2.0 release version, and in the process, I had to uninstall the previous beta version and also some other stuff like the compact framework. Now, Visual Studio beta2 is not launching anymore. Is this a known issue With kind regards. I guess it is now. The express edition of C# won't install if the release .Net framework is installed. I hope this is addressed soon. regards, Alan. ...Show All
Visual C# How do i iconify apps in c#?
how do i iconify apps in c#...iconify means to minimise the app into the windows taskbar like an icon near the sound manager then bring them up later. Iconify, putting you application in the system tray. Place a NotifyIcon component on you main form. Give you NotifyIcon componten a Icon, now the fun can start. Just place this in you Resize event: private void Form1_Resize( object sender, System.EventArgs e) { if (WindowState == FormWindowState.Minimized) { ShowInTaskbar = false ; notifyIcon1.Visible = true ; } else { ShowInTaskbar = true ; notifyIcon1.Visible = false ; } } In ...Show All
Visual Basic A complex coding for me
Ok this is some kind of thinking. I tried thinking of a way to structure the code but couldnt. Maybe this is not even possible Items on my Form: MonthCalendar1 Label1 Textbox1 Button1 Ok this is a kind of to-do-list. So everytime i select a date on the monthcalendar1, it should show me what things i have to do on label1 like "today collect laundry" Now how do i set the to-do-things. I select a date on the monthcalendar1, i type something like "got meeting" into the textbox and click button1 it should be set. Senario Ok i want to remind myself that on 30 jan 2006 i got to attend a meeting. So i select 30 jan 2006 on ...Show All
Visual Studio Team System CA1030 UseEventsWhereAppropriate warns about methods named Raise<EventName>.
Using 1.35 rc1, it warns about methods that have the prefix 'Raise'. Would like to understand the rationale behind this, as we use Raise<EventName>() as the name of the protected virtual method that raises the <EventName> event. Why should it be flagged Example: protected virtual void RaisePersistenceCompleted(PCEventArgs e) { EventHandler handler = PersistenceCompleted; if (handler != null) { handler(this, e); } } Thanks. Michael Not entirely. This rule was designed to warn new .NET users (typically C++ devs) when they attempted to reproduce the same functionality already ...Show All
Visual Basic Shared Classes
I thought I read a while back that VS.NET 2005 would introduce a way to specify that a class is shared without having to use a private constructor. I know that C# 2005 supports the static keyword for this purpose. Is there a similar technique in VB Thanks, Lance There isn't a way to disable that behavior. However, assuming your problem with that is that intellisense can get cluttered, you could nest your module in a namespace: Namespace Module1 Module Module1 Public x as integer End Module End Namespace Yea ...Show All
Visual Studio Team System VSTS and Excel integration
VSTS agile process has a few Excel documents, which display the results of queries on Work Items. The Excel documents use VSTO code behind, which accesses Team Foundation Server using VSTS client API. In order to do the query, the URL indenfiying the Team Foundation Server has to be known. How does the VSTO code acquire the URL Is this configured some where Thanks, Yuhang. Hi Yuhang, The spreadsheets are bound to queries as part of the process template specification. When you run the New Team Project wizard to create a new team project, any documents bound to queries are updated with the team ...Show All
Windows Forms how to disable navigation in child rows of a datagrid
Hi, I have a datagrid that is bound to a source who ahs child and then grand child relationship. I want my datagrid to show only parent to child relationship but not the child to grandchild relationship. How can I do this Thanks, ...Show All
Visual Basic Determine which link label was clicked
I have 10 linklabels and all have events connected to a sub. When a link is clicked, it will open a form whose controls are created based on which link was clicked. So instead of using a seperate sub event for each linklabel, I put them all to one sub. But, I cannot figure out how to tell which linklabel was clicked. Any ideas The first parameter passed into your event is the link that was clicked. You can check which one it is with =, or you can cast it and use properties such as Text or Tag to work out which one it was. ...Show All
SQL Server Management Studio doesn't run!
Hi, I recently installed SQL Express Edition on a completely clean installation of Windows XP SP2 with all updates until yesterday. I use default instance name (SQLExpress) and tested the instance in many ways; all seems to be cool. But, when I installed Management Studio CTP Nov, installation process finiched without any proble, bu when traying to tun the application either from Start Menu or installation program files folder, it doesn't work! None dialogs, console windows and even no processes on task list. Can anybody helpme Erik Castaneda segersall@hotmail.com Management Studio Express fai ...Show All
Visual Studio Express Editions Student-Developer-Hobbyist
Hello out there! I'm excited to have received a copy of Microsoft Visual Studio 2005 Express! I have had previous experience with Microsoft Visual Studio .NET 2003, as a student. I continue to be a student, as well as a hobbyist, and, hopefully, some day, a professional software product developer! To this end, I would like to, if at all possible, obtain a downloadable copy of Microsoft's Visual Studio 2005 Express Manual - so that I could peruse the data and use it, along with sample projects, so that I could become comfortable with deployment of the suite. As much as I enjoyed the Visual Studio .NET 2003, I am really looking forwar ...Show All
Visual C# Open new form when button is pressed
When i make several forms in the same projects, i want them to open when i press buttons in the forms. I double-click on a button to view the code-part, and I want to make a new object of a form that I want to pop up when that button is pressed. Say Form1 f = new Form. When I start typing Form1, VS will show a list of matching forms, but sometimes the forms i want to use doesnt show, and I cant make objects of them. Does anyone know why I have saved them and they're in the same project... yes its different name space so you can't see it unless you imported the other name space in your form1 if this is ...Show All
Visual C++ Type casting question
I need to convert one legacy C++ type to .NET type.I would like to know which is the preferred one.I am writing code in managed C++. int a; 1)System::Int32 i = (System::Int32)a; 2)System::Int32 i = Convert::ToInt32(a); Thanks in advance Jimmy Martin, This actually confused me.This syntax looks like legacy C++ casting.Is this preferred in C++.NET What is your reason for using the same ...Show All
Visual Studio Express Editions Error when starting Visual Webdeveloper Express ?
Hi there, I'm getting the following error when i try to start VWD Express : Package Load Faliur Package 'Visual Studio Explorers and Designer Package' has failed to load properly (GUID = {8D8529D3-625D-4496-3DAD630ECC1B}). Please contact package vendor for assistance. Application restart is recomended, due to possible enviroment corruption. Would you like to disable loading this package in the future You may use 'VWDExpress/resetskippkgs' to re-enable package loading. I have uninstaled all previous versions of the beta release and other things that might could have been an issue. Does any one know what i can do to fix this problem /Websam ...Show All
Visual Studio Tools for Office VSTO Advice: Need your design advice for outlook addin
I'd be grateful for any design advice regarding an VSTO Outlook add-in I am trying to build. When the user starts Outlook, I want to have a default form (perhaps replacing the default "blank" email space) where the sender enters some information and the email is then generated for them - where the sender can continue to edit the mail from that point. I know how to create a dialog upon loading a "new" email and then generate the final email - but I was hoping it could become part of the default email form they could use. Can you please share a few design steps ideas that would do accomplish this Maybe there is ...Show All
