Labrego's Q&A profile
Visual Studio Team System Stopping a Team Build
Hi, is it possible to stop a build that was started using Team Server Build Our build at the moments takes about 30 minutes and when I see it failing on the first solution / project I want to stop it then. Hope someone can help me. Graham You can stop a Team Build in progress using command line. There is no way of doing this using the user interface. Run the following command from the VS command line TfsBuild stop <TeamFoundationServer> <TeamProject> <BuildNumber> [/noprompt] ...Show All
.NET Development Asynchronous web service to implement web service notification
I am trying to build a implict notification for webservice. The Scenario is i have a application with 15 web servies. with 4 belonging to news channel, 4 belonging to entertainement , 4 belonging to education and others.. I have one client.. which will make the intial selection of web service, when the call is made to 1 st web service, the first web service will call 5- 10 other web services.. Here is my algorithmm <webmethod> Function notifyotherws(some params) { do some logic. logic to find which web services need to be notified by this web service. webservicesneedtobenotified( ws2, ws4, ws,6, ws8 ) for all web services in webservic ...Show All
Visual Studio 2008 (Pre-release) What happened to the ADO.NET 3.0 May CTP?
It was announced here http://bloggingabout.net/blogs/erwyn/archive/2006/05/11/12167.aspx and then within a few days was so completely removed from MSDN ...it was like it never existed. Why was all of the documentation for ADO.NET 3.0 removed from MSDN (...in fact, it's odd that this HTML forum continues to exist) Vidya, are you saying the LINQ will be one of the features in ADO.NET 3.0 Has anyone heard when ADO.NET 3.0 will re-appear ...I had hoped that MS would use TechEd to re-release ADO.NET 3.0 Michael. ...Show All
Visual C# Adding a .cs file to vs.net solution and Inserting code into it
hi , iv created a application to have a custom menu item "MyAddin" in the tools menu in the vs.net ide.....when any new .net project is opened "MyAddin" will be available on the click of which a windows form with a simple text box and OK button gets launched...... Now my requirement is that when text is entered into the text box and when the OK button is clicked a .cs file has to get added to the solution of the project that i have currently opened with the text from the text box inserted into the .cs file newly getting added.... can anyone help me out with it..... Thanks and regards... Pavithra... ...Show All
Visual C++ Transfer CString between classes
Hi, I have a MDI application and from the menu I can open a dialog with a edit control and a OK button. When I push the OK button the text in the edit control shall be stored in a variable in my CDocument class. But when the dialog has been closed, the variable that should store the CString is empty. What have I do wrong In the dialog class I have this code: void CMyDlg::OnBnClickedOk() { CString EditCtrlText; m_EditCtrl.GetWindowTextA(EditCtrlText); CMyDoc m_CallFunc; m_CallFunc.StoreCS ...Show All
Visual Studio Express Editions I Need Some Input
I built a few sites a couple of years ago with a simple HTML program that I no longer have so I am looking for a good simple editor. But the more I read about Visual Studio 2005 I get the feeling I may be getting in over my head....am I If I am, can someone give me the name of a good simple program to use. I want to be able to intergrate a database to collect email addresses, later a shopping cart etc. If this is an easy to learn program do I need other programs to accompany it like SQL Server Express....or other programs (tell me what I will need). Any and all help and suggestions will be greatly appreciated. I may be ...Show All
Visual Studio Express Editions I don't want duplicate records
Hello to everybody!!! I'm newbie programming in vb.net. I’m actually programming an aplication that use a small database in SQL Server Express. When I load a form that contains a DataGridView I show the contents of a table as follows: Private Sub frmModificaDatosConsumidor_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load SqlDataAdapter1.SelectCommand.CommandText = "SELECT RFC, Nombre, Direccion, Colonia, CodPostal, Telefono, Ciudad FROM tblDatosConsumidor" SqlConnection1.Open() SqlDataAdapter1.Fill(DataSet1, "Consumidor" ) SqlConnection1.Close() DataGridView1.DataSo ...Show All
Visual C# The System.Windows.Forms.Form Invokemethod
HI, I want to understand something about the invoke method... I have this code for an example: void my_func( string msg) { this .msg = msg; this .Invoke( new MethodInvoker (UpdateUI)); MessageBox .Show( "bla bla bla" ); } What the invoke method do I know that it runs the function UpdateUI in the winform thread... I want to know if the messageBox will appear after the my UpdateUI function or i can't enssure that The invoke method is synchronous so the MessageBox should appear after UpdateUI ...Show All
Smart Device Development Store wav into sql mobile using c#
Hi, I am developing an application, where i would like to store wave file into sql mobile database using c#2.0. Anybody has the idea, how to do this You could use 'image' data type to store any binary data regardless of it's nature. You would need to load file (does not matter what’s inside) into byte array (e.g. via FileStream class) and pass this byte array to SQL CE. On select you would get it back. ...Show All
Visual Studio Team System After adding a new work item / task - project_checklist.xls is not updated with new row
It does however correctly update an existing task when I simply change the Dicipline. - The newly added task is still not in the spreadsheet. Something is obviously broken. The new task does show up in the Work Items REPORT. Using VS05 RC and TFS Beta 3 Never mind - I found it: In the details the EXIT CRITERIA must be set to Yes or the Project Checklist Query (which is the source for the .xls) does not include the new item. Its a bit elusive because the filter is buried in the Project Checklist query. ...Show All
Software Development for Windows Vista Switch recognizer languages in InkPicture control in EXCEL?
I made a Excel 2003 spreadsheet that contains a InkPicture control. I would like it to be able to switch the language so it can recognize Chinese or Japanese handwriting. The code below does only seem to work for English, when using "DEFAULT" as the factoid. I had no luck getting the VB6 examples from the tablet SDK to work in Excel's VBA. From the SDK examples it seems C# is a better language for tablet development, but is it possible to create a CONTROL in C#-Express and then use it in Excel, ActiveX style I read .NET doesn't really support this anymore. What's the way to go for what I'm trying to do ----------- ...Show All
SQL Server 2005 64 bit : Client Tools for 32 bit.
We installed 64 bit version of sql server. Now we need to install the client side 'SQL Server Management Studio' on 32 bit box. The 64 bit software does not support for the installation on 32 bit box ... what is the work around for this Thanks KM All client tools in SQL 2005 can be installed on a 64bit system also however (which is different from SQL 2000, where the client tools were not 64bit compatible), so you can install the 64bit client tools on your 64bit machines. As Jeffrey mentioned above however, you do need the 32bit tools to install on your 32bit machines, which you can get from any of the 32bit edition cd's/bui ...Show All
.NET Development At least one element in the source array could not be cast down to the destination array type
Hello, I am trying to pass someparameters to my reporting services web service. This report has 2 dropdown and one checkbox , I am trying to convert an arraylist to parametervalue[] This is teh code- ArrayList al = new ArrayList (); al.Add(DropDownList1.SelectedValue.ToString()); al.Add(DropDownList2.SelectedValue.ToString()); for ( int i = 0; i < CheckBoxList1.Items.Count; i++) { if (CheckBoxList1.Items .Selected) { selectected.Append(CheckBoxList1.Items .Value); selectected.Append( "," ); al.Add(CheckBoxList1.Items .Value.ToString()); TiposCompetenciasSeleccionadas++; } ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Getting Started Is Hard
[rant] Ok I know I want to learn DirectX and be able to write my own DirectX wrapper in a high level, like Plotting a point would be as simple as calling: ClassName2d.PlotPoint(var,var,var); Then use that to write a 3d game engine including physics, sound, input, networking, graphics etc. Then use the engines to start making games. Now I know that this will take a ton of time to be able to do this, especially for one programmer. Even if my goals are really out there, and probably un attainable for 1 person, I am still finding it VERY hard to get started. I already have experience with making games in "Darkbasic" and using the "DarkGameS ...Show All
Visual Studio Express Editions ClickOnce Problems
I have a small windows test application that I'm attempting to deploy. I can deploy it to my hard drive, transfer it to a memory stick, and successfully install it on another computer. I can deploy it to a website, when the website opens and I click on Run or Install (depending on the type of deployment) a new webpage, myTestApp.application, is displayed. The page is an XML file. That is as far as the deployment goes! There are no error messages and no clues to help me solve this problem. Your suggestions would be greatly appreciated. Hi Grandpa - you skilled user...you. Could you have glossed over the problem I keep reading it a ...Show All
