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

Software Development Network >> Visual Studio

Visual Studio

New Question

Issue with Validation.Add
Before I go out and buy VSTO...
.Net 2.0 SDK install problems?
Moving text within a document without using the clipboard
Button is not getting removed after uninstalling the Word add-in
Is there a possibility to increase the SqlCommand execution timeout?
XML document in data grid view
How to support Temporary Projects
Modal Windows And Transparency
Custom task: assembly could not be found

Top Answerers

MK_VBCODER
Steve Savage
PETER_WHITE123
Bob - GP
Rits
iscbaltazar
TheSavage4
Irfan Kalkoti
jeromyk
tomorrowswings
xAssets
Only Title

Answer Questions

  • pjella MDI Threading issues?

    Hi, I'm hoping someone can help. I'm using the report viewer in an MDI child window. Users can be viewing several reports at once. The problem is this: If a user closes the MDI child window, while the reportviewer is at work (say, drawing print preview pages or generating a report) and fires up a new window reasonably soon (the old reportviewer will continue its work while not being visible), the application will crash. Is there something I nee ...Show All

  • Cory422 Reuse class designer?

    This is a longshot...but here goes. I have to provide a "class designer-like" UI for a project (the designer creates an xsd that represents the design of a business object). The timescales are really tight. Is there any way I can reuse any of VS 2005 class designer classes to help deliver this functionality Thanks in advance Stuart Thanks. I will look into it. ...Show All

  • Ralf Hedler leasing mechism in WCF

    Hi everybody, In a WCF lecture I presented last week for the local Visual C++/C# user group one of the attenders asked me the follwing question: I wanted to ask about the alternatives I have in WCF for leasing CAO. That is, I have server instance per client (similar to DCOM), and I am using the leasing mechism in order to know (at the server side) when the client died. Thanks! Ido Samuelson http://www.devauthority.com/blogs/sam ...Show All

  • karnayanar DataTrigger to mark selected item in ListBox?

    Hi, I am quite new to Avalon and I have a question about DataTriggers. I have a ListBox and I want to edit the style of the marked item in the list. I have figured out that I probably need DataTriggers, but I don't get it to work. (I'm using the February CTP) I have a ListBox containing of TextBlocks, in the Style for those TextBlocks I have the following code: <Style.Triggers>     <DataTrigger>  &n ...Show All

  • Vladimir Radovic accessing "new mail" objects of outlook in vb.net

    Hi,         i'm working on outlook mail programming. My problem is i want to get the objects of email fields, e.g. in " To... " section where we type email address , i want to get the object of that text box so that i can easily access the text(or email address) in my code. Such like that in " cc...", "Subject", "Body " ,I want their objects too.        ...Show All

  • Red2034 crystal reports .net licensing question

    can the crystal reports generated in Visual stdio 2003 be distrubuted and deployed over the web. what are the licensing\legal issues invloved. please give accurate answers because no one likes to get sued. Hello Sandeep, Here is a link to licensing with respects to Crystal Reports and Visual Studio bundle: http://www.businessobjects.com/products/reporting/crystalreports/net/licensing.asp Keith - Business Objects ...Show All

  • BPMIlls2001 Visual Studio 2005 Remote Debugger (Windows Service)

    Greetings, I have now worked for several hours in order to resolve a problem we are having in our development team. We have a Windows 2003 server (all patches applied) and multiple XP clients (all patches applied). We are running a mixture of VS 2005 Team System and Professional, and we can all debug, if we are using the method, where we log on the server w. TS and start the Remote Debugger "host" application. However, this ...Show All

  • kgs51 RowNumber Help

    How can I have the Rownumber by groups instead of for whole reports Currently, my code is Rownumber (Nothing). But, the running mumber is from the start of the report until the end of the report. How can I only let the running numbers starts by a group & end in that group Where shall I put that code How shall I put it Please advice. Thank you. ...Show All

  • JEA Problem with List type value property

    I'm having a problem getting a value property with a non-standard type to work as expected. I want to add a value property with a list type to one of the classes, so what I have done is created a trivial subclass of System.Collections.Generic.List whose type parameter is a trivial class with a few properties: public class ViewCollection : System.Collections.Generic. List < ViewItem > { } public class ViewItem { p ...Show All

  • Ian Bell Check in web service that are already under source control for VS2003

    At this moment we are upgrading web services, that are already under source control, from VS2003 to VS2005. The upgrade is successful, but when we want to check these web services in VS2005 is complaining that the *.asmx is already under source control and stops with check in of the other files. For a web service we checked the other files in with our source control manager and reopened the project. VS2005 do not notice that these files (app_cod ...Show All

  • Asifkhan75025 Accessing MSDN from server

    What i would like to do is install MSDN on the server and allow everyone to access it using a shortcut rather than installing it on the machine locally. I have the license for each user and not sure how to go about this as some machines are regulary formatted in order to trial out other software and MSDN takes up a lot of space and time when we have to reinstall it on production machines Thanks Thank you very ...Show All

  • STSC Error setting ServerReport.ServerURL or ServerReport.ReportPath properties

    Hi all, I am using the ReportViewer control in my web app to view server reports. Sometimes when I try to set the value of the ServerReport.ServerURL or ServerReport.ReportPath properties during postbacks, I get an "Operation is not valid due to the current state of the object" error. I've tested this on many reports and found that the error only occurs when the report I'm viewing right before the postback is a linked report (i.e. the ...Show All

  • IanMuscat Lambdas in Custom Attributes

    I want to pursue the concept of embedding lamdbas in custom attributes. It is not supported today to my knowledge but I believe could be very valuable for DLINQ and more.  public class Customer {   [Association((c, o) => c.CustomerID == o.CustomerID && o.Status == OrderStatus.Incomplete)]   public Order[] IncompleteOrders; } I believe that a syntax such as this would generalize the join conditions that are sup ...Show All

  • cvuppala1259 Using Properties and Call like NAnt

    NAnt has a nice feature where you can use a combination of properties and the call task to repeat operations. For example: <target name="target_one"> <property name="A" value="Value1" /> <property name="B" value="Value2" /> <property name="C" value="Value3" /> <call target="ALongProcessWithManySteps" /> </target> <target name="target_two"> <property name="A" value="Value4" /> <proper ...Show All

  • RolandP Router sample

    Hi everyone, I'm trying to write a really simple router to understand how SOAP intermediaries work and also to play with reliable messaging, but I'm having a few problems. I've tried the Router sample and it works well, but there's a little too much going on for a newbie like me :) I want something that just receives a message and forwards it to another endpoint. When I've tried to do this, I can receive a Message instance OK (using Action=&quo ...Show All

91011121314151617181920212223242526

©2008 Software Development Network

powered by phorum