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

Software Development Network >> Visual Studio

Visual Studio

New Question

Config Equivalent for Credentials.IssuedTokenAuthentication.CertificateValidationMode
Barcode 128 font not displayed in running mode
Loose XAML Template
What is WPF ? And what I need to start Developement
WPF-WF Interop - Databinding
virtual directories
June CTP: A datacontract based schema is being created even though type is implementing IXmlSerializable
Creating a panel style with default styles for child controls.
Automation server can't create object - figured out my problem
Reloading reports that have subreports

Top Answerers

julianenrique
ThomasA
SarahB123
wpf michelle
Juan Ignacio Gelos
Tom25
Frank Uray
SankaraNarayanan Nagalingam
Ed Moya
shafiqm
SwisSQL
Only Title

Answer Questions

  • Buliones Cypress Outlook 2007 addin installation problems

    I have some addins for Outlook 2007 developed using Cypress and both VB.NET and C#. If I run the addins from the VS 2005 IDE they run with no problems. If I compile as release mode they run from the IDE, start Outlook and run with no problems. However, if I install after compiling the setup project and try to run the addin by just starting Outlook (on the same dev machine) the addins won't run and the error is the ever helpful: "Not loaded. A runtime error occurred during the loading of the COM Add-in" In cases like this do I need to follow the deployment steps outlined in http://msdn.microsoft.com/office/default.aspx pull=/library/en-us/odc_vsto2005_ta/html/officevstowindowsinstallerwalkthrough.asp Or sho ...Show All

  • ngio_dude RichTextBox, current inline element?

    How can I find the ”current inline” element at the cursor position If I use “this.richTextBox1.CaretPosition.Paragraph.Inlines” I get all the inlines in the current paragraph. Best regards, Thomas S. Andersen You can cast it, currentInline = this.richTextBox1.CaretPosition.Parent as Inline, so obviously if its not an inline, it will return null. ...Show All

  • Selectis Custom Skins/Themes

    I want my users to be able to customize my program through xaml-files. I've seen that this is possible in WPF in some Login-example(found here[1]). I've tried to copy that code into a new project but nothing happens when i start the program. (The buttons size will remain 30x30 pixels)  [1] http://wpf.netfx3.com/files/folders/applications/entry3927.aspx This is my code: Main-window (XAML): < Window x:Class = " TestSkin.Window1 " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " Title = " TestSkin " Height = " 600 " Width = " 800 " > < Canvas Width = " 800 " Height = " 600 " > < ...Show All

  • Caleb T Assembly not referenced error when using Microsoft.Office.Core.CommandBars?

    Hello all, I keep getting these compile time errors when I try to use Office.CommandBar in my code : Error 4 The type 'Microsoft.Office.Core.CommandBars' is defined in an assembly that is not referenced. You must add a reference to assembly 'office, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'. Error 5 'Microsoft.Office.Core.CommandBars' does not contain a definition for 'Add' My code is pretty simple: using System; using System.Data; using System.Drawing; using System.Windows.Forms; using Microsoft.VisualStudio.Tools.Applications.Runtime; using Word = Microsoft.Office.Interop.Word; using Microsoft.Office.Tools.Word; using Office = Microsoft.Office.Core; // Alias IO because of the conflict with the local P ...Show All

  • Plum117 VS 2003 along side VS 2005

    Before I do this I want to make sure I don't have any issues. I have VS 2003 Professional on my pc with the 1.1 .Net Framework. I want to install VS 2005 Professional w/ Office Tools, but I need VS 2003 so that I can continue to support my apps and web apps. What issues, if any, will I run into when I install VS 2005 on the same box   Thanks hey thanks, i am giving it a try now, no more rebooting to find the help I'm looking for from the 2003 version, by the time I do that I forget what my question was or have been sidetracked into something more interesting.... They are designed to work side by side on the same machine. They work fine togethe ...Show All

  • eureka-eureka TabItems & Binding at runtime

    I am attempting to create tabs based on how many records are returned by an ObservableCollection. When I set a break point I can see the ObjectInstances of AssetTabitems with the correct data within myTabData. The problem is I don't know the correct way to access those instances, here is what I am attempting in the red highlighted area. public void PopulateAssetTabs(string TabName) { ObjectDataProvider myTabData = new ObjectDataProvider (); myTabData.ObjectType = Type.GetType("Asset_Manager.AppData.TabListDB" ); myTabData.ConstructorParameters.Add(TabName); Binding bind2obj = new Binding (); bind2obj.Source = myTabData; foreach (AssetTabItems myItems in myTabData.Data) { // Cre ...Show All

  • KevinBurton Why does VS do a full compile every time, even with no changes?

    Why does VS 2005 rebuild every time I click run, even if I just did a full rebuild seconds before, or if I stop my application and run it again without changing anything My solution has 350,000 lines of source code and it takes 2 minutes to compile everytime I just want to run it in debug mode Hi, I don't know if there is a way to stop VS from building when you hit run, but I had the same problem and 'worked around it' by starting the application from bin\debug folder and then select 'Attach to process' from the Debug menu. There's still a delay while the debugger attaches to the program, but in my case, it still was a lot faster than rebuilding every time again. Regards, There is an option ...Show All

  • AlanKohl LocalReports and data sources with multiple tables

    I am trying to build reports that show data coming from multiple tables in our database by adding a Report to my application and going through that process. I can get a report that takes only a single table to run fine, and i can simulate things like detail views going across 3 databse tables by creating large queries that return a single table of results, and using grouping on a report table or nested lists... However, I can't find a way to do this when my data source [a dataset] has multiple tables. [for example a productCategory table, and a product table... ] I do not see a way to have a list inside of another list refer to the "inner" [at least that's one of the ways the data sources window shows it] data, and I can't ...Show All

  • CDBrb Automation & ToggleButton

    I have an custom ToogleButton and I want to have an Invoke interface " IInvokeProvider" How I can implement this interface into my control. I use System.Windows.Controls. Thanks If I understand your question correctly, I believe it would look something like: public class CustomButton : ToggleButton, IInvokeProvider { void IInvokeProvider.Invoke() { OnClick(); } } Hope that helps, Kent I found finaly the correct aswer thant a lot for your response. using System; using System.Collections.Generic; using System.Text; using System.Windows.Controls.Primitives; using System.Windows; using System.Windows.Automation.Provider; using Syste ...Show All

  • imj Newbie: WCF without Admin rights

    Hi, Sorry if this is such an obvious thing (I've had a search on the internet but honestly can't find the answer). I want to build a simple WCF webservice for desktop applications to use. However, when I run my client app on Vista with non-admin users I get a message saying that my App is not responding. However, the same application runs great on XP. I then logged in as admin and modified some settings (adding a url acl) and the client application works okay. So my question is, can I write a WCF webservice which does not require you to be admin (and doesn't require an admin to previously set permissions) for my app to work If so, can anyone give me a code sample Thanks! Execute this from th ...Show All

  • Athan Finding Object Parent (Events)

    I am confused about how to get the parent element of an object that is embedded within other controls when an event fires. I have put an event on the stackPanel to catch the mouse up event of a label and when i click on any portion of the label whether it be the image, the textblock or the label the event fires. This IS the functionality that I want except I need the label object as being the source, but for instance if i clicked on the image object then I get the image object as the source and not the label. I need the label object! I believe a solution might be to loop through each parent object until I have the typeof label but I am not sure if this is the right way to go about it. My XAML layout is as follows (this isn't actual code) & ...Show All

  • twoot22 Application-level smart tags using VSTO v3 for Word 2007?

    Is there a way to create an application-level smart tag using the new application-level Word Add-in project I am looking for the VstoSmartTags.Add method or something similar on the ThisApplication object but can't find it. No, this functionality has not been added yet :( But we are looking into it. OK, thanks. Hope you can add it before the final release. ...Show All

  • Dave Calkins First class POX support

    With WCF v1 very close to release, you'd think the POX story would be coming together by now. Instead all we've got are outdated samples and presentations that show it's theoretically possible, but actually making it work is a nontrivial exercise left to the reader. Yes, the samples by Doug, Clemens, and Yasser are great, but it's a royal pain trying to make them work on the latest bits. Plus, they target more complex scenarios. I'm not necessarily interested in exposing RSS, Atom, or video streams. I just want to be able to apply MessageVersion.None or something similar and have my pre-existing services just work without SOAP. And no, falling back to the universal contract of Message Message * * doesn't cut it. That's not "first c ...Show All

  • DarkProphet paging in GridView

    i make GridView in my project, i get data from database and i want to make paging in this GridView Can i do it by xaml or i must do it by C# if any one have any idea please help me where are you people why there is no one replay the message please if any one have any idea about this please contact with me thank you very much You would have to implement a special IList that is "smart" to only download a page at a time from the database--say 100 items. This IList would then cache, say, the last 5 pages of items. As long as the public interface of the IList works, you can do whatever optimizations you like on the back-end. Yes and that is what I have written in thread: http://forums.micr ...Show All

  • HeathM How to pass parameters to a DataBinding in XAML? - I want (need) to seed the construction of the DataBinding source object.

    I have a set of generic (generalized) DataBinding source objects, each of which maps to a different UI control type (eg. collections for ComboBox, single value for checkbox, etc.). <CheckBox.IsChecked> <Binding Path="Value" Source="{StaticResource SingleValueBinder}" /> </CheckBox.IsChecked> or <ComboBox Name="MyCombo" Height="21" Margin="20,20,20,20" ItemsSource="{Binding Source={StaticResource ItemsSourceBinder}, Path=Values}" IsSynchronizedWithCurrentItem="True"> </ComboBox> These objects are basically serving as adaptors and internally map to a host of specific object values. I need someway to specify which of the unde ...Show All

808182838485868788899091929394959697

©2008 Software Development Network

powered by phorum