Software Development Network Logo
  • .NET Development
  • Windows Live
  • Architecture
  • Microsoft ISV
  • Visual J#
  • VS Express Editions
  • Visual FoxPro
  • Windows Forms
  • Visual Basic
  • Visual Studio
  • Windows Vista
  • VS Team System
  • Visual C#
  • Visual C++
  • SQL Server

Software Development Network >> Visual Studio

Visual Studio

New Question

Scrollable Containers
How do you reference to an assembly to a project programmatically?
Adding Controls to Windows Forms using DTE
Can modal dialog box be opened from VSTO solution
Weird Stepping Behavior
Error 1402 Installing VS 2005
Adding dynamic menus and events in Outlook
FrameworkElementFactory woes
Problems with VSS 6
Reflector Add-In Inquiry

Top Answerers

shax
Parmenides
XML-Dan
Adrian w
AreaScout
Dandan8752
zq3
BBJ
TheMatrixDuck
danielgary
Red Gate Software Limited
Only Title

Answer Questions

  • bsaucer Exception loading a window

    In opening the main window of an application I am getting an exception. This appears to be in deserializing the BAML for the window, and gives no clue on where the source of the issue is. If someone in MS could look at the stack trace and point in the right direction that would help. Declarative programming needs much beter diagnostics than procedural coding since I have no idea what part of the file is causing this. at System.Windows.Templa ...Show All

  • TimurM Warning msg box annoyance

    Hi guys, Please, limit the --------------------------- This is an unsupported version of Microsoft Visual C# 3.0.  As such many features may not work as expected. --------------------------- appearance to one time per install. It is very annoying Cyrus: Yes, I see your point. However, due to the beta (ok, preview) nature, users should be warned anyway. (btw, same problems might happen by using any beta or ctp version o ...Show All

  • Tailor Checkbox list as property type which is created dynamically at runtime

    hi, i have two classes in my designer: A and B . In my diagram there is A1 a instance of class A and B1 , B2 and B3 who are instances of class B. A1 should have a property whose type is a checkbox list and the checkbox list items should be B1 , B2 , B3 . So the items of the checkboxlist should be filled with name of the instances of class B that exist in the diagram. Is there a checkbox list type for a class property I know that ther ...Show All

  • Tuur P Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid

    I have installed a RC version of VS Team Suite along with full MSDN installation. After completing installation, I'v got " Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid " error when I have tried to access it by doing "Start" -> "All Programs" -> "Microsoft Developer Network" -> "MSDN Library for Visual Studio 2005" When I accessed it from VS ...Show All

  • y2u3 Generating Type from Xsd using SVCUTIL tool

    Hi, I have a DataContract whis has array of strings as one of the DataMember. with this I generated schema, and now I want to generate DataContract type. I am getting the following error when genrating type: C:\TEMP\SVCUTIL Generated>svcutil /dconly /t:code Honeywell.BusinesFLEX.OMOI.Ope ratingInstructions.xsd Microsoft (R) Service Model Metadata Tool [Microsoftr .NET Framework, Version 3.0.50727.357] Copyright (c) Microsoft Corpo ...Show All

  • Waheed Iqbal Crystal Report Login Code

    Hello THere ... I have Crystal Reports in my Project .. I Use the Following code to Programmatically apply Login Security to the Reports.     Private Sub ApplySecurity( ByVal MyReport As Object )         Dim crtableLogoninfo As New TableLogOnInfo         Dim crConnectionInfo As New ConnectionInfo       ...Show All

  • jlgervais Why is MessageBox undefined after importing System.Windows.Forms?

    I am new to Visual Studio.  I have VS 2005 Beta 2 installed.  I have a simple exercise from a book which Imports System.Windows.Forms at the top and then calls MessageBox to display results.  Here is a code snippet: Imports System.Windows.Forms Module Module1     Sub Main()         Dim amount, principal As Decimal         Dim rate As Double   ...Show All

  • StLaEmpira Missing Icons and Bad Links in MSDN

    Hello. I'm having trouble with my installation of MSDN. Some of the little icons that should appear next to some of the links don't show up, and many of the links don't work. When the links don't work, I get a JScript error "Object does not support this property or method." If I attempt to debug it, it's always a simple, one-line, code block, such as; alink_301.Click() This is an example of what the missing icons look like. The little box ...Show All

  • MattiasJ Differences in syntax support between LINQ and DLINQ

    With standard LINQ: Given: Func<Customer, bool > IsFromLondon = c => c.City == "London"; Customer[] customers = GetCustomers();   We can get customers from London either by calling: var fromLondon = customers.Where(IsFromLondon);   or the simple syntax: var fromLondon =   from c in customers   where IsFromLondon(c)   However with DLINQ: Given: Expression<Func<Customer, bool >> ...Show All

  • Vishu Do I really need subreport links for independent subreports?

    Hi all, I have been Google-ing and searching for an answer to this simple question, but to avail. I have created a complex report which contains 4 subreports. These subreports run independently from the main report (ie. the main report and each subreport has it's own SQL Statement which run independantly from each other) and there are no subreport links because there is no need - the subreports do not reference any fields etc from the main ...Show All

  • cruzer Why can't show the Indigo Service Page?

    I have downloaded the Lab 1: The Fundamentals of Programming the Windows Communication Foundation, follow the lab1 correctly. Build it successfully,but I choose Run from the windows Start Menu,and enter: http://localhost:8000/Derivatives/ IE has no page,error text: Why How can I show the Indigo Service page Thanks a lot!! Koukai Internet Explorer cannot display the webpage Most like ...Show All

  • Anvar Implicit parameters in lambda expressions

    Consider v.FindAll(x => x > 5) We could use an implicit parameter in order to supress the parameter list. So we need a keyword to refer to the undeclared parameter, for instance "it" or "_1". The previous code would be equivalent to: v.FindAll( => it > 5) or mayby: v.FindAll( it > 5) For an unnamed second parameter we could use it2 or _2 etc. Is there any problem with this new simplification   ...Show All

  • Kapul FlowDocumentPageViewer issues when maximizing main navigation window

    I am using an instance of FlowDocumentPageViewer inside a Page in my navigation application (not browser hosted). When the application opens the main windows is not maximized. If I resize the main window using the mouse, the FlowDocumentPageViewer and its text content is properly resized. On the other hand, if I click the maximize button the main windows maximizes, the FlowDocumentPageViewer is properly resized BUT its content (the text, paragra ...Show All

  • Adam Vanner Security in Crystal Reports.-

    Hello, I have developed a program in C#, and used SQL Server for the database. Now, I'm trying to design some reports with Crystal Reports. My problem is this: The data the program shows to the user is always restricted by a couple of Stored Procedures that handle the Security. These Stored Procedures determine which data the user can see, depending on the user's profile and by the permissions the user has (which can be changed online). I need ...Show All

  • C. Wells Binding to PathFigure.StartPoint. AKA whats wrong with this XAML?

    I have an ItemsControl that holds a collection of objects. It makes use of an ItemContainerStyle that looks like the following  <Style TargetType="{x:Type ContentPresenter}">    <Style.Triggers>     <EventTrigger RoutedEvent="TextBlock.Loaded">      <EventTrigger.Actions>       <BeginStoryboard>      ...Show All

747576777879808182838485868788899091

©2008 Software Development Network

powered by phorum