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

Software Development Network >> Visual Studio

Visual Studio

New Question

How to Disable Macros in C#?
ScrollViewer - trigger`s setters for HorizontalScrollBarVisibility and VerticalScrollBarVisibility do not work?
VS2005 Accessing Internet when debugging
I don't have help for outlook namespace
Highlighting code in an email
Suppress Details sections
MediaElements and Codec
SP1
String parsing in VBA 6.3
Set the SignedInfo id attribute

Top Answerers

mstcrow5429
Pman0401
Denis A.B.
mbieweng
Frankelman
MattyBoy4444
EnterBS
fbalas
LonelyPixel
Michael Tumy
FDB's Programming Page
Only Title

Answer Questions

  • birdman82 Creating graphs using WPF

    Hi, I am trying to create graphs using Avalon. Can anyone please help me in searching some useful material for that (creating graphs using WPF build 5456) Thanks in advance, Chandra Sekhar.G I think Chanduu is looking more along the lines of Bar/Line charts. You can download Kevin's Graph control here: http://blogs.msdn.com/okoboji/archive/2006/09/20/764019.aspx Sheva Please watch my blog: blogs.msdn.com/okoboji I will have a sample graph control posted soon. when can i get the sample code for ceating graphs in Avalon....Thanks The graph of Kevin is a special type of graph with a center node and a maximum of 1-hop neighbors. ...Show All

  • manasi Loading images

        ...Show All

  • Cameron D Build/Rebuild

    How can I pass a value to my custom task to let it know whether a Build vs a Rebuild was performed I'm passing it values now, so I know how to pass values, I'm just not sure how to tell if it's a build or rebuild. Thanks, Mike Basically, you shouldn't have any need for knowing. Looking at Microsoft.Common.targets reveals that Rebuild is just a dummy target that's depending on BeforeRebuild;Clean;$(MSBuildProjectDefaultTargets);AfterBuild or BeforeRebuild;Clean;Build;AfterBuild if $(MSBuildProjectDefaultTargets) happened to be set to 'Rebuild'. So basically, you should be able to do whatever is required in your Build target and perform necessary cleanup in the Clean target. (That said, by ove ...Show All

  • Robert S P Dynamically loading image in Crystal Report (NOT CR XI) which comes in with VS 2003

    Hi All. I am currently using bundled in Crystal Reports that comes with Visual Studio 2003. We have a requirement by which we need to dynamically change the image (LOGO) of each reports generated. Right now I have to embed the logo in header subreport and then include them individually in each main report(s) ... Now I have a requirement to brand each main report based on vendor. So I want to dynamically load image in the header sub report. I am not using CR XI, but I read somewhere, where it was suggested that it can be done using OLE object and then programatically updating the physical file with the image wanted at runtime .. How to programatically access the Picture object from rpt file Is there any pointer on web where I ...Show All

  • Charlie Audritsh problem with .config file for XBAP on Server 2003

    i've got an XBAP app using a .config file, and it keeps failing because : + Downloading ....exe.config did not succeed. + The remote server returned an error: (403) Forbidden. another XBAP app (without .config) is on the same Server 2003 and is working fine. and the same app deploys fine on XP ... the problem seems to be specific to the .config file on Server 2003. i tried adding the .* Mime type, but that didn't work. should i be using the Publish wizard and have it append .deploy to all the files i'd actually rather not do this, and just do a standard XCopy to deploy. Thanks, casey got around this by removing the .config handler ...Show All

  • TomAtAbilities Help compiling

    how do I compile/debug and run an application in visual J# 2005 Express edition note that directly running or debugging (both options are on the menu and can also customize the toolbar to add them by rightclicking on it) without first building the solution should compile any changed stuff automatically, so for big projects you can avoid rebuilding everything cause it might take some time Thanks Hi, 1. OPen J# express. 2. File > new > Project. 3. Create a new Console application. 4. OPen program.jsl. 5. Write following line of code in main method... System.Console.WriteLine("hello world"); 6. Place the cursor on any character of abo ...Show All

  • prashantsable Fetching contacts from Global Address List via Outlook using CDO

    Hello. I am using CDO in order to get the list of contacts (from a session, getting the default contacts folder, getting the messages of the folder, parsing the list) and I am querying the fields of a contact. The problem is that I get an exception when I am requesting the field "CdoPR_EMAIL_ADDRESS". The description of the exception is: [Collaboration Data Objects - [MAPI_E_NOT_FOUND(8004010F)]], source: Collaboration Data Objects, HRESULT: -2147219721. Trying to get an explanation I dumped the content of a contact (name, value, id). And I found something else: there is no id with the value 805503006 (the constant "CdoPR_EMAIL_ADDRESS"), however I find the e-mail address at different ids like -2142568418, -214 ...Show All

  • ahmed921983 How to create XMLNodes on runtime -word?

    Hi I'm using VSTO 2005, Word Document, C#. I want to create some XMLNodes on runtime, how do i do that To be more specific, i have the an Schema attached to the document, with an element that can be repeated (minOccurs = 0 and maxOccurs = unbounded) that is recognized as XMLNode s and it's about a list, something like: Item 1 subitem1 subitem2 subitem3 So i need that when i click on a button at the end of the list, i can create an "Item 2" and all its subnodes how do i do that with code in C# Thanks for your time ok, got it with this code: // get range from a bookmark Word. Range rng = bmItemList.Range; //insert a row in the actual table obj ...Show All

  • durnurd Migrating an VBA Excel solution to VSTO Solution

    Hi All, I have an Excel file (coded in VBA, Office 2000, all blank sheets, only VBA code)which we call report engine. This report engine creates copy of existing templates(100 in number), fetch data from database and populates the copy of template to generate very large number of reports. Before coding this solution in Excel, we had same thing coded using VB6. But since VB6 application was an out-process application creating Excel files, we moved to an Excel report engine generating Excel files and this improved performance dramatically. This whole solution now we want to move to .net(VSTO) solution. We will be using the existing Excel templates. Only the report engine needs to be migrated. We have already taken following ap ...Show All

  • crazy_boss How to grant trust to more than one assembly using Custom Actions for Outlook Add-in?

    Hello again, I am trying to deploy an add-in that relies on a third-party assembly. I created a setup project with VSTO and it deployed fine (created the code group for the add-in's assembly etc) . I can manually grant trust to the third-party assembly by creating a code group with the .NET Framework 2.0 Configuration tool and I can use the Caspol.exe to do it via the command line. But what I really want to do is grant the trust using Custom Actions like I did for the add-in. I've read the various whitepapers and other MSDN articles but I'm struggling with the steps to do this for more than one assembly. Can someone please point me to an online article or provide some instructions in this regard. Many thanks, Tad ...Show All

  • Rakesh Jha Xbab applications not running from the internet

    Hi there, I am trying to run an xbap application from this URL http://www.valil.com/winfx/Valil.Chess.WinFX.xbap (other xbab apps from the internet are not running either e.g http://www.charlespetzold.com/wpf/JeuDeTacquin/JeuDeTacquin.xbap ) IE 6 gives me an error message and wont let me run the app even though I have added the site as a trusted site. It runs if I get the source and compile and run it locally. It looks like a security issue. Can some one kindly tell me what I need to do get the app running from the internet The detailed error info is as follows: Startup URI: http://www.valil.com/winfx/Valil.Chess.WinFX.xbap Application Identity: System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ ...Show All

  • Jim Ward MissingReportSourceException NullReferenceException

    "MissingReportSourceException means that you have not yet supplied a definition for the report, so the report viewer can't validate parameters. Make sure you have set ReportViewer.ServerReport.ReportPath before calling SetParameters(). " How do you set the path or set the definition tried " reportViewer1.LocalReport.ReportPath.Equals new ( "TicketPrintLayout.rdlc" ); " and it gave me a null reference exception, so what do I do reportViewer1.LocalReport.ReportPath = "TicketPrintLayout.rdlc"; ...Show All

  • Miykal Visual Stuidio 2005 SP1: add-in is not invoked when building from command line

    Add-in designed for Visual Studio 2005 is not invoked when building from command line (not IDE) after Visual Studio 2005 Service Pack 1 installation. Does Microsoft have a hotfix or a workaround for this yet This issue was initially investigated in SP1 beta and it has been confirmed that the issue still exists in SP1 RTM: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=244632 Thanks, Sergey Hey Sergey, You are correct - we have identified this issue as a regression introduced by SP1. The bug has been entered and I expect it to be fixed in SP2. I apologize for the inconvenience. regards, James Lau http://blogs.msdn.com/jameslau ...Show All

  • kcornwell Smart & Lazy Scrollable List ;-)

    Hello, I'm using a gridview/listview in order to display a grid of data to the user. However the potential # of rows can be very very large. So: 1. I don't want to get the entire list. 2. If I can, I would like to avoid (first, prev, next, last) paging scheme. So I was thinking maybe I could break the list into pages and employ lazy loading. In other words, have a slot of pages (lets say 5 pages), and as the user scrolls, I move the slot of pages and proactively gather rows from the db, keeping a few steps ahead of the user. I realize that the user may scroll faster than the lazy-loader or may just jump to the end of the list (I'm not sure how to solve those problems yet: one step at a time I guess). I got 2 of questio ...Show All

  • hank voight Go On: Why VisualBrush for Words Can't Writte Words on GeometryModel3D on second viewport3d ?

    I Writte words to Model3D in some Viewport3Ds, On One is right, but the other is wrong ,why Which Scene can cause this private VisualBrush CreateTextBrush(string strText) { TextBlock labeltext = new TextBlock(); labeltext.Text = strText; SolidColorBrush ForegroundBrush; ForegroundBrush = new SolidColorBrush(Color.FromArgb(255, 222, 130, 0)); SolidColorBrush BackgroundBrush = new SolidColorBrush(Color.FromArgb(0, 255, 255, 255)); //SolidColorBrush BackgroundBrush = new SolidColorBrush(Colors.White); labeltext.Foreground = (Brush)ForegroundBrush; labeltext.Background = (Brush)BackgroundBrush; VisualBrush ViB = new VisualBrush(labeltext); return ViB; } ...Show All

787980818283848586878889909192939495

©2008 Software Development Network

powered by phorum