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

Software Development Network >> Visual Studio

Visual Studio

New Question

Installing VS2003 add-in programmatically or using registry file.
KB908002 bootstrapper questions
How to Create events in Vb.net or VC++.
How does msbuild determine whether a project should be built?
ChannelFactory.Close() throws CommunicationException error
There is no client tombstone table, how does client track pending non-posted changes
Mysterious VS JIT debugger invocation failure
Accessing parent project from invoked child project
Access to Exchange Account Information over VSTO-Outlook Addin
can't install visual studio 6.0 en win xp

Top Answerers

ando1111
Giugio
Fiddel
xlordt
PCSQL66
jitendra badkas
johnvarney
sal.a it
Steven Berger
caahsc
The .Free Delphi Site
Only Title

Answer Questions

  • Fabriciom in a web brouser navigation control i need to open msoutlook

    i my windows application i have placed a web brouser navigation control and in this navigation control i need to open the msoutlook application can any one plz help me You need to post in a newsgroup that's appropriate to your question. Follow the link in my first reply to you for a list of groups. I suggest you ask in the outlook programming group. Hi Rajesh VSTO is a plug-in for the Visual Studio interface and doesn't really have anything to do with straight Office automation. In the Please Read First message at the top of this forum you'll find a list of places to go to ask Office-related questions. I recommend the Outlook programming newsgroup as the best place to get help on automating Outlook. You might also try th ...Show All

  • Radexx WinWord instance not released from within Outlook Add-in - using VSTO 2003

    Hey Guys, been rummaging around the forums trying to find a solution, to what appears a common problem with VSTO in general. background: I'm developing an Outlook Add-in for Outlook 2003, using VSTO 2003. This add-in uses Word to manipulate the content of some files before sending them via email as attachments. problem: the WinWord instance used in the class for manipulating the document is not being released and i end up with 100s of WinWord instances, all hogging memory etc from the system. It keeps them there even after i've closed down the Add-in and or removed it/uninstalled it etc. even closing Outlook does nothing. Have to manually remove them from Task Manager. // instantiate the application and document objects Word. ...Show All

  • ReneeC Why doesn't this Code work?

    Hello, my Code: Public Class Class1 Dim frame As Frame Dim _name As String Public Sub New ( ByVal name As String ) _name = name Dim win As frmMain = Application.Current.MainWindow Dim g As Canvas = win.FindName( "can" ) frame = New Frame frame.Name = name g.Children.Add(frame) End Sub Public ReadOnly Property Name() As String Get Return _name End Get End Property Public Sub BlendIn() Dim ani As New Animation.DoubleAnimation ani.From = frame.Opacity ani.To = 1 Animation.Storyboard.SetTargetName(ani, Name) Animation.Storyboard.SetTargetProperty(ani, New PropertyPath(frame.OpacityProperty)) a ...Show All

  • LouisPeter How can I find out if Word is loaded in Outlook?

    I'm creating Word Addin with VSTO 2005 SE. I need to disable some functionality in case Word loaded in Outlook (when I compose email for example). How can I find out if Word is loaded in Outlook   Thanks, Victor Hello vitich, did you get your question resolved Mike Mike Morton - MSFT wrote: Hello vitich, did you get your question resolved Mike I think I found an answer for this question. But I still can completly figure out how CommandBars in Word works. John R. Durant - MSFT wrote: Victor, I use the IsWordMail prop on the Inspector object. This will return a boolean telling you if Word is the email editor. Here's a link to ...Show All

  • Nialaa error: The mapping for Entity Container 'HRISBusinessModel.HRISArchitectureWorkbench' was not found in Workspace.

    Hi, I have a problem using ADO.NET vNext... and cannot find a solution, please help :-( I use now the following connection string : <add name="HRISArchitectureWorkbenchConnectionString" connectionString="metadata=D:\\HRISWorkspace\\HRISEDM\\Domains\\Person;provider=System.Data.SqlClient;provider connection string='Data Source=HRISDEV02;Initial Catalog=HRISBusiness;Integrated Security=False;User Id=HRISBusiness;Password=fakepwd01'" providerName="System.Data.Mapping"/> and I got the following error : "The mapping for Entity Container 'HRISBusinessModel.HRISArchitectureWorkbench' was not found in Workspace." and the stack trace: System.Data.Metadata.WorkspaceMappingCache.GenerateViews(M ...Show All

  • David Luu VB - How to pass Parameter to Crystal Report .Net 2005

    Dear All! If you got trouble like me: Develop report with 2 subreports inside. When preview it always ask Parameter prompt. So, here is the solution for this one. 1. You need update your Cystal Report .NET first (JoeBlow recommended), download link here http://ftp1.businessobjects.com/outgoing/CHF/crnet20win32x86_en_chf.zip . After download and install, when running, surely that you will not see Parameter prompt for Subreport's Parameters. But the Paramter prompt for main report still existing, if you did not setting or wrong setting. So, how to pass parameter for Main report 2. Here is my code for passing value for parameters Structure tagRptInfo Dim RptName As String Dim aPara() As tagPara Dim iParaNum A ...Show All

  • mmodell Security Exception in local processing mode when deployed ..

    Hi. My report is working perfectly ok on local machine in local processing mode. but when i deployed the website on the remote web server i get a security exception error. What do i need to do and what previliges do i ned on the webserver to get my report rendered and work propertly Thanks. Server Error in '/' Application. While server mode processing can run with reduced permissions, local mode requires full trust. ...Show All

  • Ljhopkins Drag and drop in XBAP

    Hi May I know whether the XBAP applications can support drag and drop When I tried drag and drop in a custom control I got SecurityException upon hosting in XBAP appln. Detials: Request for the permission of type Permissions.UIPermission failed. on line DataObject do=new DataObject("Item",this); which resides as follows. class MyControl :ContentControl{ override MouseDown(..){ on line DataObject do=new DataObject("Item",this); //Uses this do obj to call method DoDragDrop() later } } Please let me know ,how to avoid this.Are there any other good practices to do the same Thanks in Advance Joy Hi LesterLobo and Chad, Thanks a lot. Joy Hi One more ...Show All

  • Seriema Chunking Channel sample update?

    We are currently using the Feb CTP Chunking Channel sample (with appropriate adjustments to compile and run with the Sept CTP). However, we've started getting new mystery exceptions with the Sept CTP from code that isn't called by us. The exceptions do not happen regularly, and appear to be caused by timeouts within code that we do not control. I suspect that custom channel implementation requirements have changed rather significantly since Feb and was wondering if there was any plan to update this sample Is anyone else using the chunking channel without issue Any assistance would be appreciated!   Brian McNamara - MSFT wrote: It is here: http://msdn2.microsoft.com/en-us/library/aa717050. ...Show All

  • Mateus1223 Passing WindowsIdentity between services for use with Azman

    Hi all, The following scenario: a client connects to a service passing its WindowsIdentity (WI), e.g. domain\user, using wsHttpBinding. The service uses the WI for authorizing using Azman. The service depends on another service (which could also be called by other clients in different scenario's). The second service also has to authorize the WI of the initial client (domain\user). client --> service 1 --> service 2 | | AzMan AzMan Default, wsHttpBinding passes the WI of the 'intermediairy' service (the first service called, e.g. domain\network service) to the second service. This way the second service authorizes the service (domain\network service) and not the initial caller (domain\user). ...Show All

  • AnaC Research pane in outlook 2003 by VSTO 2005

    Dear all I am trying to develop my own custom pane in outlook 2003 which is similar to Research pane but want to add my own user control in it. any help I know that this is available in word and excel but my mission is to do it by outlook 2003 by VSTO 2005 if I can or if not by vba any workarounds Thank you very much, Using VSTO 2005 Action Panes were available in Excel & Word 2003 for document/template customizations but not for Outlook 2003. With Outlook 2007 VSTO (second edition - SE) supports Custom Task Panes in an add-in. Mike ...Show All

  • Asher David2 Adding a contextual menu to the diagram?

    Hi, I know this has been posted a lot of times in this forum. But most of the actual posts are outdated and doesn't work with the RTM version of DSL Tools. I haven't found any post regarding the actual version, and the SDK doesn't talk anything about the DslPackage project and how it's structured. Is there any way to insert a simple menu to the whole diagram and call a custom method Thanks, Miguel! Miguel, Did you check the "Example.DSLCustomizations.doc" document that can be found in ..\Program Files\Visual Studio 2005 SDK\2006.09\VisualStudioIntegration\Samples\DSLTools\Example.DesignerCustomizations This document contains an example of how to do that. I think it is up to date. If you have an ...Show All

  • PeterVrenken What is System.Windows.Documents.Glyphs?

    There is no information about this class in the documentation. Represents the set of glyphs that are used for rendering fixed text <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <StackPanel Background="PowderBlue"> <Glyphs FontUri = "C:\WINDOWS\Fonts\TIMES.TTF" FontRenderingEmSize = "100" StyleSimulations = "BoldSimulation" UnicodeString = "Hello World!" Fill = "Black" OriginX = "100" OriginY = "200" /> </StackPanel> </Page ...Show All

  • EltonSky Creation of Item Template within VSPackage

    How do I create an Item Template within a VSPackage I have an item template already created and working, I also have a VSPackage implemented and working but how do I connect the two I see from the IronPython example is the VS SDK samples that it is possible but I cannot see how it is implemented! the Item Templates are listed in subfolders in the Templates folder in the project with their own template files but I cannot see any reference to them in the VSPackage files! Is there some Attribute I need to add to the VSPackage files Please help, the help docs are inadequate for this particular issue. I've come across an attribute type ProvideProjectItemAttribute, I think it should work just like the vspackage attribute, ProvideProjectFactory ...Show All

  • noiseunion Remote deployment of my ASP website

    Hi all, I have created a basic club website which runs on my local machine (XP). But when I copy the website onto the remote site and when I try to access it from my browser it always show me the errorpage. My default page is default.aspx and the errpage is errorpage.html. Would some one be able to give me a clue as to what needs to be changed Any relevant help would be very much appreciated. You may be better asking this question in one of the ASP.Net development forums ...Show All

232425262728293031323334353637383940

©2008 Software Development Network

powered by phorum