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

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

JMattias

Member List

D.D.R.
R.A
Peter Brotzer
xuzhong
MichaelGaertner
Igor L
cburke
sanske
onlyconnect
Shubhendu Ganguly
Andrew Choi
rich2000
bombdrop
Fabio Fernandes
Envitro
Bill J
FrankMucerary
adrian44
Francis
TJ Han
Only Title

JMattias's Q&A profile

  • Visual Studio Team System How to add other information (e.g., test configurations) in test results reporting/publishing?

    Hi, I am using VSTS for testing. However, the test results generated and published are only composed of the test cases I run, the result, and the comments. I have not found a way to incorporate configuration information (e.g., the hardware environment, the software environment) during test results reporting/publishing. How can I add those customized information into some proper area of test results Thanks in advance. Cong Li Right now, other than slicing by the build you publish to, no. It is possible by using different build flavors e.g. a "flavor" that represents each of your ...Show All

  • Visual C# Generics C# Matrix

    I was about to design a Generics C# Matrix in this way: public class Matrix < T > {        List < List < T >> _data;        .... } Many issues made desirable in this case, constraint the type T to be a numeric base type. Let's say, int, long, byte, float, double... But I really couldn't find the legal way to add such a constraint. The question is precisely that: How do I constrain the generic type to a numeric base type This is just an admirable and elegant solution. Is very clean and recursive. I wish I could imagine it before! ...Show All

  • Windows Forms How to insert an empty row in datagrid which bind to datatable

    Hi,    I am looking for help about inserting an emtpy row between rows, not to the last row, to allow user enter data in datagrid.    Thanks, Following code to some extent solve my problem, but not the really good one. I hope there are some more better solutions.       Thanks,       I use Microsoft ...Show All

  • .NET Development ASP.Net Frameset reload

    I have two frames, each contains one .aspx file. When I click the button in the first frame, the second frame content need to be reloaded. -------------------- I use the codeing: Button1.Attributes.Add("onclick", "window.parent.frames('Main').location.href('MainFrame.aspx');") in the button click event of the first frame. --------------------- My problem is: - When I click the button in the first frame for the first time, it is not reloading the .aspx file in the second frame, but it reloading for the second click. Why it is Can anybody help me... Nelson. Place the line of code you mentioned in the Page_Load event instead o ...Show All

  • Visual C++ Running an .exe file compiled in VC++ 2005 on a different computer

    Hello, I've got a question regarding how to run a program compiled using VC++ 2005 on a different computer. Although I have seen the thread by suda5181 and the answer by RonaldLaeremans (http://forums.microsoft.com/msdn/ShowPost.aspx PostID=23371), I can't find the redistribution pack for the current Visual C++. I have found a page with the Redistribution pack for Visual C++ 6.0 (http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvc60/html/redistribvc6.asp) but I don't know if it'll work. With Thanks,                    Gal Beniamini. ...Show All

  • Visual Studio Express Editions casting to base class

    I'm new to C#. I am having problems with what I was hoping would be a simple concept. I have a class that is derived from the Form class. (Something like what follows:) class MyClass : Form { ... } I would like to pass a reference to the base Form of MyClass to a static method that will modify Form properties of MyClass. (something similar to what follows:) class Utility{ public static Method(Form f, ... ); } What is the ideal way to do this I tried casting the this pointer of MyClass to Form with the following: "Utility.Method((Form)this);" but that gives compiler errors. Thx for the help! Ah ...Show All

  • Software Development for Windows Vista Tablet PC recommendations

    Anyone have any recommendations on a good Tablet PC The best buy for the money Problems with vendors, models, etc -jeff I have Toshiba Tecra M4. It is great combination of laptop and tablet functionality. I chose this one because I write a lot - using keyboard, but on the way - on a train/airplan it is great to write things down. Is is two in one. Support: Well, I used pre-installed Windows XP until last month. I upgraded my RAM size to 1.5Gb, but I hadn't felt like it, so I made fresh install. It was better. There is no need to install all the programs from Toshiba. All programs (services, emulatio ...Show All

  • Visual C# Designer doesn't like Array InitializeComponent code

    Hey, Sorry for a possible dumb post, I dont post at all usually! I haven't coded for that long in c# so as i said this may be dumb quest. I get the feeling that the designer does not like arrayed components as i have done: Ctrl = new System.Windows.Forms. CheckBox [4]; for ( int i = 0; i < 4; i++) { this .Ctrl = new System.Windows.Forms. CheckBox (); } for ( int i = 0; i < 4; i++) { this .Ctrl .Location = new System.Drawing. Point (16, 24 + (i * 32)); this .Ctrl .Name = "Ctrl" + Convert .ToString(i); this .Ctrl .Size = new System.Drawing. Size (40, 16); this .Ctrl .TabIndex = i + 1; this .Ctrl .Text = Convert .ToString(i + ...Show All

  • Visual Basic combobox column in DataGrid

    Hey there, I've been searching everywhere for a good example of how I can add a combobox column to a Datagrid but without success. At the moment I have a DataGrid with 5 columns (3 from one database table, and 2 from another). I would like to remove the first 3 rows and place them into a combobox (multi-column combobox) this combobox must then be placed in the datagrid Does anyone have a good example please Have you tried using a Template Column In the property building dialog add a template column to your column list. Apply that change and then right click the grid and select "Edit Template". In ...Show All

  • Windows Forms color coding

    In the editor i would like it to be possible to change the color of varibles to aid my programing ...Show All

  • Visual Studio Connect to share via HTTP...Good - Connect to Database...Bad

    [Current Setup] Installed on remote Win2003 SP1. SourceSafe web service working. Virtual directories setup fine for this database. VSS Administrator server config'd for internet access. [Problem] I can verify I make a client connection to the share on the remote Win2003 by looking in Computer Management -> Shared Folders -> Shares. Problem is, I can't connect to the VSS Database for some reason. Here is the message I'm getting: "Visual SourceSafe Internet plug-in could not connect to the specified database. Secure communications using...blah..blah...need to create a SourceSafe user matching your network user name and all ...Show All

  • Windows Forms How to use events for DataGridViewComboBoxColumn ?

    Hi !  For the class DataGridViewComboBoxColumn  there is only the event Dispose for this class. How can I use the DropDown event or the SelectItemChange event or something like that Thanks in advance ! Best regards, Joao Araujo it's a pity that i don't know C#, how to call DataGridViewComboBoxComlumn_SelectedIndexChanged in VB.Net please help ...Show All

  • .NET Development No RowUpdating when working with the ADO.NET 2 factory ?

    The ADO.NET 2 way to create ADO.NET objects with the factory is neat and great. So, I decided to use CreateFactory, CreateConnection, DbConnection, DbDataAdapter, etc. instead of OleDbConnection, OleDbDataAdapter to achieve provider independance. Great ! But : there is no way to catch RowUpdating and RowUpdated events while using DbDataAdapter objects, though it's feasible using SqlDataAdapter and OleDbDataAdapter. Thanks to anyone having a solution to my problem. gerard leblanc gleblanc, you are right. RowUpdating(and RowUpdated) event is not available on DbDataAdapter. There ...Show All

  • SQL Server Passing Variables

    I am having a hard time passing variables from the control flow to the data flow process.  The project starts off with a Execute SQL Task.  This task does a select from the sysdatabases table in the master db which creates a list of databases that will be queried for info.  That is stored in a info is stored in a package variable (user::varDBName) that is used to enumerate a For Each Loop and everything is good till this point.   How can the variable be passed into a t-sql statement in the OLE DB Source   Or can the variable be assigned to another variable that holds the sql statement that will be accessed by t ...Show All

  • SQL Server MIRROR database questions

    Hello all. I was reading an article by Rich Heiges called Mirroring - A New Look at HA. It left me with 2 questions (A) Can I change the operating modes of the principal and mirror roles on the fly, or do I have to stop the MirROR process (B) It said that MIRROR supports 32-bit to 64-bit H/W interoperability -- but will it support interoperability between 32-bit and 64-bit instances of the database Thanks! For (A), you meant role-swithing (i.e. making mirror the principal and vice-versa). You can do manual fail over but this requires you to suspend mirroring. Active transactions are rolled back b ...Show All

©2008 Software Development Network