Answer Questions
BortNE24 Visual Studio .NET 2003 Install
Hi guys, I'm installing Visual Studio .NET 2003, when i insert CD 1 on my computer, there is a message that says you need Prerequisites CD, so i inserted the prerequisites CD, and it says "this is not prerequisites CD", so i explored the CD and found this file Setup.exe, i run it and installed all the components , then i insert again CD 1, now the messages says, the version of the components installed is not the one i need to install Visual studio .net, i can't understand it, cuz i have this installed now: Windows 2000 SP4, Microsoft FrontPage 2000 Web Extensions Client , Microsoft Internet Explorer 6 Service Pack 1, Microsoft Data Access Components 2.7 Service Pack 1 Release, Microsoft .NET Framework 1.1 , Microsoft Visual ...Show All
KitGreen How to get Browse information
I'm trying to build a VS AddIn and have been researching how to do it. I've been able to piece together most of it from the samples, but I haven't figured out how to do this next bit: I need to know what code objects (classes, methods, members, namespaces,etc.) are currently defined in all the projects in the solution. Ideally, I'd like to know the type, name, source file and source line of all of these objects, and moreover, I'd like to be able to subscribe to an event source to let me know when that data changes. Is there a sample or something that shows something similar I've found quite a few examples of how to provide that sort of information through implementations of IVsLiteTreeList and IVsObjectList2, but my attempts at cons ...Show All
Ted. Code references on the scrollbar?
Hello, I'm used to using Eclipse IDE and one of the features I like is that when you left click any variable, all occurences of that variable in the code are highlighted on the scroll bar with little markers. You can click any of these markers to jump to that part of the code. It seems like the scrollbar doesn't have anything like this in VS as it is a standard scroll bar. There is a coloured line on the left with green and yellow but I don't know what that means. Is there any functionality to provide quick linkages between variable references in VS Do I have to right click and ask for the list That isn't very quick at all and is rather clumsy. Is there any extension that can add this functionality Thanks, Christopher ...Show All
Alex Yakhnin - MSFT How to get started?
I installed Sandcastle, which is supposed to be a VS 2005 add in I don't see it in the list of available add ins, nor is my menu any different. How do I get started with it Marina, If you're used to the NDoc GUI, you should really try Eric Woodruff's Sandcastle HelpBuilder that he mentions (at http://www.codeplex.com/Wiki/View.aspx ProjectName=SHFB ). His user interface is almost identical to NDoc and the results are already much better than the best available incarnations of NDoc for VS2005 (E.g. Jonas Lagerblad's at http://jonas.lagerblad.com/blog/ p=5 which I have been using until recently). The HelpBuilder is simply a shell around Sandcastle which gives it an NDoc like interface. It also ...Show All
Shaun Moore Report Viewer 1.1 authentication
Hi, I am using the samples Report Viewer for .net 1.1 framework , which talks to 2000 and 2005 report server using URL access method and runs fine. The report viewer control for 1.1 is not providing me the required security as it makes a direct connection from client browser to report server and thus I have to run the report server under annonynomous access else it pops up a dialog box for user credentials. Can someone you please help me , how to modify the code to add windows authentication in it so I do not need to run the web applications under annoynomous IDs. ...Show All
JacksonJones How to embed one WPF Window into another?
How can i embed one WPF Window into another WPF Window I am not familar with DirectShow under XAML, the following did work for me. Hope it helps. Alan Painter www.TechwoodGroup.com < UserControl x:Class = "... " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " Loaded = " OnLoaded " > < Viewbox > < StackPanel > < MediaElement Name = " myMediaElement " LoadedBehavior = " Manual " > < MediaElement.Triggers > < EventTrigger RoutedEvent = " MediaElement.Loaded " > < EventTrigger.Actions & ...Show All
MoniDD How can I send message to special peernode not the whole mesh
How can I send message to special peernode not the whole mesh I mean not broadcast message to whole mesh thanks Hi WindWang, It is currently not possible using a PeerChannel to directly send to a specific peer. However, an application can learn about endpoints of each peernode and choose to establish private communication between peers. Could you please elaborate on your design that required you to send direct messages thanks, -ram pamulapati The thread below should also help answer how to go about adding this logic to your app like Ram explains above.. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1071652&SiteID=1 -Shalini ...Show All
numbatit Using a Setter in a DataTemplate's DataTrigger, to modify a Property of data object?
I have a DataTemplate for ListBoxItems, in this template I would like to use a DataTrigger that triggers on the ListBoxItem's "IsSelected" property beeing set to false, to change a property of that databound object. Is this possible with pure XAML (I.E instead of subscribing to the ListBox' SelectionChanged event, and from there change the property.) Hello! Please allow me to put a follow up question: How then so set a property on the ListBoxItem from within the DataTemplate, for instance the command which should be invoked as it's being clicked or the like Best regards, Henrik Dahl Hello! I must say I don't really make it to ...Show All
XNA Rockstar How To configure application develop by VSTO for exchange server
I have developed an application using VSTO.It is working Fine for the desktop machine.Now I wants it also to work for exchange server. What will be the guide lines that I have to follow We need more information on this question, Exchange is a different application and as such is programmed in different ways but not using VSTO as this is linked to the Office Client side solutions primarily. Here are details on the Exchange 2003 SDK http://www.microsoft.com/downloads/details.aspx FamilyId=463F0649-6274-45EA-B647-E6BE1425C893&displaylang=en Regards I am not sure I understand what you are trying to do. Can you provide more details what this appliction is about, what architecture you envision and what problems ...Show All
xRuntime Starting new project => should I use WPF or Windows Forms?
I am just about to start with developing new standalone application that I expect to be ready in year and half. It should replace existing old version written in C++ using MFC. My first idea and reason to start was to improve mainly UI and to use C# .Net 2.0 and Windows Forms to achieve this. But now I found that there is something like WPF in .Net 3.0 and it seems like soon future. So I am really confused. Do you expect .Net 3.0 to be RTM sooner then in one year Is current state (June CTP) ready to start application development that would make sense or is it just for “playing around” and API changes in future will be too big I would like to use new technology but I don’t want to loose all my hair. ...Show All
John Lockhart Package problem
Hi, I have some problems with packages. I am developping a software from an open source program to add some features. I placed the open source in a package and my source in others packages, but it seems that not all classes in the open source package are really in this package. When im attempting to import a class in this package, it doesn't recognize it, like if the class was not in the package. Ex: package A; import B.*; class A { } package B; class B { } My problem is that i don't see the class B in my class A, like if the class B is not in package B. Is Class B declared public in the package B If it does not say anything it's private and is not accessable in the package A. eg. public c ...Show All
RPKJBP Guidance Automation Extensions Registration does not work
Hi when I try to register in order to get GuidanceAutomationExtensions.msi I get:" The page cannot be displayed" Page. How can I get the installation file manu I am also unable to get the download to work. Same error as PStecker got: We're unable to complete your request The Passport Network is experiencing technical difficulties. Please try again later. source link: http://www.microsoft.com/downloads/details.aspx familyid=C0A394C0-5EEB-47C4-9F7B-71E51866A7ED&displaylang=en Hi manu, I just tried this and is working fine, have you tried this again This looks like a temporary error... I ju ...Show All
Anton__ Runtime lambda expressions
Hi, I have just tried to update a lambda expression in runtime... but I found no way... Is there a way to do it I mean building a lambda expr.. from a string captured at runtime... Here is my trial, it only works if lambda exp can be evaluated at compile time: static System.Expressions. Expression < Func < int , bool >> e = x => DoSomeMath(x) < 100; static void Main( string [] args) { Console .WriteLine(e.Body.ToString()); Console .WriteLine(e.Compile().Invoke(5)); e = x => DoSomeMath(x) > 100; Console .WriteLine(e.Body.ToString()); Console .WriteLine(e.Compile().Invoke(5)); string s = Console .ReadLine(); if (s == "+" ) e = x => DoSomeMath(x) >= 1; Console ...Show All
etude Error 403 when browsing to Service.svc file
I am trying to run one of the wcf samples. I am deploying the server to IIS 6 and keep getting Http Error 403 Forbidden when I try to browse to the service.svc file. The directory and files appear to have the right permissions set. I added a Default.aspx page to the same directory and it works fine. I changed to Basic authentication and the Service.svc file returns the 403 error before I am even prompted to login. The Default.aspx page prompts me to login and then displays correctly. I had the sample working fine on my Windows XP workstation it just won't run on Windows Server 2003. Does anyone know what else I can check to get this working Thanks, Matthew Sajay, Actually that is exactly w ...Show All
Spence-FHS Deadlock in ReportViewer?
Hi there, I'm stumped by the following: My program loads a report into a ReportViewer control (in LOCAL mode!), populates its datasets, then executes the report. Then I start changing the paper source and orientation in the Page Setup button in the toolbar. Every 20 times or so that I change something and click OK, the entire app hangs, showing the animated green circle (now frozen) and "Report is being generated". I can attach a Visual Studio debugger, and I get the following stack traces for two of the 5 or 6 running threads. Anybody seen this before, or have an idea of what's going on FIRST THREAD [In a sleep, wait, or join] > mscorlib.dll!System.Threading.WaitHandle.WaitOne(long timeout, bool exitContext) + 0x2e bytes ...Show All
