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

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

iortizvictory

Member List

Tan Phan
MarvinTPA
Bo Persson
Clint_77
Tonia
Justin F.
JHMiller
oVan
FiftyFive
paul one
bluefire_xl
scubabeme
ASL
gerard555
Raatjetoe
Marc EMILE
Calhoun Solutions
Mshock
Hoffmann
AlbyRock87
Only Title

iortizvictory's Q&A profile

  • Visual Studio Team System Field name issue after B3R to RC upgrade

    When I upgraded the server from B3R to RC, I met following error: found field name in custom methodlogies that will clash with new CMMI methodlogy. So I renamed the field name of "Microsoft.VSTS.Common.Severity" from "Severity" to "Exposure". After upgrade, I wanted to import customized work item "bug.xml" to one project. In this xml, the field "Microsoft.VSTS.Common.Severity" has the name "Severity". Then error TF26177 happened: the field "Microsoft.VSTS.Common.Severity" can not be renamed from "Exposure" to "Severity". I am a little confused. In ...Show All

  • .NET Development How to use inherited classes in web method?

    I have two classes as below: public class BaseClass  {    public BaseClass()  {  }    public BaseClass(string name)   {    this._name = name;   }   private string _name = "BaseClass";   public string Name   {    get    {      return _name;    }    set    {      _name = value;    }   }     } public class InheritedClass : BaseClass {   public InheritedClass(string name)    : base(name)   {   ...Show All

  • Visual Studio VSS 2005 and Visual Studio 2005 Professional Edition

    Is Visual Source Safe 2005 included in Visual Studio 2005 Professional Edition I haven't been able to find information on this anywhere.  We are worried that we may have to purchase Visual Studio 2005 Professional Edition and also purchase Visual Source Safe 2005.  Previously, we only had to purchase Visual Studio .NET 2003 Enterprise Architect which included Visual Source Safe 6. Any information will help. Thanks.     Thanks.  That page is what made me look into this further. So it looks like we either have to purchase MSDN Premium or Visual Sourse Safe 20 ...Show All

  • SQL Server SQL Server 2005 JDBC Driver 1.0 error in using XA datasource

    We are in the process of configuring a j2ee application with SQL Server 2005. We have downloaded the new version of SQL Server 2005 Java Database Connectivity (JDBC) Driver 1.0. We are having some issues in getting it to work using the XA datasource. Description of the error is as follows: javax.transaction.xa.XAException: java.sql.SQLException: Failed to create the XA control connection. Error: Could not find stored procedure 'master..xp_sqljdbc_xa_init'.. at com.microsoft.sqlserver.jdbc.SQLServerXAResource.start(Unknown Source) Has anyone else has encountered this and possibly found a solution. Regards, Bindu ...Show All

  • Visual Studio Items and when are they filled

    Hi there Looking for some help on this... If I was to create an Items collection in the following way: < ItemGroup > < TestAssemblies Include = " **.tests.dll " /> </ ItemGroup > When would the values be assigned to the collection I intend this to contain a list of all my unit test and I am then going to use this as input to my unit test target, but I am unsure if the collection would be populated when MSBuild is executed, when the collection is encountered or when its first reference. Thanks Andy When MSBuild executes the project it ...Show All

  • SQL Server Reporting services in 2005

    Hi, How do i get the "Data" "Layout" and "Preview" tabs in the report designer like displayed in Brian Welckers video "Report Authoring Tips and Tricks" http://msdn.microsoft.com/msdntv/episode.aspx xml=episodes/en/20050609SQLServerBW/manifest.xml When I add a report to my project, all I get is the layout view. When I click the menu Reports -> Data Dources, all I get is a list of my DataSources from my main project, I have no ability to Add a SQL server source, or OLEDB source, or even write a SQL statement like in the video. Did I miss something I need when installing :-) I just watched (a lot of) this video. When he set his li ...Show All

  • Windows Forms No-Touch/Smart Client Offline Capability

    While researching no touch deployment, one of the documented features was the ability to work offline.  Since dlls are cached on the client, if that library is not available online, the app should fall-back on the cached version. I just tried a scenario where I reflect an assembly referenced through an http path.  Once reflected, the assembly appears in&nbs ...Show All

  • SQL Server ODBC DSN for SQL Database

    Hi, I am trying to configure DSN for a remote SQL database using Windows authentication. When I logn with a user ID and configure the DSN, it's working fine. But when I logout and login with another user ID, DSN test is failing with the following message. Connection Failed: SQL state 28000 SQL Server Error 18456 Microsoft ODBC SQLServer Driver SQL Server Login failed for user. Can any one please let me know how can I configure DSN so that it should work irrespective of what domain account I use to logon to the server later Thanks in advance. Srini. Hi Srini It sounds like only the first windows account (User ...Show All

  • Smart Device Development DataGridView and PocketPC Application

    Is there a way to add a datagridview control to a PocketPC 2003 application with .net compact 2.0.  Only the Datagrid control shows in the toolbox selection.  The datagridview control info says that it is supported in 2.0 compact framework. This is a bug in the documentation. Windows Mobile 2003 for Pocket PC, Windows CE, Windows Mobile 2003 for Smartphone should not be listed as one of the platforms for the DataGridView control. David ...Show All

  • Windows Forms OpenFileDialog Working directory?

    In my VB2005 programs, I like to have an "Last Used Folder" setting so the next time the program is used, the OpenFileDialog boxes will show the last folder used. I can do everything but figure out how to get the Folder Path out of the OpenFileDialog once the user has selected a file. I have pulled it out of the "Filename" member in which I would have to write code to manually remove the filename from the string. Is there an easier way to do this     One way to do it is to have a single OpenFileDialog object during all your application's lifetime (make it a field in your MainForm c ...Show All

  • Visual Studio Team System mstest with custom test type and metadata(vsmdi) file?

    I'm trying to use mstest.exe to run a test from the commandline. The test was created as a custom test type that I have created via the extensibility SDK. I've done a lot of investigation and here's the results: 1) inside VS I can run the custom test fine. 2) I can run the custom test fine using the /testcontainer: option of mstest.exe. 3) I can run a generic test using the same vsmdi file with mstest.exe. 4) trying to run the custom test type with the vsmdi fails with an "Test <foo> cannot be found" error. I ran scenarios 3 and 4 (only difference being generic test vs. my custom test) under cordbg. Here's t ...Show All

  • Visual Studio How to make a relation between interfaces and classes

    How to make a relation between interfaces and classes. And How to make a relation between interfaces and abstract classes. In class diagram. To show the base class relationship, right click on the class that implements the abastract class and select "Show Base Class". You can't show a relationship between a class and an interface with a line but you can show the interfaces implemented off of a class. Classes show this by default. Let me know if you have problems getting this to show up. ...Show All

  • Visual C# How do you REMOVE or DELETE Items from Recent Projects list in VS2005 RC?

    I have been testing  VS2005 RC and as a result, I have built many applications. Most I am no longer interested in or use and would like to DELETE them from the RECENT Projects list, but I dont see how ! I have been achieving this by manualy deleting the project from IIS, but there's got to be a better way ! Any ideas cheers, yousaid Really, you shouldn't need to, but there is a way. If you continue to use Visual Studio with different projects, only the most recent few projects are shown.  So, those that you no longer use will "age off" the list, and be replaced by those that you do use. If you don' ...Show All

  • Windows Forms Where do you enter your code for your creature

    Where do you enter your code for your creature and when it says press the "introduce animal" to Introduce your animal... but I cant find the introduce animal button>< ...Show All

  • Windows Forms DataGridView issue

    Hi folks. I need help, how to work with data via DataGridView in VB 2005. In VB 6.0 I used a Data and DBGrid component, where DBGrid was bound to Data control and Data control was bound to database (ODBC or Access). When I edit, add or delete data in DBGrid, it was automatically saved to the database. Also when I bound e.g. TextBox to Data control, changes in TextBox were automaticaly updated in database. In VB2005 I created a dataset, bound to access database (.mdb). I added a DataGridView control to a form and bound it to Table1DataBindingSource. When I run this application, all the data from database.mdb - Table1 are showed in Da ...Show All

©2008 Software Development Network