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

Software Development Network >> xlthim's Q&A profile

xlthim

Member List

Bill Christian
Aksi-
hank voight
Jacobus
Internationalpaddy
PeterVrenken
Lars XLN Audio
Gazeth
Krishnaraj L
Dave at Detica
Vladimir Gaitanov
Matthew Franklin
Jeff Barker
Arik Cohen - msft
Vladimir Chtepa
the_lmich
Xinwei Hong - MSFT
Kodo
WiT8litZ
pfabrie
Only Title

xlthim's Q&A profile

  • Visual Studio Team System Corruption in Source control

    Hi, We have serious problem with error that occurred when we are making check in. We got errors on files that are part of a deleted project in our source control. This is the error: Detailed Message: TF14043: An error occurred computing the delta for item $/xxxx/Libraries/FrameWork/xxxxxx/AutomatedCollectionBase.cs version 1170.System.Data.SqlClient.SqlException: SERVER.TfsVersionControl..prc_CreateDelta: Content Failure - Delta chains must have at least one full version. How can I solve that problem Is it possible to permanently delete the project from source control Is it possible recreating the delta chain Th ...Show All

  • .NET Development Upgrading project to ASP.NET 2.0: find_business Web Service method name is not valid.

    In the ASP.NET 1.1 project a UDDI proxy is used.   I converted the project with the Visual Studio 2005 Conversion Wizard to ASP.Net 2.0 Beta 2 and saved the proxy file (UDDIProxy.cs/ This source code was auto-generated by wsdl, Version=1.0.3705.288. ) in the App_Code folder. If I call the proxy in the application I get the error: find_business Web Service method name is not valid. I am not able to add a Web Reference to the App_WebReferences folder with the WSDL file of uddi.microsoft.com because I cannot find this file on uddi.microsoft.com. Perhaps someone can tell me where I can find the WSDL file for uddi.mic ...Show All

  • .NET Development Delete DataRow From Table

    Hellow How i can Delete DataRow From Datatable without remove it from the table or how can to know this row is deleted without deleted from table final decause i want this row for another thing thanks I think, you can do like this: Add one flag column(bool column) to indicate the DataRow is deleted, and not delete it actually until you will not use it. ...Show All

  • .NET Development Best Practice on two applications talking to each other

    What is the best way to expose a local application feature to other applications I want to expose a static class over multiple applications: ApplicationA.exe consumes StaticClass ApplicationB.exe consumes StaticClass StaticClass is unique in the user machine. Should I have a .Net remoting implementation over a Windows Service or a .Net executable Should I move into AppDomains How can I do that Thanks To my understanding, there is no direct way to share a managed assembly between applications - which is the desired behavior of "StaticClass". Unmanaged is a different animal and unless explicitly as ...Show All

  • Visual Studio Express Editions agreed

    I am the CTO of a large Microsoft-centric tech consulting service. I have spent considerable time over the past month studying and trying out this new starter kit technology. While I must say these starter kits are a great idea, the reality is that they are so poorly supported as to make them worse than useless - they are a waste of time and energy. My take is that they can't be easily installed correctly, as I have attempted installs of each starter kit on various systems, local and remote, and nothing runs. I have wasted hours on these forums, finding an incredible number of similar postings that mirror my own experiences, but none con ...Show All

  • SQL Server Restoring a primary log shipping database - will it ship ?

    Hi, If I perform a point in time restore on a database that is currently a primary log shipping database, will the rollback be reflected on the secondary servers or are extra steps neccesary to accomplish this Thanks. ...Show All

  • SQL Server Can't Create/Use Database Projects is VS2005

    hi, my RTM install of VS2005 (Standard) doesn't seem to offer 'Database Project' as a type of project. Net effect is that when I attempt to open an existing .dpb i get a dialog with " Make sure the application for the project type (.dbp) is installed " When I installed VS2005 & SQL2005 I put SQL2005 on first, and then told the VS install that I didn't need SQL Express (cos' I have the full noise version!). After getting this problem I thought that not choosing SQL Express may have left .dbp bits of of the VS install so I went back and added SQL Express from the add/remove option of the VS installer. But still no good .... Anyone ...Show All

  • Windows Forms Invisible text in MessageBox (using VB .NET 2003)

    I am using VB .NET 2003 to do my developing.  Over the past year or so as i have honed my skills, one thing is getting incresingly annoying.  Sometimes when I am testing a theory and want a message box to show the error text or a success message, the message text allocates the right amount of space, it is just invisible. The text on the MessageBox's OK button is invisible too. The caption on the MessageBox shows fine as does the icon.  Anyone else experience this   Anyone know how to get around / fix this     - Thanks in advance for any and all help in this matter. ...Show All

  • SQL Server Newbie: "Compiling" a DTSx package

    I have now created a few simple SSIS packages. In BIDS I right-clicked on a solution and selected "Build". I went to the "bin" directory hoping to find a standalone ".exe\.dll" file but found only a ".dtsx' file. Can BIDS can actually build a standalone exe\dll or is the .dtsx file all that's available (If so, I guess that another program is expected to invoke the .dtsx file.) TIA, barker In my SSIS package deployments, I've deployed my packages via file system files. Basically, all you get for this is a .dtsx file in your /bin folder. To the best of my ...Show All

  • Visual Studio dbg files not compatible with dlls - causing debug issues

    Basic problem: Following installation a message instructed me to install the symbol set. During installation of the symbol set, for some of the dbg files a message was given saying that dbg file was not consistent with its associated dll, and therefore I chose not to install it. I now think these missing dbg files may be the cause of debug problem. I do not know why my regular installation of VC++ and the symbol set should be imcompatible with these dlls. Can any one suggest how to resolve this and get dbgs that are compatible Thanks, Andrew H More detail: Using Step into in Vis C++ I can successfully step into construction ...Show All

  • Visual Studio 2008 (Pre-release) ToList() and ToArray() not found

    I'm trying to execute the following sample code var q = from c in db.Customers where c.City == "London" select c; // Execute once using ToList() or ToArray() var list = q.ToList(); I'm getting a compiler error: "Error 43 'System.Data.DLinq.Query<Customer>' does not contain a definition for 'ToList' " I get similar error when I try to use ToArray() method. The query works fine when I loop through the results in a foreach statement. Any ideas Make sure you have imported the System.Query namespace with the using clause. Otherwise, the compi ...Show All

  • Visual Studio Gatteing a Service from within an Addin

    Is there a way to access the GetService method on a service provider from within an AddIn. ----------------------------- Jack Stephenson Hi, System.IServiceProvider is the new managed interface that is specific to .NET components and containers. Microsoft.VisualStudio.Ole.Interop.IServiceProvider is the legacy OLE interface defined by Windows that all COM containers/components support. Hope that helps Regards Dr. eX ...Show All

  • Visual C# Spacing formatting and return statement

    The new spacing options in VS2005 are really cool (Tools/Options/Text Editor/C#/Formatting/Spacing). You can control almost all formatting aspects. "Almost" because I did not find a way to control the spacing after "return". I like to write code like: return(result); instead of: return result; The auto-formatting gives me: return (result); Yes, I can live with that, but you know... old habits, ... Does somebody know if it is possible somewhere to control this kind of spacing Regards Sebastien Some add ins may allow it. OR you could write a macro that does a f ...Show All

  • .NET Development How to Import the Tables of Database to ExcelSheet?

    How to Import the Tables of Database to ExcelSheet Is there any SP available or Manual way I have written a ExcelExporter that can export tables from a DataSet to Excel. You can download the source code for free at http://www.gotdotnet.com/codegallery/codegallery.aspx id=5713a9fa-d115-4895-aa4f-d26766768eb8 ...Show All

  • Software Development for Windows Vista event not firing

    I have a custom activity, that exposes an XmlDocument similar to this: public partial class Activity1 : System.Workflow.ComponentModel. Activity { public Activity1() { InitializeComponent(); } private XmlDocument xmlDoc; public XmlDocument XmlDoc { get { if ( this .xmlDoc == null ) { xmlDoc = new XmlDocument (); xmlDoc.AppendChild(xmlDoc.CreateElement( "test" )); xmlDoc.NodeChanged += new XmlNodeChangedEventHandler (xmlDoc_NodeChanged); } return this .xmlDoc; } } void xmlDoc_NodeChanged( object sender, XmlNodeChangedEventArgs e) { Console .WriteLin ...Show All

©2008 Software Development Network