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

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

UstesG

Member List

krv5
salim_555
Hugo Kornelis
wyrzy
Grattier
Dhatrii
post0300
Dennis Cheng - MSFT
Arindam Sinha
markwebber#1
Joe67
zeipherus
billreynolds
Mary Sun
bungalo101
HuWu
SanDiegoKiss
HoustonLucifer
Antwan
msgm69
Only Title

UstesG's Q&A profile

  • Visual Studio Tools.InstallCommunityControls and multiple installs

    I'm using COM code to register a set of controls I've manually copied into the Controls folder of My DOcuments\Visual Studio. o = CREATEOBJECT ( "VisualStudio.DTE.8.0" ) o.ExecuteCommand( "Tools.InstallCommunityControls" , "" ) Registration works, but if this command is called more than once the controls duplicate everytime. So if I register controls and some other set of controls was alredy installed I'll duplicate their controls which is obviously not a good idea. What's the parameter to InstallCommunityControls Is there an option to "REMOVE" or better yet to remove and install only a speci ...Show All

  • SQL Server SSIS will not start after SQL Server 2005 SP1 upgrade

    Hi guys, I have experienced a problem with a SQL Server 2005 SP1 upgrade, where hotfix.exe reported an error during the SSIS component upgrade, and then the SSIS service would not start back up. I have since attempted an additional SP1 upgrade on the server, which completed successfully, however the SSIS service still will not start. The server is running Windows Server 2003 Standard Edition SP1 with SQL Server 2005 Standard Edition (x86), which had been a clean RTM install prior to the SP1 upgrade attempt. The following information was located in the C:\Windows\Hotfix\DTS9\Logs\DTS9_Hotfix_KB913090_0.log file (the servers name has bee ...Show All

  • Visual C# C# - Namespaces - accessing of sub-namespaces

    Consider the following code snippet, in a file: namespace NamespaceA.NamespaceB.NamespaceC { public class ClassC { public static string StringC { get { return "string c" ; } } } } Now, I want to be able to access the property from within another file. The following works - using NamespaceA.NamespaceB; namespace Tester { public class TesterClass { public string StringC() { string myValue; myValue = NamespaceA.NamespaceB .NamespaceC. ClassC .StringC; return myValue; } } } However, I don't want to have to explicitly use NamespaceA ...Show All

  • SQL Server sql DB on Server1 and SSIS server on Server 2 problem

    I want to deploy my packages to the MSDB on Server1 and I want to use the SSIS server on Server2 to execute those packages. so: Server1 = SQL Server, Server Agent Server2 = SSIS server, SSRS server, SSAS server Question1: I'm using this setup because then the CPU on Server2 is used for processing the package, right So ... I want to execute a Job on Server Agent on Server1 to run packages stored also on Server1 but the SSIS server itself is on Server2 Then there is another problem: In the SSIS server (Server2) configuration file called MsDtsSrvr.ini.xml (see http://msdn2.microsoft.com/en-US/library/ms137789(SQL.90).aspx ...Show All

  • SQL Server Error Deploying SSAS Cube

    I'm trying to deploy Adventure Works DW Cube and I'm getting the following Error: Error -1056833523 : File system error: Error opening file; \\ \C:\Program\Microsoft SQL Server\MSSQL.1\OLAP\Data\Adventure Works DW Standard Edition.2.db\Adventure Works DW.0.cub\Fact Internet Sales 1.19.det.xml is not a disk file or file is not accessible. The file changes sometimes when I try again butthe error is the same   //matbac  Problem solved: It was the Norman anti-virus that caused the problem. ...Show All

  • Visual Studio Error MSB4014

    We are integrating out customnized MSBUild project into VS2005. When build the project in VS2005 IDE, some times we got the error MSB4014. Can you experts shed some light on what causes this error and how to avoid it Error MSB4014: The build was aborted because of an internal failure. Microsoft.Build.Shared.InternalErrorException: Internal MSBuild Error: Project shouldn't be in ProjectManager already. at Microsoft.Build.Shared.ErrorUtilities.ThrowInternalError(Boolean showAssert, String unformattedMessage, Object[] args) at Microsoft.Build.BuildEngine.Engine.BuildProject(Project project, String[] targetNames, IDictionary targetOutputs, Bu ...Show All

  • Visual C# Returning multiple values from methods

    How do I return multiple values form methods Thank you 'van de Sande ', this is what I need for my senario :) ...Show All

  • Visual Studio 2008 (Pre-release) I love DLinq. Really need n-tier support though.

    In section 7.4 of the DLinq guide it mentions that that's something you guys are looking at. Do you guys have an idea if that functionality will get in there before the product is given the green light to go-live Since most apps these days are designed as SOA, there will need to be a distributed notification mechanism. Thanks CZ The type of n-tier support we have for DLinq is simply an API that allows you to introduce objects to a new context after they have been round-tripped across the tiers. You still have to move the objects or data across the tiers yourself, and you have to figure out how to squirrel aw ...Show All

  • .NET Development Collect Search Results

    I am pretty new to .NET programing. I want to create an application that will query multiple remote websites and return the results data to my program. How would I approach this Are there examples of this online If you want a UI component you can use the WebBrowser control (see http://msdn2.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx ). If you want to just issue HTTP GET requests programmatically, you can use the HttpGetRequest or WebClient types (see http://msdn2.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx ) Here is a sample on how to use the WebBrowse ...Show All

  • Visual C++ Double-buffering a SplitContainer panel

    I am taking my first foray into .NET programming using the Visual Studio Express 2005 edition. I am trying to convert an MFC based application and thus far have succesfully created the MDI structure etc. I am now designing the child forms which consist of a SplitContainer. The left panel is for controls, the right panel is for a diagram drawn by the application. I want (need) to double buffer this panel and am unsure how to proceed. My attempts to-date have all hit problems -- I cannot derive from the splitter panel class (it is sealed) and I cannot do a SetStyle on the already created panels (it is protected). Should I derive my own p ...Show All

  • Visual Studio 2008 (Pre-release) how to create .xps files

    can anybody know how to create .xps files programatically You probably want to start here . Pay special attention to the side bars. there is an XPS popup menu on the left and there are related links on the right. Articles and code samples for XPS documentations can also be found here Hope this helps. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to flip screen/desktop or a directx window up side down

    Dear all, Is there a simple way to flip the screen/desktop vertically or horizontally By flip I mean mirror image, not rotation. If full screen flip is not possible, is there are simple way to flip the contents (3D graphics. images, text, etc) of a directx windows vertically or horizontally Thank you so much Many thanks Jack. In fact i'm working on a system a bit like an arcade shooting game. To create an illusion of a far away screen, a mirror is used to reflect the monitor screen that is facing up. In that case, everything it draws in the program must be an mirror image to be reflected correctly to the users. I believe ...Show All

  • Visual Studio Team System load test results

    Hi, After completing the load test I am seeing results as For requests/sec Range is 10 and in Avg column value is 4.5 My question is because range is 10 I have to multiply with 10 so that 4.5*10 =45 seconds. Is it right that in above case requests/sec is 45 seconds or 4.5 Which is right answer In another case for response time I am seeing Range is 1000 and avg column value is 99. My question is because range is 1000 I have to divided with 10 so that 4.5*10 99/10=9.9 seconds. Is it right that in above case response time is 99 seconds or 9.9 seconds Which is right answer ...Show All

  • Visual C# Is it possible to wrap a property setter directly with a delegate?

    I tried the following without success.  I don't want to have to code a separate method just so I can pass the setter function to another class as I'm going to be doing this a lot. public class MyClass {     public delegate void SetStringDelegate( string value);     public string MyProperty    {       get{ return myProperty; }       set{ myProperty = value; }    }     public void DoTest()    {       /* This gives compile error "cannot explicitly call ...Show All

  • Windows Forms Adding new records with the BindingSource

    I am having a problem adding controls through a bindingSource/bindingNavigator setup.  Everything else works (updating, deleting, and browsing).  For this test I am using an untyped recordset. When I click the AddNew button on the navigator, the AddingNew event is fired on the bindingSource.  In this event I add a new row to the dataTable and set the AddingNewEventArgs NewObject property to a reference to the new row.  This is where it gets weird... The navigator indicates that a new row has been added by incrementing its count.  However, I cannot navigate to the new record using the navigator's moveNext or mo ...Show All

©2008 Software Development Network