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

Software Development Network >> Visual Studio

Visual Studio

New Question

Adding DataSource to a ReportViewer dynamically
Generating proxy on the Duplex example
change the legend names
Checking out
Future of Federated Security after Beta 2
Use of OperationContext.Current for duplex
VS2005 Crystal 10 rpt to servr with Crystal 9?
Appointments Start and End
Infopath listbox question
VSS2005 and Web Projects---can't add to source control!

Top Answerers

sar3000
Therese
Jim Groark
higoal
Santosh
Sanjay jha
steve thomas
Darren5559
Eyes
sandeepy
Topix: Business News
Only Title

Answer Questions

  • KevinMcConathy Own shape decorators

    Hi All! I want to create own shape decorator like ExpandCollapseDecorator. I defaine next classes: [ Serializable ] [ CLSCompliant ( true )] [ MetaClass ( "4DDC24C0-F44F-4faa-8D15-A4F10E70C039" )] [ MetaObject ( "3C5EAEFC-A71A-4eb7-B732-059EDDFE1EA9" , "MyDecorator" )] public class MyDecorator : ShapeDecorator { public static MyDecorator CreateDecorator( Store store, ShapeDe ...Show All

  • alexvi Ready to Launch SQL2005/vs2005 media package wont install VS2005

    I  received the Ready to Launch package for SQLServer 2005 and VS 2005. The Box says that VS2005, SQLServer 2005, and BisTalk Server 2006 are featured. I also received the ADVPACK.dll error, but only when I tried to run the CD 2 \wcu\SDK\x64\setup.msi. It says it is trying to install Microsoft .Net Framework 2.0 SDK. Then it errors out with “ Error Creating process <C:\DOCUME~1\USER\LOCALS~1\Temp\IXP001.TMP\install.exe>, Reason ...Show All

  • MurrayBrown how to make window do not show in taskbar

    i want to display a window with transparent             HwndSourceParameters para = new HwndSourceParameters();             para.UsesPerPixelOpacity = true;             para.ExtendedWindowStyle = 24;             HwndSource sou ...Show All

  • Oran Dennison RC1 - Visual Studio Class Designer Package Issue

    I've installed VS.NET 2005 RC1 on 2 machines.  I've a project that was created with VS.NET 2005 Team Suite Beta2, including a class design file. On machine 1, I've no problems with Class Designer.  On machine 2, whenever I start Visual Studio, I receive the following in a Yes / No Message Box titled 'Microsoft VIsual Studio': "Package Load Failure Package 'Visual Studio Class Designer Package' has failed to load properly ( GUID = {DD16 ...Show All

  • landre3567 render mode and shading model in Avalon 3D?

    How can I change the rendering mode of the Viewport3D I need to be able to choose the following: Render Mode: Point, Line, Fill Shade Model: Flat, Smooth(Gouraud) How can these be changed Thanks, Cosmin. Perhaps this application could help you http://www.ab3d.si/MainForm.aspx page=Blog Johann MacDonagh already mentioned my page www.ab3d.si In my Viewer3d application it i ...Show All

  • ericsbox71 Package and Artifact Symbols

    Hi Folks I have been playing with the class designer; I think its the the horny'st and greatest bit in the Studio. It would be even greater, if it had a symbol for a container to represent Folders, Namespaces, Projects and Solutions.  Something simple, with a link to sub class diagram.  like a UML Package element. a symbol for an ARTIFACT to repesent Source Files and other documents  a symbol for an object an ...Show All

  • Peter Mortier .NET 2.0 Install Hang

    Can someone please help me with this hanging install. I attempted to install Visual Studio 2005 with .NET 2.0 and it failed because it was a new Windows XP SP1 install.   I used windows update to install SP2.   Now when I attempt to install Visual Studio 2005 it starts installing .NET 2.0 but then it hangs (no hard drive activity for 30 min and no movement on the progress bar).   I then tried to run windows update again to inst ...Show All

  • pete_borg VS.NET modifying my custom .csproj changes

    Hi, As part of my build process, I am copying generated classed into my DataAccess project, then trying to build DataAccess.csproj which should include the newly generated classes. I modified the <ItemGroup> to include all .cs files in the directory as follows: <ItemGroup> <Compile Include=".\**\*.cs" /> </ItemGroup> It seems that Visual Studio overrides this change when I reopen the project. It lists a Compile node for ...Show All

  • Kelmen How do I move data from IEnumerable<Customer> to Table<Customer>?

    How do I move data from IEnumerable<Customer> to Table<Customer> efficiently The following code results in a runtime error. string connectionString = "Data Source=(local); Initial Catalog=Northwind; Trusted_Connection=Yes" ; Northwind db = new Northwind (connectionString); IEnumerable < Customer > customers = db.ExecuteQuery< Customer >( "Select * From Customers" ); db.Customers = ( Table < Customer >)custo ...Show All

  • JPresto change literals of enumeration property at runtime?

    hi, I need the following: If a shape is connected to a shape of type A, the user should only be able to select between the values "aa" or "bb" for the a property of the connector. But, if the shape is connected to a shape of type B, the user should only be able to choose between the values "cc" or "dd" for the property of the connector. Is it therefore possible to change the literals of an enumera ...Show All

  • KevinGW Error:"The Assembly could not be found or could not be loaded" .The problem is at even click to the word document

    when i click the document for the first time every thing works fine.The word document is loaded with all the required contnets as we coded in the word projects.After closing the document when i click the word document again then it gives an error- The assembly could not be found or could not be loaded.you can still or save the document.contact your administartor or the author of this document for further assistance .Then i close the document and ...Show All

  • Miguel Angelo How to do this with WCF Extensions?

    I am currently porting some of our .NET Remoting API's to WCF and are looking for some ideas regarding extensions. We have a relatively transparent mechanism in place to handle Server Notifications and Prompts/Responses between server and the client. An example is the client initiatiates some operation on the server, say delete this employee record. The server encounters some unexpected condition like there are pay records associated with this e ...Show All

  • usmanm Multi-threaded Select<>

    I decided to try writing a multi-threaded Select extension for IEnumerable<T>. The results can be found at http://blogs.msdn.com/kfarmer/archive/2006/04/01/566466.aspx . ...Show All

  • Dustin Accessing Custom Headers in WinFX Service

    Hi There. I have implemented client Side message Inspector & in BeforeSendRequest() i have added custom Message Header. Now i want to access this Header in my WinFXService(Web) i tried multiple ways to access it like MessageHeaderInfo hdrInfo= oc.RequestContext.RequestMessage.Headers[oc.RequestContext.RequestMessage.Headers.FindHeader( "VmyHeader" , "http://tempuri.org/" )]; But using this gives me header but ...Show All

  • AirBear Hosting xbap in a non-asp.net web site?

    Since it's a client technology, it seems viable that a xbap could be host in a non-asp.net (such as FreeBSD host)web site only if I added the MIME types. Is this true How can I do this Thanks! Try creating an application/octet-stream MIME type entry for the .exe. rather than using the exe extention, use the .deploy file type for executables on publish. This should resolve your issues. Yes, Jero ...Show All

404142434445464748495051525354555657

©2008 Software Development Network

powered by phorum