_John Reynolds_'s Q&A profile
Visual Studio Team System user load displaying wrongly
Hi, I am testing one win form application. I have written unit test and i am calling this unit test in my load test to test the web services. 1. I have mentioned as user load as 4 users. while running the test it is taking as 40 users instead of 4. In user load row Range is displaying as 10 and MIN,MAX,AVG,LAST are showing as 4 only but while running the test in graph it is showing as 40. how to correct this err ...Show All
SQL Server How to View a Scheduled Job?
Silly question from a Beginner! I have created two jobs in enterprise manager using Tools - Job Scheduling. The jobs are working at the scheduled times, however I want to view one of them in order to check I haven't missed anything. How do I do this Hi there, In Enterprise Manager expand the nodes on the left hand side of the screen like this: Console Root > Microsoft SQL Servers > SQL Server Groups (May be diff ...Show All
Visual Studio Team System What changes in the RC
Hi, I was just wondering if someone could do a quick summary of the changed/improved/altered testing features in the Sep 14 RC. I have previously been using Beta 2, but even a general description of what is different would be appreciated. Thanks in advance Thanks guys - That should make convincing the boss to move to the RC a cinch! Much obliged. ...Show All
Windows Forms Adding Fields
As a relative newcomer to the world of .Net I am looking at the TaskVision source. I am keen to understand how to add further fields easily to the project Any ideas or top tips. Many thanks I checked the DatasetTasks.vb anf ...Show All
Visual C# Why it is?
Why Microsoft called # in CSharp rather CHash Regard, Shaji Kumar.V.K From http://msdn.microsoft.com/vcsharp/productinfo/faq/default.aspx : It's not the "hash" (or pound) symbol as most people believe. It's actually supposed to be the musical sharp symbol. However, because the sharp symbol is not present on the standard keyboard, it's easier to type the hash ("#") symbol. The name of the language is, of course, pronounced "se ...Show All
Windows Forms WM_PAINT, TabControl and Overflow Arrows
I went ahead and created a completely owner-drawn tab control, and everything works just dandy, except when I have too many tabs and the default ugly left-right arrows pop-up. They work just fine and the control paints properly, but how can I give them my own look Preferably without having to delve any deeper into Win32... You'll have to delve into Win32 API for this. You'll find a C# example of a fully owner ...Show All
Visual Studio 2008 (Pre-release) MSMQ error opening queue
Hello. I'm trying to use msmq to establish communication between and indigo client and an indigo server. I've set the endpoint like this on the server: <endpoint address="net.msmq://localhost/private$/indigotests" bi ...Show All
SQL Server Access DB2 on AS/400 using IBM OLE DB Provider
Hi, I am using the IBM OLE DB Provider (IBMDASQL) provided with Client Access (IBM) to access a DB2 database on an AS/400 (iSeries). Using an OLE DB Source in the data flow and Access Mode set to "OpenRowset" this works fine (even though I think it is quite slow). However, when I change the Access Mode to "SQL Command" my data flow fails at the OLE DB Source component - not giving me any meaningful error description (only the mysterious "... th ...Show All
Windows Forms Binding a Combo and adding an empty item...
I know there are many ways to fill a combo box (in DDList format). What I'm trying to do, is add the info, with a "-- Select Item --" at the top of the box and in the text section. So, I could add the info using&n ...Show All
Smart Device Development Target Machine Link Error
I have used the upgrade wizard to migrate my EVC 4 project to VS 2005. I have managed to get most of my projects to build but I have a couple that give me the following link error. mfc80u.lib(MFC80U.DLL) : fatal error LNK1112: module machine type 'THUMB' conflicts with target machine type 'ARM' The configuration was originally targeting ARMV4. The "Target Machine" Linker option is set to "MachineARM (/MACHINE:ARM)". And I cannot ...Show All
.NET Development Help With Vb.net 2005 MS Access UPDATE command
I am making a program for my company. I am using a MS Access Database. The Table has 236 field, which i have just found out that the 'UPDATE' command only does 127 field. So can you make a query that only does so many of the table field and then another to do others in the table. I have tried but i get this error {"No value given for one or more required parameters."} Here is my code for the update. HcPhase2CompleteTableAd ...Show All
.NET Development SQL Question
Is it possible to do this with an SQL statement My table contains name,address,phone,email I want to return all rows where email exists in table more than once, i.e. i'm checking for duplicated email addresses Thanks SELECT name,address,phone,email , COUNT(*) FROM MyTable GROUP BY email HAVING COUNT(*) > 1 ...Show All
.NET Development DataGridViewRow.DataBoundItem Throws Exception
Hi, I'm using a DataGridView that is bound to business objects. I have a DataGridView RowValidating event handler that accesses the business object like this: DataGridView GridView = sender as DataGridView; DataGridViewRow Row = GridView.Rows[e.RowIndex]; MyClass Data = Row.DataBoundItem as MyClass; When I close the application/form, the DataBoundItem property is throwing an IndexOutOfRa ...Show All
SQL Server Variable Data Type Help
Hi all, I am trying to extract certain data from MySQL (example sql statement is SELECT COLUMN1, COUNT(COLUMN2) FROM TABLE GROUP BY COLUMN1) and stored COLUMN1 and COUNT(COLUMN2) values into variables and then copy the values from the variables and insert them into a new table in sql server 2005 and has two columns in it (COLUMN1 of type nvarchar and COLUMN2 of type int). I can map the first output (COLUMN1) correctly to variable type ...Show All
Visual C++ CBitmap - Simple example
Hi, I am trying to load some images in a Picture Area. I only have the pointers to the images, and this pointers are of the type unsigned long* (I can also convert it to IplImage* to use with OpenCV). This unsigned long* get the images grabbed from an camera and I would like to display these images in this Picture Area (it is real time, I get the images from my camera and display them). I have tryied to use this (HBITMAP)LoadImage function, but ...Show All
