Software Development Network Logo
  • Windows Live
  • SQL Server
  • Visual C#
  • Smart Device
  • Microsoft ISV
  • VS Team System
  • Windows Forms
  • Visual Basic
  • Architecture
  • Visual C++
  • Visual FoxPro
  • VS Express Editions
  • Visual J#
  • .NET Development
  • Windows Vista

Software Development Network >> Visual Studio

Visual Studio

New Question

Worry about LazyLoading
Reports in Windows 98
Deployment of VSTO 2005 Solution
How do I create an application.extension.config file using MSBuild?
Referencing Properties that contain free form XML
Random behaviour with ITaskItem[]
Before I go out and buy VSTO...
Weird error
Bug fix request
Did not work :-(

Top Answerers

jfache
David Everett
JungleFreak
k - coro
Bruno Sanchez
John Vivoda
jvrobert
dbabe13
fenix01
Ayd?n Kaya
American Family Physician
Only Title

Answer Questions

  • AlexanderP could not load type Microsoft.VisualStudio.CommonIDE.TemplateWizard.Wizard

    Hello, After installing VS.NET 2005 Beta 2 from the DVD (visual studio team suite beta experience kit), i installed a newer beta build . Now i had had to switch back to the Beta 2 that came with the DVD and i have all sorts of problems. Now, the latest problem is the one in the subject. Anyone can help Best regards, Lucian Chiriac I have the same problem. They have added the following Attributes [Microsoft.Vi ...Show All

  • Tommi S. Laukkanen Debuging "Hello World" crashes VS2005 VC++ Express

    Hi VC++ debug experts, Last weekend I downloaded and installed VC++ Express. To test it, I created a CLR Consol App. The default app generated by VC++ is a "Hello World" example. I built it and ran it without any problems. I added a breakpoint and pressed F5. => Up pops two dialogs titled “hello.exe – Program Error” saying "Can not initiate program correctly (0x80000003)….” and then an “A fatal error has occurred and d ...Show All

  • J2002Rogers Install/Uninstall WinFX RunTime

    I'm trying to uninstall the February CTP version of the WinFx runtime on my system and install the newest version and I'm having a lot of difficulty. I tried using the uninstall tool to uninstall the old version and got a message saying that it couldn't find the setup files at C:\783f82990d44e828e5\Setup. It was installed from the network, so I don't know why it would be looking for a setup file at that location. Is this a temporary file loca ...Show All

  • Konstantin.Babiy How are InvokeRequired/Invoke supported in WPF?

    Are they I need to port this to WPF, but InvokeRequired has been removed from the control and there is no form :(( public static void AppendText( Form form, TextBox textbox, string text) { if (textbox.InvokeRequired) { AppendTextCallBack CallBackAppendText = new AppendTextCallBack (AppendText); form.Invoke(CallBackAppendText, new object [] {form, textbox, text }); } else { ...Show All

  • Jon M. multiple windows

    I created a new Word document project. I have added action pane with a simple MonthCalender in it and it is working perfectly. Then I have added a datasource from AdventureWorks database. Still everything worked just fine. But when I dragged field from the datasource into the document it fails to load with the following error: "You are currently viewing this document in multiple windows. To attach an XML expansion pack, you must first close ...Show All

  • Stefano Padovan "OperationFormatter encountered an invalid Message body" on Vista Beta 2

    Hello! We have 2 different deployment scenarios for our WCF solution: 1. Windows 2003 Server SP1 + Winfx Beta 2 2. Windows XP SP2 + Winfx Beta 2 The application is hosted in IIS. On both scenarios we connect through a WPF client and client proxies generated by svcutil to the host. With both deployment scenarios everything works fine. Now we tried to deploy our server solution on Windows Vista Beta 2 + IIS 7 + Winfx Beta 2. Tryi ...Show All

  • jmc42 Complete set of Custom Prerequisites available for VSTO projects in VS2005

    VSTO Outlook deployment just got easier: http://weblogs.asp.net/mnissen/archive/2005/10/26/428564.aspx Good work, Mads! Hi This is very useful, I believe there are is a team working on an MSDN Article on this very topic, I have emailed the PM on this info. Well Done Regards ...Show All

  • Prashanthganathe CrystalDecisions.CrystalReports.Engine.ReportDocument

    Hi friends, i have deploy a VB.net application which have crystal report in it. the application is running well but when i open the form with Crystal report its giving me error. Please help See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.InvalidOperationException: An error occurred creating the form. See Exceptio ...Show All

  • bernardus How do I invalidate/refresh the window?

    How do I invalidate/refresh the window before performing a time consuming operation in the main thread I need the mouse cursor to update and the rect under a dialog box (which just closed) to be repainted before this operation starts. I thought maybe InvalidateVisual() would work, but it didn't. (I know, I should put time consuming operations in background threads, but I'm not quite there yet). Thanks, Tor. ...Show All

  • Alain Lissoir Flickering background when resizing window

    I'm experimenting with Avalon and I notice heavy flickering when a window is resized. This can be easily seen by just creating a blank Avalon project with Visual Studio and (rapidly) resizing this application's main window. What I see is a white background, with parts of it flashing to black (and back to white) when the window is resized. I thought that Avalon is supposed to eliminate flickering, so what am I doing wrong The good ne ...Show All

  • Srivatsn Help crashes Visual Studio 2003

    I am a computer science major at a university that has Visual Studio 2003 available through the MSDN academic alliance. I installed VS without the MSDN library for an assignment and everything was great, then when I later tried to install the library it won't work. If I try to directly open the library, a message comes up saying "updating help..." then Document Explorer crashes. If I open VS the same message comes up and the whole prog ...Show All

  • Mark Miretsky Changing selection of most common environment

    When you first launch Visual Studio 2005 after installation, it asks you for your preferred environment , with choices for VS.Net 2003 compatibility, VB, C#, C++, etc. I accidentally chose one that I did not want. How can I reverse that I tried uninstalling and reinstalling, but it retained my setting. And by the way, in the process of uninstall/reinstall, it ate another few hundred megs of disk. Not sure why this happened either. ...Show All

  • KidFromBrnx SVCUTIL SSL Could not establish trust relationship

    I am trying to generate a proxy for a service that is using SSL for transport security. The problem is that the certificate is not signed. Is there anyway to tell SVCUTIL to ignore any certificate errors This is the error I am receiving. I can view the Service Endpoint only after IE throws security warnings at me. Thanks Attempting to download metadata from 'https://localhost:4443/' using WS-Metadata Exchange or DISCO. Error: Ca ...Show All

  • s_clarke Display empty instead of 0

    I use an expression in a TextBox: Fields!myField.Value/10 myField is a type of integer in SqlServer. If the value in myField is null, the expression "myField.Value/10" will display 0, I want  the expression to display empty if myField is null. How can I do that You can also take advantage of the IsNothing() function. try this: =iif(Fields!myField.Value/10=0, "" , Fields! ...Show All

  • Michela Crystal Report Viewer Not displaying ICON And not functioning when clicking the print.

      I have an issue with Crystal report viewer where when I run my ASP.NET site in 2005 locally using the built in Web Server for Development I can see the toolbar images and when I click the print button I get the popup window prompting for how to print the report and it prints just fine.  Now I publish the site to the web server I do not get the images for the toolbar and when I click the print placeholder the page just posts back t ...Show All

414243444546474849505152535455565758

©2008 Software Development Network

powered by phorum