assafg6's Q&A profile
Visual Studio Team System How do I install Team Explorer?
I've successfully installed VS 2005 Suite (Trial) and SQL Server 2005 standard edition, tried it both on Win 2000 SP4 and Win XP. Then I'm trying to install Team Explorer, an error dialog is displayed: """ Thank you for participating in the Beta program. You must uninstall all pre release products in a specific order before you can continue with the setup. .... these pre-installed products include, but are not limitied to the following: - MS SQL Server 2005 Express - MS SQL Server 2005 Tools Express Edition - ... - MS VS 2005 2005 Team Suite - ENU - ... """ So, before I installed VS 2005 i ran the unistall program to remove my prev ...Show All
.NET Development How to get the left digit value?
Hi Is there any function is available in Managed C++ to get the left side value of Integer value for example, that function should return the interger value like this... leftvalue(19,1) = 1 leftvalue(25,1) = 2 Assume leftvalue() is proposed function. Thanks in advance Jose Hi, If my memory serves me right, then InStr() - gets the location of a specified character(s), Mid() gets a substring. If thats the case then: String^ test = "Microsoft"; // INSTR() int idx = test.IndexOf('o'); //Mid String^ str = test.substring(1, 5); cheers, Paul June A. Domag ...Show All
Windows Forms keyup on datagrid
Can anyone tell me why the keyup event will not work on datagrid code as follows: Private Sub grdItin_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles grdItin.KeyUp Dim row As Integer = Me.grdItin.CurrentRowIndex If e.KeyCode = Keys.F3 Then Me.grdItin.Select(row)   ...Show All
Visual FoxPro shall I purchase Visual Fox Pro 9 ?
Hi there. I have considerable background in Visual dBase Plus which is an OO language with considerable means to create forms, tables and some windows applications but it is hard to do any networking. Thus I am trying to migrate to C#. I do have a Visual Studio .NET 2003 Pro and downloaded Visual C# 2005 Express Edition Beta 2. I have created some forms and added some functionality. Now I need to create tables and I need a table designer which I found to be a part of SQL server. It appears I have downloaded SQL Server but it is not working for some reason and I have to find out why. My question is: shall I just purchase a FoxPro 9 ...Show All
Visual Basic Control the size of a webform
This is a real beginners question I would like myForm.aspx to open maximized when it loads Also if you can do that then how do you resize the form I thought it should be something like me.size=new size(1092,768) or something but I can find no such property or attribute called size for a webform. Seems like this should be an easy thing to do. Win Form is what something like: Forms.myForm.windowstate=maximized or something like it... So all that being asked what I'm really looking for is the equivalent line of code to cause this same behaivor using a WebForm Thanks for your help, Rick This really isn't a VB.Net question, per say ...Show All
.NET Development how to read a certain line of textfile??
Hi, Is there any way in c# of specifying which line number of a textfile I want to read Thanks, ...Show All
SQL Server Package variables in case of an Exception
Hi there, I may be blind, but I'm sure that I have seen a post about package variables 'ExceptionMessage' and 'ExceptionCode' or somehow which are only available when an Exception occurs. I cannot find it anywhere :( If there isn't any then the question is: Can I read out the message and the code of an occurring Exception e.g. from a Script Component/ Custom Task which is controlled by an error constraint Can someone help Fridtjof Fridtjof, The best way to do this is place a TRY...CATCH block in your script component. In the catch block you can raise an OnError event containing the error message. Loo ...Show All
SQL Server SSIS Package Validation
Whenever I open a saved SSIS package, validation takes over and it can take a long time to do that. Is there a way to disable the validation process when opening the SSIS package Thanks. It will not work because I can only select Work Offline AFTER I load the package. I want to load the package quickly rather than waiting for several minutes of validation. ...Show All
Visual J# sql -> dataview and back again
How do I update a sql database with changes and additions added in the dataview The dataview is bound to a data connection/adapter. That one has properties for SELECT, UPDATE etc. statements. If you use the designer there are property editors for those properties (press the "..." button that shows next to such properties when you click on their value). Not the best prop editors, but usually do the job. ...Show All
.NET Development Autoincrement problem with dataset
Hi I am trying to add a new column to dataset and trying to display field values in my own formated table. (not in a datagrid or datatable) i am using dataset to print values selected by sql statement in my format. As in my Table there are no unique or autoID column available. when i display data in table it works fine but now i want to print particular row of that table and i added print function to row column. Problem started here: i dont have any id column to fetch that row straight in to print view page and print. For this reason i want to add a Autoincrement new column to my dataset and use it when user will clic ...Show All
Smart Device Development Debugging issue
Hello, i am attempting to debug my app by deploying to the device itself. This is using .netcf 2.0 and the device is a WM2005 device My app installs a keyboard hook and does some processing in the hook procedure depending on what key is pressed. The problem is, it seems that once a key is pressed, the hookproc is called over and over, as though i am continuing to press on that key (even though i am not). This only happens when i attempt to debug by deploying to the device itself. if i simply run the app from the device, it works fine. any ideas on what is causing this it makes debugging impossible curr ...Show All
Visual Studio Team System Expressing a relationship between work items
I would like to connect a scenario with tasks that are needed to implement it. Say, I have one WI of type scenario and two WI - tasks that should be finished in order to support the scenario. All three WI can be inserted in the visual studio and in MS Project the tasks can be set as sub items of the scenario. Unfortunately, the relationship between the tasks and the scenario doesn't get propagated back to the WI database. It is only visible inside the MS project file. Seting a link between the scenario WI and the two task WIs creates a relationship, but doesn't have any consequences in MS Project or Excel. What I was hoping for, is ...Show All
Visual Studio 2008 (Pre-release) Versioning Problems with Extension Methods (and a Solution)
I believe there are potentially serious versioning problems with Extension Methods. I've posted an example here , of how a seemingly harmless update to the .NET framework, from Microsoft, could break your code. I've also posted a suggested solution here . I'd love to hear your thoughts and comments. John Rusk I have a thread going on extension properties, and a blog entry outlining a reason why you might want to have a static class containing extension methods that extend two separate classes. static class SupplierPartsRelationship { public static ICollection<Part> Parts(this Supplier supplier) { ... } public stat ...Show All
Windows Forms DataGridViewColumn
How I can change DataGridViewColumn type programmatically Thanks in advance! You can't. The best thing you can do is to create a new column and copy over all the common properties to the new column. Why do you want to do this -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All
Visual Studio Team System Extraction rule: How to use ContextParameterName from ExtractText function?
A question surrounding the extraction rule functionality in VS Web Test. On a results webpage (after doing a search) I need to "wait" until the word "DONE" appears in the results pane. The way I'm planning to do this is by using the ExtractText standard function (unless anyone has a better idea). This extracts a substring from the html appearing in between certain html tags (either the string "PROCESSING" or "DONE"). If the text is equal to "PROCESSING" I want to refresh the page. If the text is equal to "DONE" I want to carry on executing the rest of the code.The only problem is that this text doesn't appear to be available for u ...Show All
