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

Software Development Network >> Visual Studio

Visual Studio

New Question

How to override instance property value with style value?
DependencyProperty registration info
Error: Font '?' cannot be found
how to create a new Tools.Word.Document object?
assembly not found exception
Requiring parameters in messages
Modify a key in web.config using XML.ModifyFile (Microsoft.Sdc.Tasks)
Launching a VSTO Word Document on a server through an ASP.Net Application
WPF and Directshow
an unexpected error occurred in the .net framework data provider for SQL Server mobile edition

Top Answerers

KAlbrecht
mksql
Stuman99
Jackuline
MShah
Bill F.
Larsenal
JinFan
Ballinvoher
Seetaram
sitemap
Only Title

Answer Questions

  • SarathChandar Word 2003 Add-in using VSTO 2005 SE - Action Pane - Runtime error "Object reference not set to an instance of an object"

    This error is thrown when the ActionPane.Controls.Add(UserControl) method is called in the add-in startup subroutine. Both the ActionPane variable and the UserControl variable have been instantiated at the beginning of the class "ThisAddIn". The exception (System.NullReferenceException) goes on to give the following breakdown: at Microsoft.Office.Tools.ActionsPaneInternal.HookUpSmartPane() at Microsoft.Office.Tools.DockableControlCollection.Add(Control Value) ........ Any ideas You should not instantiate an ActionsPane yourself. Instead, you should use the ActionsPane object that VSTO instantiates for you. See the documentation here: http://msdn2.microsoft.com/en-us/library/ ...Show All

  • Dietz 3d : an object pointing another ( LookDirection ) ?

    my math skills are so low that i can't figure this out. basically i got two GeometryModel3D A and B and i'd like A pointing B on x,y or z axis. prettry much like LookDirection Property on Cameras. the question could be also ' how to implement LookDirection Property on a GeometryModel3D ' any idea i mean A lookingAt B like a camera look it's target. with let say axis X pointing at B position. i kind of figure out a way by applying some math book formulas. but i'm not understanding everything. public MatrixTransform3D LookAt( GeometryModel3D node, GeometryModel3D target) { Double x = node.Transform.Value.OffsetX; Double y = node.Transform.Value.OffsetY ...Show All

  • Chuck Cobb System.ServiceModel not showing up in the GAC

    Hi All! When I try to add the System.ServiceModel as a reference, it is not visible in the ".NET" tab of the "Add Reference" dialog. I have tried reinstalling WCF (by running install and repair of the install.exe in the WCF directory and the setup.exe in the v3.0 directory I can add the assemblies by browsing to the WCF directories and chosing them from the "Browse" tab. Any idea why this would be I believe this is causing other issues such as "Could not find schema information" for several elements. Help! thanks, Jas Hi Wes, Try this one: http://www.microsoft.com/downloads/details.aspx FamilyId=5A0AE4CD-DC79-4B12-8A05-B6195F89FFA2&displaylang=en Note that this is f ...Show All

  • R.Tutus Custom Control binding

    I've created a custom control that have two data templates: ViewTemplate ( when edit mode is false) and EditTemplate (when edit mode is true) . I have a problem with binding: a) when I use Content = " {Binding} " and < TextBlock Name = " View " Text = " {Binding Path=Name,Converter={StaticResource NameConverter}} " /> < TextBox Name = " Edit " Text = " {Binding Path=Name,Converter={StaticResource NameConverter}} " /> in ListView I get only one row of product name instead of list of products' names b) when I use Content = " {Binding Path=Name,Converter={StaticResource NameConverter}} " and < TextBlock Name = ...Show All

  • pc_bond WPF/.Net Framework 3.0 NavigationService and Proxy Authentication

    Hi there In WPF/.Net Framework 3.0, how do I get the NavigationService.Navigate( Uri ) method to use the client's web proxy settings The client is required to go through the proxy for the Uri in question and, in Internet Explorer, the settings are all configured correctly. Also, I have tried it, but, the following machine.config entry does not make a jot of difference. < system.net > < defaultProxy enabled = " true " useDefaultCredentials = " true " /> </ system.net > I cannot see any properties/methods on the NavigationService class that would allow the proxy settings to be programmatically set. Thanks in advance for your help. Mike ...Show All

  • Lee Eden ZOrder

    I am having problems setting the ZORder manually. ... using (Transaction t = this.Store.TransactionManager.BeginTransaction("Setting ZOrder")) { try { shape.ZOrder = shapeParent.ZOrder + 1; t.Commit(); } catch (Exception xException) { t.Rollback(); System.Diagnostics.Debug.WriteLine(xException); } } The code works, but the shape doesn't change the visual arrangement in the diagram. Is it working Setting the Z-Order by itself doesn't fix things. You have to re-order the NestedChildShapes of the diagram. Take a look at Example.Components that you'll find by opening the VS SDK Samples Browser and look in CustomCode\NestedShapes.cs. Search on FixZO ...Show All

  • George2 Using Visual Studio to gather data from user and place on a Word Doc.

    Hi, I am new to Visual Studio. I need to create and exe that will open and accept information from my users. Such as, name, client number and date of admission. I would then need to open a Word document and place this data in specific location(bookmarks) and save the document in an predefined location with a predefined name. Any and all help would be appreciated. I am running Visual Studio 2005 which includes Visual Basic 2005, Visual C# 2005, Microsoft Visual Tools for Office and Microsoft VisualWeb Developer 2005. I attempted to follow the instructions provided in the links above, however, I am unable to open a word.doc. These are the steps I took. I Created a new Project in Visual Studio, I selected Visu ...Show All

  • Hi_i_am_Amit Transform a WCF contract to a xml message

    Hi, I have a entity which is decorated with WCF DataContractAttribute to make it serializable. By marking the class and methods with this attribute serialisation is done automatically. Now my situation is I need to serialise the entity to xml and then post the xml to a MSMQ queue. Is it possible Thanks Sai Thanks Carlos. This was exactly what I was looking for. Thanks for your reply. Is it possible to directly get a converted xml string instead of creating a xml file and then loading it. I want to create something like a ToString. So when I get the particular data contract to my utility it will give me the xml representation of it aka kind of textual representation ...Show All

  • scharland Styling Brushes

    It appears that there is no way to apply a style to a Brush (such as SolidColorBrush) -- the style property is seemingly non-existant. Is there any reason/workaround for this Thanks! Styling is an element feature (Style is a property of FrameworkElement), so not available on brushes. But brushes to some extent do support some dynamic features, such as databinding and resource references. If you can give an example, there might be a workaround. The best solution is to style the element, and animate the brush's opacity from there. Then the issue you run into is that you can't specify a property path in a setter, e.g. you can't do "<Setter Property="Fi ...Show All

  • K. Ravinder Reddy Loading Resources from another assembly

    Hi, My application has a plugin architecture so that you can add support for different types of data. In the assemblies that implement the various plugins I want to define resources (styles/templates) so that I can use them from my xaml window. I am not sure of the best way of doing this has anyone done anything like this Any ideas Thanks, Derek Hey thanks heaps for this. I have now got it all working. The code you posted was exactly what I needed to load the assembly. I created a DataTemplateSelector and attached it to my ListBox using the ItemTemplateSelector property. In my template selector I then figured out the correct template to load (based on some rules) and then loaded it using your code. It w ...Show All

  • Yousef ED Creating a WCF Client

    Hello, I'm new in .NET programming and I want create a client which consumes a Web Service. I have created a proxy code from a WSDL file with the svcutil tool. The proxy code was generated with the xmlSerializer switch because the WSDL includes complex xsd elements. Now I have a C# code and a config file. How can I import this files into a project to consume the Web Service and which project i have to use Best Regards, Boris Boris, You already did the most difficult. Now, do have to copy both files into your root project folder and use the generated class like any other class. ...Show All

  • Adam Shipp Smart tag development not part of the vsto.

    Hello, I would like to develop a smart tag project which will deploy to all the office application as : word, excel and outlook, not just part of a specific word development. In version 1.1 smart tag were register in the registry and all the office document word, xl and outlook identify the smart tag automatically and behave as expected. Now when I develop a smart tag it must be part of word or excel application and its not what we need, Can you please solve this issue and send us a link or an example how to develop a smart tag and catch all the office documents bye regards Yaron karni. www.attunity.com - InFocus - Workplace application yaronkarni@attunity.com You should be able to develop a SmartTag ...Show All

  • epicblue Dynamic User Controls on a DockGrid

    The project is an xbap. I created a usercontrol called timecard (.xaml and .vb) I have a button that does: ---- dim _tc as new timecard _tc.Timecard_HostPage(me) m_Dockpanel.Children.Add(_tc) --- On the user control I have an "x" button that call a handler on the hostpage passed via the Timecard_HostPage function that removes the usercontrol passed back as "me" to the m_Dockpanel.Children.Remove on the hostpage. I can add an infinite number of Timecard controls to the page, but I can only remove one. Once I click the "x" on another one, I get the following error: "Specified Visual is Already a child of another Visual or the root of a CompositionTarget" Now Ive done so ...Show All

  • Adam2342342341 serviceModel/Bindings error

    I am testing a clickonce deployed, Internet app on newly installed Vista Ultimate and newly installed .NET 3.0, XP systems. The app tests fine on the development machine (XP, .NET 3.0) The error message is: An error occurred creating the configuration section handler for system.serviceModel/bindings: Could not load type 'System.ServiceModel.Configuration.BindingsSectionGroup' from assembly 'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. (C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\machine.config line 102) Any ideas Thanks John There is a couple of things you could do to help ID the issue: 1. find out if you can launch the application ...Show All

  • Pon t3h pony Visual Studio Hangs - Need to restart IIS

    We have installed Visual Studio 2005 Professional on a development server. Occasionally VS hangs. The only quick fix we have found is to restart IIS. Obviously we do not want to have to do this each time it hangs. Any idea what is causing the problem IIS is locked up too when this occurs. So, not sure which is hanging up first. Either way, I need to do an iisreset/ through the command prompt. TRU VS hangs when I open an .aspx file. By default it opens in source mode. It always seems to hang when first opening the first file in VS. If it opens and does not hang, VS will run fine. TRU TRU927 wrote: VS hangs w ...Show All

686970717273747576777879808182838485

©2008 Software Development Network

powered by phorum