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

Software Development Network >> Visual Studio

Visual Studio

New Question

FaultContractAttribute , May 22 Build With Go-Live
Problems with Setup (.NetFxRC1 & Orcas)
No such interface supported with v3
Mail item icons
QueryStatus() isn't called until running a command for the first time
Triggers and MultTriggers problems
Where are the BitmapEffects?
After installing VS 2005 SP1 the debugger doesn't show MFC source files
How Can I generate the Help file for Dependency DLLs. ?
How are new objects created in a DSL?

Top Answerers

Ribeye
Finch82
Parker Lewis
epilotusa
MWillig
xRuntime
Primate101
takobell
AhXue
Anon.
Info 3000
Only Title

Answer Questions

  • kira2 Syncrhonizing an 'Order'

    Hi, I'm not sure if Synchronization Services can help me but I hope so. Suppose I create a new an Order in the client side. It has header and lines. When I synchronize with the server I need two things: - I need to be sure the header and the lines are inserted in the same transaction. - I need to validate the Order. Even if it was valid in the client side, I need to be sure it's valid before inserting it in the main database. Can this be done with Synchronization Services Thanks Thanks Rafik, Next question. Suppose I have an 'Orders' class, with header and lines, and I want to use that class to persist the changes to the database. I want to use the synchronization framework to know ...Show All

  • Cerberuss Where Can I Find More Help?

    Hi everyone, We’d like to take a second here to tell you how to get more help with your Crystal Reports for Visual Studio projects. For information specific to your bundled version with Visual Studio 2005 visit our Business Objects Visual Studio 2005 Developer Zone . Here you’ll find: Sample Code Projects Walkthroughs Online SDK Documentation What’s New to Crystal Reports for Visual Studio 2005 and Compatibility Information You can also find the Crystal Reports for Visual Studio documentation on MSDN: See http://msdn2.microsoft.com/en-US/library/ms345074(VS.80).aspx under Development Tools and Languages > Visual Studio > Tools and Features > Crystal Reports. ...Show All

  • Quimbo Using the Office RibbonBar in Xaml

    Hi Everyone, I have a general question can you use the Office RibbonBar control from within Xaml I you can has anyone done it an what are the pitfalls to look out for. Thanks in Advance Andy Actually, you can write your own ribbon controls using WPF's styling and control templates. here is an idea: http://shevaspace.spaces.live.com/blog/cns!FD9A0F1F8DD06954!502.entry Sheva Thanks Zhou The link gives me a great start. Andy I believe there are third parties that are building the ribbon UI using WPF. Currently this isn't something on our list. There's an Office UI Licensing program that lets you obtain a royalty free license if you'd like to u ...Show All

  • MyraK MSDN Lib hierarchy

    Just a comment/rant: Please keep the MSDN Lib hierarchy stable - don't shuffle around existing trees/nodes so lightly. Makes difficult and annoying to use the doc set. ...Show All

  • Warren13 WSDL, XSD's and WCF

    I'm trying to make a client for a bank using the Web Services version of OFX banking standard. There is a wsdl file and some xsd's for describing the services (actually there's just one operation in the service called doOFX) and I used the 'svcutil' tool to make the code for the client and server communication. The doOFX is the operation contract and it has a message as a parameter and a message as a result. Both the parameter and the result types are created as a message contract by the tool, which i suppose it's fine. Each of this types have 2 headers and 1 body. Calling the operation with a message that only has the headers initialized works just fine, but when i try to send a message with the body initialized, i get the following excep ...Show All

  • gafferuk I pass values in the report viewer and wont respond.... - newbie

    Hi I m using VS 05 and i ve made a simple report in which i give two parameters startdate and enddate (integers representing year of birth) and i get back a table with people that were born in the given range of years (with reportviewer control , remote processing) When i set at the sql server reporting services the parameters with defaulf values (for example , start date = 1900 and enddate=2000) the reportviewer renders and give me the results at my test website http://i176.photobucket.com/albums/w189/a_joom/01.jpg The problem is that while i m on the page, if i change the dates ,ex. StartYear=2000 endYear= 2007 and press view report the parameters wont pass , instead I get back the same report table with the start date ...Show All

  • XNA Rockstar BindingSource Filter and Reports

    Hi all, anyone has ideas how to display on ReportViewer items filtered through BindingSource.Filter Adding a BindingSource through ReportDataSource to LocalReport.DataSources doesn't seem to work - all items are shown Other idead would be to get ID from BindingSource or DataGridView and pass them to ID parameter .. but how Any smart suggestions Well - thanks for the help anyway. The code you provided returns "Object reference not set to an instance of an object." on the line table = currdatarowview.dataview.totable() Hi, I am using serverreport… I want to filter the report datasource based on filter condition from my ...Show All

  • Aleniko29139 Refresh DataGridView with DLINQ

    I create a Winform app with Datagridview whose DateSource is bindingsource1 and bindingsource1.DataSource is Table < MyTrack > the Datagridview has no problem reflect changes when i update existing data record. but it won't auto refresh when i add/delete record. anyone knows the solution. thanks a lot Thank you very much. it works. I was trying using ToList() before and it doesn't. how come ToBindingList() not appear in the intellisence Intellisense implementation for extension methods was greatly in simplified the May CTP and apparently this extension method wasn't considered. However, the team is working on intellisense for extension methods and it shou ...Show All

  • kkorolz Computer Shuts down on Install

    Hi, I'm trying to install vs2005 - default install - from Disc 3073 Enu MSDN TE for Softw Dev. This is on a clean machine (formatted HDD + XP PRO + SP2). Every time the computer shuts down (in fact 'turns off' without warning)  at about the same point during installation (near the end of vs2005). I have rebuilt this computer (Acer TM636LCI) from scratch 3 times now (twice enu, once dutch) but it keeps on failing. Please advice! Getting a bit desperate   TIA, Michael Problem solved: http://blogs.msdn.com/astebner/archive/2006/03/17/554248.aspx Document Explorer 2005 and .NET 2.0 were returning value 3010 (MSI: requires reboot), and VS2005 Setup is so " ...Show All

  • Mohan1 Making window Borderless & TopMost when maximize button clicked

    I am trying to make a window fullscreen and hide border when window is maximized. It seems that the size of a window is not correct (does not cover the taskbar) when I change Topmost and WindowStyle properties after WindowState has changed... ... Is there another way to do this protected override void OnStateChanged( EventArgs e) { if ( this .WindowState == WindowState .Maximized) { this .Topmost = true ; this .WindowStyle = WindowStyle .None; } else { this .Topmost = false ; this .WindowStyle = WindowStyle .SingleBorderWindow; } base .OnStateChanged(e); } You are correct that the taskbar will not be covered if you maximize the W ...Show All

  • Terryj1 The project type is not supported by this installation.

    After having installed all the RC1 parts, including "Orcas" and try to create a new project in VisualStudio 2005 (Windows Application, XAML Browser Application or Custom Control Library) I get an error message: "The project file '.....' cannot be opened. The project type is not supported by this installation." I've tried reinstalling everything but it's still giving the same error message. Could it be because I'm running a swedish version of Windows XP Although I haven't had this problem with other releases. Well, I answered my own question...but hopefully I can help someone else. I reinstalled VS.NET 2005 C# Express again and this time it works. I guess the pro ...Show All

  • Renan Souza How are new objects created in a DSL?

    I know this looks like a trivial question, but I am seeing some unexpected behaviour, so I'd like to explore it a bit. As I mentioned previously, I have a DSL that allows references between different models through well-defined entry and exit points. To reference this IO points I decided not to use the moniker structures, but to create a ReferenceId attribute. (Aside: monikers are adding a new uniqueness constraint to the models. It appears you cannot have two objects in a model with the same name, which is not an obvious constraint.) I decided the ReferenceIds should be Strings, editable by the user, but set with default values for convenience. I created them as attributes with custom storage, with the following accessor methods: private ...Show All

  • Scott McKeown Actor ?

    Hi I am doing interop to a java web service and I am getting this error here : "Cannot find security header with actor '' in message." can anyone give me some pointers on this error message, what does it mean cheer @llan Are you getting this error on the client or the server A security header can contain an actor attribute which indicates who it's intended for. If there is no actor attribute in the security header (and there can only one of these in the envelope) then it's implicitly intended for the final destination. It looks like something is requiring the use of the actor attribute. Go ahead and set up tracing/logging and post your envelope if you would so we can ...Show All

  • grandpaff XAML to C# converter?

    I've noticed mostly all XAML code snippets have a C# equivalent... after all, Microsoft posts many of their XAML examples in C#, VB, etc. Are there any tools out there that will convert XAML code to equivalent C# code Initially, WPF team compiles the XAML into CAML which is the code represenation of XAML, but they finally finds out that CAML is just too cumbersome, and gains no performance, so they ends up using BAML thingy, probably They can release the parser which translate XAML into code to the outside world for scenario which you describes. Sheva DiamonDogX wrote: Are there any tools out there that will convert XAML code to equivalent C# code Sure, the WPF build system does this ...Show All

  • Mark Michaelis 100% CPU Usage Problem with Crystal XI R2 and .Net 2.0

    **Using Visual Studio 2005 and Crystal Reports XI Release 2 Developer Edition. I currently have a multi-threaded C# application that loads a Crystal Report at runtime, fills out the necessary parameters and then exports the file to disk. I export around 5000 reports a day, in about 3 hours (nightly runs of the day's transactions), but sometimes, without warning or any debug info, the application locks-up using 100% of the processor and becomes completely unresponsive. No more reports are loaded or exported. ***It is soo unresponsive that if i actually click 'PAUSE' in visual studio, my processor continues to use 100% of the cpu.*** (only time I have ever seen this) I know Crystal Reports has some legacy COM objects, and I have been doing r ...Show All

93949596979899012345678910

©2008 Software Development Network

powered by phorum