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

Software Development Network >> Visual Studio

Visual Studio

New Question

Generating wsdl:documentation from WCF
MSBuild in VS 2005 Release Candidate
Merging auto-generated code with custom code?
I think that is a Bug in Visual Studio 2005 (ActionsPane)
Problem deleting excel sheets
Managing deletion of bookmark controls
Microsoft office web components 9.0
VBA Invoke Managed Code
Using Windbg to investigate memory leaks from ummanaged code
Web Project pdb files - VS always want to add to sourcesafe

Top Answerers

Tom Rahav
Millimina
Jeevann
Morcollo
Ratish
Rof
Anon56789
Todd Kitta
Maluco
T_
Russian Software Developer Network (RSDN)
Only Title

Answer Questions

  • SJ100 How-to: create a custom tool that runs directly against a model file

    The T4 engine that ships with the DSL tools gives you a flexible way to generate text output based on the contents of a model by running a custom tool against a template.   However, in a production environment, you may not want a user of your designer to have access to the template. You might prefer the user experience to be more like that provided by the Microsoft dataset generator, where the custom tool runs directly against the mod ...Show All

  • tehlike Using Refedit Control in VB or Vb .net

    Hi, I would like to know whether by any means we can use Refedit Control in VB or Vb .net or it is just supported in VBA. Is there any alternative (other than Input Box which I already know) to Refedit for selection of excel spreadsheet data thru com addin regards, it is only supported in VBA. Also see this thread http://forums.microsoft.com/msdn/ShowPost.aspx PostID=22685 ...Show All

  • RNL Manager deploy VSTO 2003 for excel 2003 in network folder

    Dear All I have a VSTO 2003 solution for Excel 2003 in C#. i need to deploy it in the secured network folder. and create shortcuts for end users to use the same file. i searched net i managed to get 2005 related help. i couldnt find 2003 Pls help me thanks Youtham anybody in house :( Pls Help me Hi, 1. After building your VSTO 2003 sln, and ...Show All

  • Ducolino ExactlyOnce via config file

    I'm having trouble turning off the ExactlyOnce setting on a msmqIntegrationBinding via the config file.  I have tried both assurances="None" and exactlyOnceDelivery="Boolean" on the binding configuration element but keep getting unrecognized attribute exceptions. Has the attribute name changed again Hi there, Yes, the attribute name has changed to exactlyOnce . Hope this helps, krish ...Show All

  • GordonW transforming an element to a bitmap

    Is there a way to transform a framework element to a bitmap The SDK includes samples to transform a framework element to XPS and print but not to bitmap. RenderTargetBitmap is what u need. Try to create a Brush from this Element. Then, create your Bitmap using this brush. Hi Tom, below is one way of doing it, although I haven't tried it since the September CTP so t ...Show All

  • JTechOnlineGuy PDF Compression issue with the ReportViewer

    I would like to know if there are plans to fix the issues with huge PDF export when using the ReportViewer in the local mode.  As ReportServer is not an option for us, I was wondering if you guys already fixed it or even if that is being considered at all.  Thanks and appreciate a prompt reply from MSFT   Its not that BIG of deal, there are a number of work arounds and for most apps Report Server ...Show All

  • Sunil Linq Binding issue...

    Hi, I've hit a problem that is probably as much my naivety with data bindng as much as anything but it's kind aintriguing.... If I bind my Noddy app to a form to try and display a 'Contact' I have an issue. I've mapped each 'Contact' to a number of 'Sectors' and bound all Sectors to the Listbox, checking those that are valid. However, as I'm binding direct to the objects we get problems. I've added Sector objects to the Listbox, setting Disp ...Show All

  • Rakesh Ranjan Difficulty in Installing VS .Net, Bundled all Cds into a single folder

    Hi      As per the document (ReadMe) in the installation cds of my VS .Net, I copied all the contents of the Cds into a single folder (overwritten  files if asked). When i started installation from the hard disk, it was successfull. But when I made the folder into a single Dvd... and started the installation, it regularly asks for the next cds... i changed the baseline in the setup.ini as ../WCU ... as per the r ...Show All

  • adnan152 Rendering a report inside a PrintDocument

    Is it possible to use an embedded report to render on to a Graphics object, like the one that is given in the PrintPage event of the PrintDocument class Graham Yes, export the report to EMF format. You get one EMF stream per page, which can be rendered to the Graphics object in the PrintPage event. ...Show All

  • MBZ Inheritance problem?

    I'm having a problem creating a ServiceHost using two servicecontracts which inherit from the same parent servicecontract. When I try to create the host the following error occurs: ArgumentException: An item with the same key has already been added. My guess is that the creation thinks that both IServiceContract's are two different contracts, which they are not. Is there any solution to this or something I do wrong Creating one contract for both ...Show All

  • bangorme WPF is going be absent in First Vista Release

    Hello all, I am reading on some news groups that WPF is not going to be there in initial release of windows vista. Does anyone knows more about it I cannot imagine vista without WPF. Any thoughts from experts Thanks Basav Is there another "Great Wall": Someone are developing using WPF, while others (in MS) use some native API In Office 12, you can see many effects that co ...Show All

  • JaneTrev InfoPath Consumer: 400 Bad Request problem

    I am trying to consume WCF services using InfoPath. However the IIS always returns 400 Bad Request. If I use WebServiceStudio the services goes well. Here are the requests in the wire using IngoPath POST /test/aa.svc HTTP/1.1 SOAPAction: "http://tempuri.org/StringService/GetUpper" Content-Type: text/xml; charset="UTF-8" User-Agent: SOAP Toolkit 3.0 Host: ia-bfcamara:8081 Content-Length: 621 Connection: ...Show All

  • N2O How to new a reporting service project

    I can new a reporting service project in VS2003 when I have install the reporting service . But how can I new a reporting service project in VS2005 I have install the Sql2005, and the reporting Service is selected when installed I have re-install Sql server 2005, and there is a Business Intelligence Development Studio shortcut in the start menu. I click and open the visual studio 2005, but I still can't find ...Show All

  • Tadek Visual Studio Packaging utility problem

    Hi All, I am really having a hard time doing this... I have a simple add-in that shows a message upon launching Excel. The add-in works fine on my machine, which I used to create the add-in. But when I try to load it on another machine using the .msi that gets generated by VS .Net, I don't see that message! :( I have made sure of the following: that I see the registery getting created on the other machine (with load value set to 3). I hav ...Show All

  • ames TreeView + HierarchicalDataTemplate

    I'd like to bind an Object form the following class to a TreeView class MyObject { private string name; private List<MyObject> childs; public string Name { get { return this.name; } } public List<MyObject> Childs { get { return this.childs; } } } My Treeview looks like: <UserControl> <UserControl.Resources> <HierarchicalDataTemplate DataType="{x:Type local:MyO ...Show All

343536373839404142434445464748495051

©2008 Software Development Network

powered by phorum