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

Software Development Network >> Visual Studio

Visual Studio

New Question

Slowly losing my hair
Fill in outlook appointment from dotnet application
Menus and HierarchicalDataTemplate
Hands-on-Lab 04
Using interop to connect to an already running instance of Excel
uninstall?
Dispose objects?
Two embedded resources, one is multi-language java resources
Looping through page controls
location changed event required

Top Answerers

mrotoloni
CS05pp2
Faraz_Ahmed
imanish11111
Hopoz
Brandon Bloom
mveeravagu
Srinivas Govada
Littletommy
McWhirter
Kelly, Jimi
Only Title

Answer Questions

  • sailajam Service references and libraries

    I have many libraries in my app and wanted to create a 'WCF services' library to keep all of my services references and functions in one place. I find that it does not work unless I have a service reference in the services library and in each of the calling libraries - obviously not simplifying things as intended. Is there a way of doing this Thanks John Just a thought. As I'm using VB, can this be something to do with namespaces in VB John Follow up to initial post. I was still having problems in my main app referencing the WCF service from a library (dll). A test app worked fine with the code in the main app - no dll's! I found that when I put ...Show All

  • Eddie Garcia virtual directories

    I trying to create virtual directories in my builds. any suggestions cdoloriert Hi, What if I don't wanna use Microsoft SDC Tasks . Can I do something else instead Like my own visual c# class and then call it from my web development file to execute it. Thank you, cdoloriert Have a look at the Web.Website.CreateVirtualDirectory task contained in the Microsoft SDC Tasks . Sayed Ibrahim Hashimi www.sedodream.com You can learn all the basics of MSBuild (including how to write a task) here Yes, you can. Create your class/application, and call it with the Exec task. Note that you would essentially be ...Show All

  • Ankini RichTextBox Selection, set underline

    How can I underline a Selection in RichTextBox If I use: this .richTextBox1.Selection.ApplyPropertyValue( Inline .TextDecorationsProperty, TextDecorations .Underline); the hole block is underlined Best regards, Thomas S. Andersen looks like it is working for me, what CTP are you using Hmm, you're right. It's the (dirty) code I made that doesn't work: public void SetUnderline( bool active) { TextDecorationCollection textDecorationCollection = ( this .richTextBox1.Selection.GetPropertyValue( Inline .TextDecorationsProperty) as TextDecorationCollection ); if (active == true ) textDecorationCollection.Add( TextDecorations .Underline[0]); else textDecorationCollection.R ...Show All

  • MarcD99 Integrate with Visual Studio

    Hi, - I have dotnet 3 installed on my machine. - I've created a website and added a .svc file that I can browse and gives me the Service Information - I've tracked down SvcUtil.exe in the following folder "C:\Program Files\Microsoft SDKs\Windows\v6.0\Bin". - I've downloaded an installed "Visual Studio 2005 Extensions for Windows Workflow Foundation RC5(EN).exe" Now I"d like to create a client talk to the website. But I'm not sure what to do from here. I'm using the following blog ( http://dotnet.org.za/hiltong/articles/52518.aspx ) and there's a mention there of right clicking onthe client project and selecting "Add Service Reference". But there is no such menu option. When I click "Add Web Refere ...Show All

  • Gina Jones Reports in WPF

    Scenario My requirement is show Crystal report inside Browser Hosted WPF Application or to come up with equivalent report using WPF Let me know how to go about this. Hi, I am trying to run crystal report in Windows (WPF) application. I dont get any error but I dont see any data either. "ds" is the dataset I change it dynamically according to filter criteria. Any idea why Here is the code Window3.xaml <StackPanel> <wfi:WindowsFormsHost Height="Auto" Width="Auto"> <cr:CrystalReportViewer x:Name="crv" /> </wfi:WindowsFormsHost> </StackPanel> Window3.xaml.cs public window3() { ...Show All

  • seamonkeyz How to report a bug in MSBuild

    If you have found a bug in MSBuild (or anything else in Visual Studio) the best way to report it is via the product feedback center: https://connect.microsoft.com/feedback/Search.aspx SiteID=210 This allows you to track the progress of the issue, which you wouldn't be able to do if we opened the issue internally ourselves. Also, customer reported issues get higher priority, so it's more likely to be fixed. Sometimes bugs are hard or impossible for us to reproduce, which makes it very hard for us to address them. Here's some tips on a good bug report: 1) Attach a solution or project that reproduces the problem, or steps for creating one from scratch. If at all possible, please narrow down the code and the solution to the simples ...Show All

  • Dottj Conditional Format Events

    Is there any way to catch when the user adds a conditional format to a range of cells in Excel 2007, VSTO 2005 SE Thanks Chris Hi Chris There's nothing special built into VSTO for this. To find out the best way to capture this event, I suggest you ask the specialists in the excel.programming newsgroup. ...Show All

  • LouArnold RichTextBox Selection, set underline

    How can I underline a Selection in RichTextBox If I use: this .richTextBox1.Selection.ApplyPropertyValue( Inline .TextDecorationsProperty, TextDecorations .Underline); the hole block is underlined Best regards, Thomas S. Andersen Ok I'm using June CTP. I am using june CTP too. I selected a word and it underlines the word not the whole sentence looks like it is working for me, what CTP are you using Hmm, you're right. It's the (dirty) code I made that doesn't work: public void SetUnderline( bool active) { TextDecorationCollection textDecorationCollection = ( this .richTextBox1.Selection.GetPropertyValue( Inline .TextDeco ...Show All

  • Shihan Creating Word 2007 doc and template projects with VSTO SE

    I am trying to complete the setup for a machine I am using for Word 2007 and VSTO SE development. I did a complete reinstall of Visual Studio and VSTO after first removing VSTO CTP v3. (This is in leiu of re-imaging the machine, as the VSTO SE download details suggest might be necessary after running the CTP version). All is well, except in order to complete the full/original VSTO installation, I had to temporarily put Word 2003 SP1 on the machine. So I installed Word 2003 SP1 on my Word 2007 machine, then installed VSTO, then removed Word 2003, and finally installed VSTO SE. VSTO SE runs fine and gives me the new Word 2007 Add-in options as expected. However, the other options for launching a new Word document and Word templa ...Show All

  • Sorin Sandu Adding new language service (the best way)

    Dear forum, I want write a language service, but I don't know what is it the better solution: 1. Using Managed Babel System based on Managed Package Lex (MPLEX) Scanner Generator and Managed Package Parser Generator (MPPG) like in ManagedMyC example or 2. Using the Default Babel Implementation based on IBabelService Interface, Bison and Flex like in My C Package example. What do you think about Maybe the second way (Default Babel Implementation) could be more dificult on writing their services Maybe could be more secure Thanks for any answer or help! Julian. I just wanted to say thank you for your help, both in the quality and speed you replied. Julian. ...Show All

  • swaroop.m Request: Table UpdateCheckDefault

    It would save a lot of typing if we could have the UpdateCheck value in the column attribute defaulted by a UpdateCheckDefault value in the Table attribute. Example - I'd like this: [ Table (Name= "Person" , UpdateCheckDefault= UpdateCheck .Never)] public class Person { [ Column ()] public string FirstName; [ Column ()] public string LastName; [ Column (UpdateCheck= UpdateCheck .WhenChanged)] public string SSN; } instead of this: [ Table (Name= "Person" )] public class Person { [ Column (UpdateCheck= UpdateCheck .Never)] public string FirstName; [ Column (UpdateCheck= UpdateCheck .Never)] public string LastName; [ Column (UpdateCheck= UpdateCheck ...Show All

  • Basiclife Custom tool window like DSL Details..

    Hi all, I have defined my first little language with the very impressive DSL Tools. When I now work with the application I miss a custom window to handle the (very specific) configuration of some of my model classes. What I need is a tool like the DSL Details tool window so I want to ask if someone has already builds a similar think. Seems like I have two (write an Add-in or a Package) or more options to solve my requirements but I’m not sure what is the best way to do this. Today I’m not very familiar with writing any kind of IDE Extension but after looking in the documentation it looks not really hard. But the first big problem is: How can I call a command from the DSL Designer View to the Add-in and vice versa. ...Show All

  • progames25 Who can tell me the detail limitations with Crystal reports for vs2005?

    Hi,all I got the message "Integrate Reporting into Server or Web Applications What's included within Visual Studio .NET, C#Builder and Delphi 2005 A Crystal Reports .NET reporting component is built into Visual Studio .NET, C#Builder and Delphi 2005. This bundled component is designed to let you develop and test server or web applications. Although you may deploy your applications using the component, it is best suited for an internal pilot within a workgroup. If you exceed the throughput limitations, the component will throw an exception error (this case does not apply to Visual Studio 2005 users). Learn more about how to scale your application ." from http://www.businessobjects.com/products/reporting/cr ...Show All

  • Wayne Pfeffer How do i Hide fields so that they don't take up space on my form?

    Hi Groups I am using Infopath for reporting, for that i am using repeating section. in my xsd i defined nested repeating sections like one Repeating Section contains 2 sub repeating sections, using conditional formatting i am able to show or hide the sections but the problem is that if i hide one Repeating section, the other repeating section contents are coming in the output and also the space allocated at the design time for first repeating section is also coming, how to avoid the extra spaces. Its very urgent. i am unable to get it from internet, any solution is there for this or this is a bug from MS Thanks and regards Saravanan thanks for ur reply i already posted this question t ...Show All

  • Mateus1223 LINQ vs. 2.0 SQL Server Projects vs. SQL Scripts

    Good Day, At present, most of my orgs DB scripting is kept on the SQL server in the form of stored procs. This has proved a management and versioning pain. Hence, SQL server projects may be a way to move the scripts out of the SQL server. A few questions though... What is the performance difference between running SQL server project queries and running SQL queries via traditional ADO.net methods What is the performance difference between the emerging LINQ technology and SQL Server Project queries Please give hard numbers. Thanks for your time, Johnathan Howdy, As VS 2008 just went to RTM, I wanted to reactivate this issue. I realize that it is not a trivial question, ...Show All

434445464748495051525354555657585960

©2008 Software Development Network

powered by phorum