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

Software Development Network >> Visual Studio

Visual Studio

New Question

Exception thrown when using .Assign(value)
Not able to install Visual Studio.NET
removing LINQ preview
Silly answer [:D]
Problems with opening custom Forms in Outlook 2003, VSTO 2005
deleting VSTO Word File from Bin while VSTO doc is running.
Outlook + .NET
Why can't I use Kerberos with Transport security mode?
SourceSafe Web Service cannot be accessed at teh specified address, error 0xC0CE509
foreach or yield on a 'stream' instead of an IList?

Top Answerers

Victor_Acosta
tseiy
Kenneth Clapp
Kevin.Ji
Rigeto
sgnet20
ghelobytes
T Solutions
Erik Ropez
debug13
XNGR
Only Title

Answer Questions

  • kiki10 Problem Installing WinFX Components Beta2 on Compaq TC1000 TabletPC

    When running winfxsetup on my TC1000 (Transmeta Processor), it starts normal, but then the extraction-progress-dialog stop at 75%, the setup-process is running and consuming cpu-time, but nothing happens (I waited 6 hours, before giving up). What am I to do Thanks for your reply, Heiko I don't know this kind of processor so i can't respond But have you try what Mark suggest ie , find a log fil ...Show All

  • biscuitlad About WCF Security

    I have a couple of WCF Services that a client is going to use. When the users login on the client i want to authenticate them using a authentication service that recieves the username and password. The authentication service compares the credentials to a userrow in a database. After the client it authenticated i want the user to be authenticated to all my services. My requiered scenario assumes that i get some kind of "object" as a ...Show All

  • pmj58585 How can I put one canvas on top of another? or How can I draw multiple layers in the same area?

    Pretty new to graphic dev, so please bear with me. I have an animation (a wheel with colored circles on its outer edges, that spins), which I accomplish by drawing a large ellipse, and some smaller ellipses (sp ). I do this on a transparent canvas, then I rotate the canvas. Conceptually, what I would like to do is draw an opaque rectangular structure over the animation layer, but provide a small "hole" or view through the opaque ...Show All

  • trashVin Pulling Release via Labels through Remote Access

    We have worked through all the common issues to get the remote access functioning for VS2005.  Currently my developers pull their release down through VSS2005 via a label.  Now that we have remote access available can they pull a project via a label name through VS2005 remote access   We have successfully checked out and in individual solutions, but do not see the labels.  I assume when we did this we were just getting the t ...Show All

  • MarkDeibert visual studio 2005 beta 2 GetProjectTemplate for web service project

    I'm using the following code to retrieve the standard VS 2005 project template path for an ASP .NET Web Service in C#: string ProjectLanguage = "Web"; string ProjectType = "CSharp\WebService"; ((EnvDTE80.Solution2)sln).GetProjectTemplate(ProjectType, ProjectLanguage); Unfortunately, the path for an ASP .NET Web Service in visual basic is returned: "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ProjectTemplates\Web\VisualBasic\1033\WebSe ...Show All

  • Maluco Rotate Window

    Hello Is it possible to rotate a window with WPF. When i have this on my main window <Window.RenderTransform> <RotateTransform CenterX="0" CenterY="0" Angle="45"/> </Window.RenderTransform> i get Error at element 'BamlAttributeInfoRecord' in markup file 'Window1.xaml' : Transform is not supported on Window.. kind regards Dieter Is the window in Windows Vista ...Show All

  • ivolved Loading a image at runtime in Crystal Report XI

    Hi I am using crystal reports XL. In this I have to code in C# such that , it have to load a image at run time in crystal ReportXI . I searched and I found a example of how to load a image at run time, whcih is given i n VB.NET... In that form employs with acrystal report viewer , a buttton (named loadimage) then, ther is a xsd file named dsImageReport.xsd the xsd file has 2 fieldnames i) "Name" type="xs:string"       ...Show All

  • legrooch Multiple Hosts?

    I'm trying to configure multiple service hosts with multiple end points in each using self hosting. The code looks something like this: Uri baseAddress = new Uri ( "http://localhost:8080/OxfordCRMWCF" ); ServiceHost sh1 = new ServiceHost(service1, baseAddress); // --- Add a Service End Point ------------------------------------------ sh1.AddServiceEndpoint(contract1, new WSHttpBinding(), baseAddress.T ...Show All

  • cyles What's a good way to Render to a bitmap that is a different size to the Visual?

    I've got a fancy looking chart control I've written, and people will use it to generate plots for Powerpoint presentations, so I need to be able to copy the plots to some fixed size like say 1024x768. Say I have a button "Copy Plot To Bitmap". Ok my code will look like this: private BitmapSource RenderToBitmap( double width, double height) { double baseHeight = this .ActualHeight; double baseWidth = this .Ac ...Show All

  • Joshua Belden VSTO & MS Access

    I'm just trying to get up to speed on the new Visual Studio 2005 and the new Tools for Office.  We do a lot of work with MS Access (and Excel) and what I find odd is that in all the articles I've read there is not mention of MS Access w.r.t. the VSTO.  Do the VSTO not work with MS Access   What am I supposed to use if I am doing development with Access 2003 Can someone please clarify how VSTO works with MS Access   We've alr ...Show All

  • WillTartak export each page on different pdf file

    Hi! I have a dataset containing two related tables. The parent table contains many rows. Each of them normally creates a page in my report. Is it possible to export each of these pages into separate pdf files The most simple thing to do would be to loop through each row, copy  it to a new dataset, copy also the child rows and then perform the export to the new dataset. Can you think of a more elegant  way to do that Thanks Dimitris ...Show All

  • pranka Invalid PropertyDescriptor Value -- please help!

    I'm using the Feb CTP, and I'm trying to use a property in a trigger. Here's the specific XAML: <Window x:Class="TestThingie.Window2" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " Title="Renamer" Height="300" Width="300" > <Window.Triggers> <Trigger Property="Test" Value="True"> <Setter Property="Window2.Background" Value="Blue ...Show All

  • Alex Plepler Is there anyway I could get the position of a control(FormField) relative to the screen edges instead of the window edges?

    Hi, I could not get the position of a control relative to the screen edges instead of the window edges, is it possible I have a word application in which Form Fields are getting created at runtime, on selection of a particular form field, I want to display win form exactly at the position where form field has been placed. Thanks in advance. Saurin You should be able to access the VB6 GetPoint() method ...Show All

  • kosednar How to get IWin32Window for Show/ShowDialog in Excel

    In my workbook.cs file I am trying to open a form, I need a handle to excel to pass into the Show/ShowDialog method for the IWin32Window parameter so that the dialog doesn't get hidden. I'm not 100% sure on this one, but I think you may be looking for XLMAIN (OpusApp for Word, OMain for Office, PPFrameClass for PowerPoint) - the "parent names" for the application windows. Yes, unfortunately tha ...Show All

  • LProgrammer Release Build

    I have just upgraded to VS 2005 Express Beta2 and I can't fine where the release build option is. And help points me to the wrong place. So where can I change my build option from debug to release Normally you should be able to customize your toolbars and add those combo boxes yourself if the profile doesn't have them, but I can't find them anywhere in the customization dialog either. I'll report that to the a ...Show All

121314151617181920212223242526272829

©2008 Software Development Network

powered by phorum