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

Software Development Network >> Visual Studio

Visual Studio

New Question

What ever happened to ObjectSpaces?
Microsoft.Office.Tools.Word.XMLNode.ContextLeave: Problems with selections?
Office Word 2003 component in .Net 2005
Checkin multiple files failed (VS 2005; VSS 6.0d)
Sdc.Tasks SetEnvironmentVariable - Why wont it set environment variables for me?
solution level tasks
LocalReport become 1K after deployment
How to Search Outlook Mail Body?
Migrating old WebServices to WCF
WPF

Top Answerers

roy182
William Wong
SCRunner
Jay433882
UnknownScripter
Matt Birchall
doubletrouble
stack888
canuck81
amazingsunday
sitemap
Only Title

Answer Questions

  • Tryst Failed to convert Parameter Value from a Byte[] to a Datetime?

    hey sync'ers... anyone having trouble with converting Btye's to DateTime problems I have stepped through every line and double checked both the client and server db's and cannot isolate this error in code... hopefully i'm being an idiot and someone can look at the below and tell me so... the exception is above the sync call below somewhere... i've tried datetime instead of DbType .Binary with no success... anyone else have this problem solution Thanks! I'm using this: SqlSyncAdapterBuilder ProposalDetailBuilder = new SqlSyncAdapterBuilder (); ProposalDetailBuilder.Connection = serverConnection; ProposalDetailBuilder.SyncDirection = SyncDirection .Bidirectional; // base table ProposalDetailBuilder.TableName = ...Show All

  • renotiko01 Application.LoadComponent() for unreferenced assemblies

    Application.LoadComponent() works well for xaml files that are inside referenced assemblies (ie. added as a project reference). I have a specific scenario where my assemblies will be stored in a subfolder but are not referenced. I still need to be able to call LoadComponent() to load the xaml files inside those assemblies. Is this possible or an unsupported scenario Note that my assemblies would be in a subfolder, relative to the application. I haven't been able to find a solution in the SDK docs. This scenario is a core requirement for the plugin architecture that I am building. Anyone dealt with something like this before Interesting...I was not aware of the performance problems with Activator.CreateInstance(). Will stick to the ...Show All

  • Nick Mc Child table not updating correctly?

    I have a person object, which has via a foreign key an address table attached to it in the LINQ designer. The address table has an addresstype which comes from a types table via a Foreign Key as well. When I create an instance of a person, and check the first address typeID I get a value of 4. Via my interface I change the value to 6 (a valid value in the types table), I can query the Address object and it will tell me it's set to 6. However, once I commit the changes via DBContext.SubmitChanges() the value rolls back to 4 in my local instance. I see not Exceptions being thrown.. and I'm just wondering if there is a bug somewhere in LINQ that isn't allowing the sub-tables for a given object to be updated properly Thanks. Jim ...Show All

  • Jim Perry Bind to a particular row and column of a dynamic grid?

    (Originally posted in the ...developer.winfx.avalon newsgroup, but this forum seems a little more lively.) I'm new to WPF, so perhaps I'm going about this the wrong way. I'm trying to create a grid that contains a collection of objects. The number of rows and columns of this grid is dynamic; ideally those properties would be bound to a couple of properties of a custom object. The position of the objects within the grid would ideally be bound to properties of those objects themselves. A Grid allows items to be bound to particular rows/columns, but the total number of rows/columns must be static (at least, from a pure XAML perspective). The UniversalGrid allows binding to the total number of rows/columns, but items cannot be bou ...Show All

  • jojo82 Error Window1 dosnt contain a definition for 'Invoke' Help please

    Here is the line of code with the Invoke in it:: this .Invoke( new delUpdateHistory (( this .UpdateHistory)), para); The Line Below is the Delegate for the above:: public delegate void delUpdateHistory ( string str); Which goes to this section of code:: public void UpdateHistory( string str) { // some code }   this.Invoke produces this error:: Error 1 'iSCS.Window1' does not contain a definition for 'Invoke'  Invoke from what i have read is supported by .NET 3.0 Framework so basically i shouldnt have to use using System.Windows.Forms( .NET 2.0 ). So how do i use "Invoke" here Cant anyone tell me how to fix thi ...Show All

  • Philippe Cand Explaination of different timeout types

    When I configure a binding I can overwrite several default timeout settings. For example there are: OpenTimeout CloseTimeout SendTimeout ReceiveTimeout InactivityTimeout ... What exactly does each timeout stand for The WCF documentation says "...timeout for an open operation to complete..." for the OpenTimeout for example - but what does this mean exactly Maybe some of you can bring some light in this Especially I want to know, which timeout to configure to achieve the following: A client tries to connect to a server service, but the server is not running at the moment - the caller should recognize this immediately. Which timeout do I have to minimize Regards Bastian This blog entry tou ...Show All

  • RainMaan Error 11 The "ResolveAssemblyReference" task failed unexpectedly.

    Error 11 The "ResolveAssemblyReference" task failed unexpectedly. System.IO.PathTooLongException: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters. at System.IO.Path.NormalizePathFast(String path, Boolean fullCheck) at System.IO.Path.GetDirectoryName(String path) at Microsoft.Build.Tasks.SystemState.FileExists(String path) at Microsoft.Build.Tasks.Resolver.FileMatchesAssemblyName(AssemblyNameExtension assemblyName, Boolean isPrimaryProjectReference, Boolean wantSpecificVersion, Boolean allowMismatchBetweenFusionNameAndFileName, String pathToCandidateAssembly, ResolutionSearchLocation searchLocation) at ...Show All

  • traderhen What is the lastest drop and when is the next one scheduled?

    Takes me half a day to upgrade to latest CTP/RC. Need to schedule the time. Please advise. Thanks Hi Nick, The current release is the September CTP that matches the September CTP of the .NET Framework. Details are here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=761766&SiteID=1 The next release (October CTP) is imminent, most likely late this week. In the mean time, could you say more about why it takes a day to update to the latest CTP of Cider We obviously don't intend or expect the process to take that long :-) thanks, chad (half-day) although I'm not blaming it on the Orcas stuff. The general process for me is:   Read release notes to see what works with what (there ...Show All

  • Sabrecat How to get my nodeID?

    How to get my nodeID without customer resolver CreateHost... OpenHost... CreateChannel... PeerNode pn = m_Channel.GetProperty<PeerNode>(); String str = pn.InnerNode.NodeId;// I want to get my nodeID here! compile error CS0117: 'System.ServiceModel.PeerNode' does not contain a definition for 'InnerNode' unser debugmode, through "QuickWindow" I can find pn.InnerNode.NodeId Please help! Any other way ok, thank you! Hi Hailong, Like Carlos points out above, unfortunately, we dont expose the InnerNode object that contains the actual nodeID property. Is there a specific reason why you want to utilize the PeerNodeID Thanks, Shalini Actually, It's not ver ...Show All

  • Joe Au how can I develop an addin which lists all the projects in a solution

    using EnvDTE80 i want to develop an addin which can automatically take the list of projects available for build.before building it automatically updates web references of all projects. then build dependencies and projects. how can i do it. there is no method to update the project's web references. whenever i select the web references object in the ide the command to update webreference is attached to project. so how can i use the same command. Thanks Edore. I was able to solve the problem by developing this code. Now i have another problem , where i need to know the build hierarchy like sample code in macro   DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer).Activate() For Each solutionItem ...Show All

  • aoky Is LINQ in its current state (may CTP) useable to develop with?

    Was going through alot of threads, but i didnt see any concrete answer to my question. I am about to start development on a server where we in the future would like to use LINQ. Would it be advisable to start using the LINQ may CTP or are many things destined to change so we would have been just as good, if not better off going with ADO.NET untill the final release of LINQ is available, and then rewrite it to use LINQ It is abolutly and 100% usabel to DEVELOP with. Point is it is not usable enough to deploy anything - on top of the legal hassles that you are not allowed to. But if you for example work on a long term project that may require / take advantatage of LINQ - there is nothing stoppping yo ...Show All

  • Christoph M&amp;#252;ller Outlook 2007 Form Regions

    Hello Outlook 2007 has the feature of form regions that let you customize views by intorducing the concept of userform. What I had noticed is that userforms has a couple of limitations besides a nice RAD-enabled GUI. So the questions goes here as I found no useful information in this forum, nor in the usergroups. 1. Is it possible to use third party controls like Infragistics/etc inside outlook userform If yes, how it will be, If no, then what is the alternate way to come up with 2. In VS IDE, can I add a custome usercontrol into the controls collection of userform dynamically at run-time like this.userform.controls.add(...); Thanks in advance. Regards, dotnetangel wrote: ...Show All

  • ktm300 Support for both 2003 and 2007

    Hello, Sorry if this has been asked before, but basically I need to create an Outlook add-in that will work with both Outlook 2003 and 2007. Is this possible or do I need one control library for my common functionality and one add-in project for each version If so then how do I get the control project to differentiate between which version it is working with (presumably I need to reference two different DLLs for the two versions) You will really want to create one core library and two separate add-in projects for 2003 and 2007. This architecture will let you take advantage of the different User Interface options in Outlook 2003 and 2007. You will find that development, testing, and deployment scenarios w ...Show All

  • lemonash VS 2003 devenv.exe as a scheduled task hangs during clean step after vs2005 install

    Ok, Hope this is the right place. We have a large solution 70+ projects and we automate the build process via scheduled tasks. Now several machines (all dual core), after having vs.net 2005 installed, fail to complete this process. I've narrowed it down to the clean step. To reproduce this I have scheduled a batch file as a different user (we use to build) and all it does is clean. When I run the task, devenv.exe hangs and spins one cpu to 100% at the end when it should exit. NOTE: This is not the 2005 version of devenv that runs, rather 2k3. and test is a dir containing the sln and projects. Here are the contents of the batch file. ---------------------- CALL "C:\Program Files\Microsoft Visual Studio .NE ...Show All

  • bitskull Setting foreground and background to be the same when a control is disabled

    Can someone suggest XAML code that would set the foreground and background of a control (say a TextBox) to be the same when it is disabled as it was when it was enabled. I mean if the Background was white and Foreground was Black when the TextBox was enabled, if the TextBox is disabled, the Background and Foreground should remain the same and not be grayed out. you can do something like this(removed the trigger which changes the colors when the textbox is not enabled) < Style x:Key = " {x:Type TextBox} " TargetType = " {x:Type TextBoxBase} " > < Setter Property = " SnapsToDevicePixels " Value = " True " /> < Setter Property = &q ...Show All

404142434445464748495051525354555657

©2008 Software Development Network

powered by phorum