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

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

Sebcio

Member List

Don Laverdure
ostrich
Ji Zhang
Egon Rosa Pereira
Lenitcha
JayTaplin
Shawn Murphy
meghanath
Gokuldas
southwynd
Mathias Verboven
Daniel UJ
ghawkesford
Notes
ajp141051
fredz28
Pablo Roca
RPalmer
Sidhartha
renz_wales
Only Title

Sebcio's Q&A profile

  • Visual Studio Team System Unit Testing VS Team Foundation Extensions?

    Hi ! 1) Are there any Mock objects that can be used to unit test for example a Work Item or do I have to write my unit tests against a VSTF instance 2) Is there any recomendations for development environments when developing for VSTS Is the best way to keep an instance at Virtual PC/Server and restore the state between the tests regards // Johan Hi Martin ! Thank you for sharing your experience, it really gave me some value. I wonder how the VSTF development team are doing their unit testing. / Johan ...Show All

  • Windows Forms Height of DataGrid row

    I have problem with height of DataGrid row. I need set height of row individualy by values on concrete row. But I don't know how.  I have class derived from DataGridColumnStyle class, but DataGrid calls only GetMinimumHeight function with no arguments and I don't know how I can get current row. DataGrid calls this function for every row (if dataTable has&nb ...Show All

  • SQL Server Cannot Register with External Access

    I've done a lot of digging, and I can't find the solution to this one.  I followed Vineet's instructions to get an assembly registered that can call out to Web services; however, when I try to register, I get the following error: CREATE ASSEMBLY for assembly '' failed because assembly '' is not authorized for PERMISSION_SET = EXTERNAL_ACCESS.   The assembly is authorized when either of the following is true: the database owner (DBO) has EXTERNAL ACCESS ASSEMBLY permission and the database has the TRUSTWORTHY database property on; or the assembly is signed with a certificate or an asymmetric key that has a corresponding login with ...Show All

  • SQL Server Calling Visual Foxpro 7 COM

    Dear Experts, We are creating instances of COM Objects written in Visual FoxPro 7 in our SQL Server 2005 stored procedures. The problem is that VFP Automation Manager which shows number of connections to number of objects is showing 3 connections to 3 objects(instead 1 to 1). We are releasing the object in SQL Server 2005 using the sp_OADestroy @Object but the Automation Manager leaves 1 connection to 1 object. The Automation manager connection doesn't release all the connections. What effects is this having to our SQL Server 2005 installation and how can we avoid it We noticed that when we stop the SQL Service, connections t ...Show All

  • Visual Studio Changing Matrix subtotal aggregation

    Hi, I have the following problem, I have a matrix and i want to do a subtotal that is a sum of every column and the other total, to not appear or be the average of the values. Matrix 01/01/2005 02/01/2005 Total Qty % Qty % Sum(Qty) Sum(Qty)/ Sum(ShopTotal) Shop 1 2 12,5 4 20 6 6/36 Shop 2 8 50 6 30 14 14/36 Shop 3 2 12,5 6 30 8 8 /36 Shop 4 4 25 4 20 8 8/36 Shop total 16 100 20 100 36 100 Is it pos ...Show All

  • Visual C# C# Generics

    Dear All,  I have used C# 2.0 generics to build a class. the thing is that when i investigate the code using IlDasm, i could find the box with T parameters mentioned statements out there. but the main advantage is that boxing will not happen when using generics. can anyone justify this or suggest me whts wrong . regards, sundararajan.s Also, if you want to do mathematical addition, have a look at this codeproject article . ...Show All

  • Visual Studio Team System Help! Documents and Reports are disabled

    Hi, I've finally successfully installed TFSB3R, and have created new team project successfully. I'm trying another scenario where I need to access the TFS through Internet. The connection to TFS via IP address succeed, so everything is working properly -- the webservice, reporting and so on. The team project can also been retrieved, as well as work items -- nice. However, I have not been able to get the "Documents" and "Reports" to be enabled. I have assigned all priveleges and roles to the username I used to logon. Anyone has ideas why the Documents and Reports node in Team Explorer keep disabled How to enable i ...Show All

  • Windows Forms Can't leave a bound combobox after deleting its content

    I have a combobox (dropdown) that contains something that was loaded from a database. The selectedvalue of the combobox is bound to a typed dataset. The database's column that is displayed by the combobox allows null values. If I select the combobox text and delete it I'm not able to leave the control anymore. I have to enter anything. I experienced the same behaviour with a textbox that is bound to a money column using a format type in the databinding collection. If I delete its content I'm not able to leave it anymore. I would prefer a behaviour like automatically setting it to 0. I think this would be quite easy by using the "o ...Show All

  • Visual Studio Express Editions How do I cause a desktop icon to be placed during installation of my application?

    When my application is installed on the user's computer, I want an icon to always automatically be placed on his desktop. ClickOnce did not offer this. How can I do it (Visual Basic 2005 Express) http://support.microsoft.com/default.aspx scid=kb;en-us;837220 How to add a shortcut file to a Setup project in Visual Studio 2005 or in Visual Studio .NET ...Show All

  • Visual Studio Team System Need information on ImplementIDisposableCorrectly

    David, Thanks for the sample you provided. Also need some documentation for the rule " ImplementIDisposableCorrectly " with an example. By the way what is the difference between "Breaking" and "Non-Breaking" in the fix category. Thanks in advance. -Rajesh. Unfortunately, I can't find any documentation on this rule so I will file a documentation bug on this and hopefully we can get this fixed for the next release. In the mean time, I try and explain what this rule is asking you to do. An object needs to implement the IDisposable interface if it does either one of ...Show All

  • Visual C# How to determine if Object A is the same object as Object B

    Hello, Take the following method (C#).. void MyMethod( object a, object b) {     //Some code here... }   ...and call it with the following code... MyClass x = new MyClass(); MyClass y = x; MyMethod(x, y);   What's the best method within MyMethod() to determine if both parameters are one and the same object Should I be using object.ReferenceEquals() or just plain if (x == y) Thanks in advance for your help. Ben Yes. The CheckBox class doesn't overload operator== anyway so you'll be fine with your example code. By the way, even if a class did overload operator== yo ...Show All

  • Visual Studio Team System Load test that is not a web app

    I remember hearing that I should be able to create a load test that is not a web based application.  Our application is a sockets based server.  It looks like I should be able to create a test application and select it as a load test.  Is there any documentation or a walk-through/sample of this any where i was trying to do exactly that - but on the test mix page my list of tests is always empty saying "click add to add another test". but when i click the "add" button the wizard gets closed and i can add another test to the project (what i don't want to do because i already have the desir ...Show All

  • Visual C# Custom user interface

    I enabled custom user interface  in Windows' Group Policy Editor and select interface file name a C#.NET 2005 application. I have problem - the application doesn't get focus because some other program starts (something related with GDI+). How to assure that my application gets focus I didn't have such problem with C#.NET 2003 application... Regards, Matja ...Show All

  • SQL Server 2 node Active Active SQL Cluster

    I want to host 2 seperate SQL databases and wanted to know if it would be possible to run this in an active active cluster config which each database running on a different server. The clustering would be there in the event of failure of one of the servers but for normal operation the two sql instances would be completely seperate. Is this configuration possible and would this give the best performance and resiliance from a 2 server setup. What do you think Yes there is nothing wrong with that idea, we run an active/active cluster, with the oltp database on one instance and the ods instance ...Show All

  • Visual Studio Team System Daily Builds?

    This may be obvious to you but it has baffled us for some time: Team Foundation users often talk about daily builds. When I presented this idea to our software team they asked "Why" Our code doesn't change enough to warrant a daily build, they said. Maybe a weekly or monthly build they said.  What  don't we undertsand here   Bill If you do daily builds you know every day that your current code can be build and basic functionality is not broken (assuming you run build verification or smoke tests, too). Even if you change the code not very often, you're still be able to detect a break ...Show All

©2008 Software Development Network