Software Development Network Logo
  • Game Technologies
  • Windows Forms
  • Audio and Video
  • Visual Basic
  • Windows Vista
  • Visual Studio
  • .NET Development
  • Microsoft ISV
  • SQL Server
  • Visual C++
  • IE Development
  • Smart Devicet
  • Visual FoxPro
  • Visual C#
  • VS Team System

Software Development Network >> Visual Studio

Visual Studio

New Question

Infopath Addin CustomTaskPane
FlowDocumentReader Page Transitions
Basic WPF Question
Application.ProductVersion in WPF
installation stays at setup when trying to install microsoft c# ?
The report definition for report 'report.rdlc' has not been specified
Refreshing a WPF window
[urg] security negotions fail over domain
Sandcastle - MRefBuilder and .NET 3.0
Documentation Compiler - Sandcastle

Top Answerers

DimSum
shoeffie
Md s
Brandon Tucker
Renis Cerga
Michael Herman - Parallelspace
ams_ashraf
Ndte
trillian74
LLOYDLOYTON
Thoughts and Software
Only Title

Answer Questions

  • AmitKGupta Certificate usage

    I am trying to use a certificate in my IIS hosted service. This works fine on my local box, but when I deploy to production environment, I get the following exception when trying to run the service. For my local box I have downloaded a program that creates a self install certificate for testing, but I cannot do this in the production environment. We already have a certificate that we use for SSL. The thumbprint value that I am looking for is the value of our SSL certificate. This is new to me, so any help will be greatly appreciated. Here is the exception: Keyset does not exist, which is a Cryptographic exception. And an Argument Exception: The certificate 'CN=legacy.ci.okc, OU=IT, O=City of Oklahoma City, L=Oklahoma City ...Show All

  • misexpert Freezable Warning

    I've created a custom panel and implemented MeasureOverride and ArrangeOverride. When the user clicks on one of the panel children it starts a ScaleTransform animation - void ScalePage( FrameworkElement page, Double toValue ) { ScaleTransform st = page.LayoutTransform as ScaleTransform ; if (st == null ) return ; st.BeginAnimation( ScaleTransform .ScaleXProperty, new DoubleAnimation (toValue, TimeSpan .FromMilliseconds(500)), HandoffBehavior .Compose); st.BeginAnimation( ScaleTransform .ScaleYProperty, new DoubleAnimation (toValue, TimeSpan .FromMilliseconds(500)), HandoffBehavior .Compose); } but this results in a mountain of warnings - System.Windows.Freezable Warning: 4 : CanFree ...Show All

  • j3ns3n Close the Window in UserControl

    I put a usercontrol in a window. when I click a button in the usercontrol, I want to close the window and show another window. can this be implemented Thanks Thanks, I prefer your second suggestion and will try it later. Do your design constraints prohibit the UserControl from having a reference to the containing Window or the Window knowing about the UserControl If the user control can know about the Window, then just expose a property on the control which the Window sets to itself (i.e. the Window gives the control a refernce to itself). Then the control can just call Close on the Window reference. Otherwise, perhaps you might expose an event on the user control called CloseWindowRequested. The Window would hook ...Show All

  • James. L. wsdl.exe-based proxy against WCF service does'nt authenticate (username token).

    Simple scenario: I users of my WCF to be be able to use "Add Web Reference" and not require WCF. I'm using username/password security. Here's the binding that the endpoint is referencing: < basicHttpBinding > < binding name = " basicHttpBindingConfiguration " > < security mode = " TransportWithMessageCredential " > < transport clientCredentialType = " Basic " /> < message clientCredentialType = " UserName " /> </ security > </ binding > Proxies created against this service with "Add Web Reference" (wsdl.exe instead of svcutil.exe) generates this error: " An error occurred when verifying security for the message" message. WCF proxies work fine against this binding; username i ...Show All

  • divya mittal plug in model

    Its documented that Wpf doesnt support the plugin architecture. So is there an alternative. our team is currently planning to develop a prod which would involve third party plug ins. We would appreciate if some code is provided to see how feasible it is to our requirements. the architecture would be something similar to that of Eclipse where in the plugins would have control over all elements in the main app. e.g. change appearnce, compiling options, ... There are a few blog postings that discuss creating a plugin architecture for a WPF application. One developer even combined the Composite UI Application Block with WPF . I haven't looked at it myself, but the implica ...Show All

  • Dirk Haest How to make Tree's?

    I need to make something like this: Element |---Group |--Value |--Value |--Group | |---Value | |---Value |---Value |---Group .... but.. Group "can't be embedded in" Group and Element. Adding hierarchies doesn't help... I could make it using relationships, but then, i couldn't use compartments... Thanks, Yes, you can parent a class on more than one class (where 'parented' means being the target of an embedding relationship). The target role of each parent relationship targeting the same class must have a multiplicity of 0..1. So you can now create a tree as you described. Hi, In the current version of the Tool ...Show All

  • lucerias VSTO Without Office Installation

    Hi All, Is it possible to use VSTO without office installation in the production machine. Office can be installed in the machine during developement. but when deployed there is not office installation in the server for some security reasons, so is there a way to use VSTO without office installation. thanks sathya As to my knowledge office is required to be installed in the machines running the interop (in your case the server and the client). Bellow are the software requirements of VSTO 2005 (full article here ) QUOTE: Software Requirements The following software is required to install VSTO 2005: One of the following editions of Microsoft Office 2003. Service ...Show All

  • RYoungx Need help with a Word12 COM Automation

    We are currently hosting Word12 in a Java Swing app using COM Automation. We used a third party tool by Neva (Java2COM) to generate the automation from the Word type lib (.olb). We now have access to the various call-backs from Word via the COM interfaces. What I need is a way to tell if (when ) the user has modified the current document in Word (set the dirty bit of the document). I have pretty much given up trying to find a call-back from Word for this event. I was hoping that it was 'DocumentChange' in the ApplicationEvents4_If interface that Java2COM generated but it looks like this call-back fires when you 'change' to a different document in Word. It would be acceptable if I could make a call via an automation interface to query wheth ...Show All

  • zerotri Visual Studio 2005 IDE / ASP.NET

    Desiging ASP pages in VS2005 IDE. Unable to get the pointer to select multiple controls by drawing a rectangle/square around the controls. The pointer is always in "I" mode. I have to click on the individual controls while holding down the shift key to select multiple controls. What secret property in VS2005 needs to be turned on Thanks As far as I know that is just how the designer works Thank you. I am sorry to hear that but but having worked with Microsoft for twenty years, I am not surprised. If you teach a man how to fish, Please don't drain the lake. ...Show All

  • suman_chowdary Creating a Hyperlink with Databound text

    I would have thought this question would have an obvious answer, but I've been looking for a couple of hours now: How do I create a hyperlink in WPF where the text displayed is DataBound The only way I've found to do that so far is the following: < TextBlock > < Hyperlink ToolTip = " {Binding Details.Description} " Command = " {Binding Details.Command} " > < Label Content = " {Binding Details.Name} " /> </ Hyperlink > </ TextBlock > But that seems very inelegant, and produces a textblock with far too much spacing. I tried putting a Run element inside the Hyperlink, but the Text property of that cannot be databound. Any ideas ...Show All

  • kcdclan Under p2p mode, does WCF insure no message lost?

    The peer mesh will be recombined when some peers join or quit, how can I insure transmiting message would not be lost For exam: In p2p mesh, peer A connected to peer B, peer B connected to peer C. When peer A broadcast one message, the message is transmited by peer B to peer C. If peer B crashed when transmiting meesage, would peer C still receive peer A 's message Hi Hailong, If C is not connected to any other neighbor but B in the mesh, and B crashes while flooding hte message further to C, then you would have to retransmit the message (After waiting for at least a minute to let the internal Peer channel maintenance algorithm to kick in and get C connected to A and thus fix the partition) fr ...Show All

  • Jerod Moemeka The binding handle is invalid with Web applications in Visual Studio RTM

    Hi, When I tried to debug the Sample application with RTM, it gives the following error. Unable to attach. The binding handle is invalid To resolve this error I made changes in Administrative Tools a Services a Terminal Services. I had changed the properties of this service that is I had changed Startup Type as Manual and started the service and after that restarted my system. Now Debugging is working perfectly. Hope this helps Thanks mate. You are absolutely correct, same thing happend to me. I just set the Terminal Service "Startup type" to Automatic and then it allowed me to start the service. It worked like a charm! Oh BTW I was using Visual Web Developer 2005 Express ...Show All

  • April m MSDN for Visual Studio 2005 First CD keeps asking for CD 1

    Can anyone tell me what the labels are for MSDN CD1 CD2 and CD3 I downloaded the three CD from the MSDNAA site for out school and after buring the software just the first CD it keeps asking for CD1 right at the beginning. The school is trying to located the orginal CD but they have not yet found them. So if anyone has MSDN 2005 for Visual Studio 2005 Professional please let me know what the names or labels for CD1 and CD2 and CD3 Thanks Thanks for the download link. I'm downloading right now. I tried difference combination of the names for the lable thinking that would fix the issue and even after copying the entire three (CD1 CD2 CD3) downloads to separate directories it would still ask for CD1 d ...Show All

  • HKEC Demand Loading of my Add-In

    Hi all, Is there any option to load an add-in to excel on demand. I do not want the add-in to be made visible always or only for specific document. I want this add-in to run only on one instance. Excel allows multiple instance to be open and as well open multiple instance of a document (in read only mode). Is there any way, I could call my addin as a command line parameter while opening Excel.EXE Well, the page you point to specifies this for an Automation Add-in and it's specific to Office 2007, so that switch may not be valid for any earlier version. An Automation Add-in is different than a "plain" COM Add-in (see the Excel Help topic "About add-in programs), so I'm not sure thi ...Show All

  • Milo123 Log on failed [RESOLVED]

    Hello everybody, I am using following code to show a report designed with CR 10. I am getting logon failed exception however the sql server login parameters are correct and I can connect sql server with these parameters and even report in design mode. CrystalDecisions.CrystalReports.Engine.ReportDocument reportDoc = new CrystalDecisions.CrystalReports.Engine.ReportDocument(); reportDoc.FileName = Server.MapPath("Reports/CustomerList.rpt"); //reportDoc.Refresh(); string serverName = GetServerName(); string databaseName = GetDatabaseName(); string userName = GetUserName(); string password = GetPassword(); reportDoc.SetDatabaseLogon(userName,password,serverName,databaseName, true ); rpt ...Show All

101112131415161718192021222324252627

©2008 Software Development Network

powered by phorum