Software Development Network Logo
  • Windows Vista
  • SQL Server
  • VS Team System
  • SharePoint Products
  • Visual C++
  • Visual FoxPro
  • .NET Development
  • Windows Forms
  • Game Technologies
  • Microsoft ISV
  • Smart Devicet
  • IE Development
  • Visual Studio
  • Visual Basic
  • Audio and Video

Software Development Network >> VS Team System

VS Team System

New Question

get string from string
Requirements?
Code Coverage Analysis for SP Unit Tests?
Send and Receive a SMS/MMS by VB 2005
Stupid Developer News Doesn't Update
How do you create a string expertblob?
Connection to Database in Excel
Drawer
How to do cppunit tests and collect output in a .vcproj?
Hung merge possibly causing SQL error 2627

Top Answerers

TomJ72
davidw
Yinon
Skip123123
2162
ananta
gauls
KAAU
Suhaib
Amos Soma
Offizielle FAQ zu de.comp.lang.iso-
Only Title

Answer Questions

  • lipi Trouble with Button Column in DataGridView

    I actually have three problems related to a button column in my datagridview. 1. I created a column in a datagridview to contain a button in every cell. I cannot get the Text to show up on the button. Under Cell Style under the properties for that column, I've selected the color black for ForeColor and SelectionForeColor and as far as I know, everything else should be set for the text to appear in the button. What could I be missing to set 2. I also cannot get the button to work. I have the following code for the datagridview (it also includes code for my last question). The code in question is in red. Do I need to use different code to call the click method in order to open a form (Tracking_List_Entry_Form) and do other tasks ...Show All

  • gpugelni TFS App tier eventLog error TF53010 & TF53013 AddStoredQuery

    Hi Forum, we got this error in the EventLog of our TFS app-tier today: Apparently we are the only ones in the world (according to Google) that has problems with TFS & AddStoredQuery. Any suggestions other than reporting to connect.microsoft.com Tia., /Gert TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 10/20/2006 7:22:14 AM Machine: <MachineName> Application Domain: /LM/W3SVC/3/Root/WorkItemTracking-5-128057913939574318 Assembly: Microsoft.TeamFoundation.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7 ...Show All

  • Jade Skaggs TFS authentication issue after server is removed & added to domain

    Hello, Since today we can't connect anymore our TFS server. What happened is that our IT department removed by mistake this TFS server computer from our Active Directory domain. But after adding it again to the same domain, we still have an authentication issue. The behavior is the following: whenever we start TFS Explorer on any client computer, we are now prompted to enter a user name and password. This was not happening before (authentication was happening automatically). Entering any valid TFS users doesn't work and the prompt appears again. If we press the cancel button on this dialog box, then the following error message dialog appears: TFS31003: Your user account does not have permission to connect to the Team Foundation Se ...Show All

  • Rookboom URL?

    I have been asking about this a few times and gotten no answer to my question. I have a tabbed browser with no url textbox(for input). I want to however display the url of the current tab in a textbox or a label. So I can use for instince. If URL = "http://" then Webbrowser1.navigate("http://") EndIf Me.theTextBox.Text = tx.Url to navigate the browser automatically just give the browser navigation method the url to navigate to, wherever you are obtaining the url from theWebBrowser.Navigate( yourURL ) well right now I can say that this is bad - to have your own navigation system to login the user or redirect them since the website could change - meaning li ...Show All

  • EvgenyG full screen media player

    Is there a code to make windows media player go into full screen apart from right clicking on the player What i want to do is have a button that makes the player go into full screen is it possible I had the same problem, I couldn't find a direct way to block it. So I made a timer that checks if the player is full screen and if it is it sets the fullscreen parameter to false. And because the going into fullscreen is not instant it will not look as it is going into fullscreen at any time. I hope you can work with this, Kasper I dont think so - check out the documentation ;-) I couldnt find any event about this, there maybe one but I couldnt see anything that would tell you when the screen ...Show All

  • kaizen Visual C++ 2005 Express Edition with the Microsoft Platform SDK

    I had the Visual C++ 2005 Express Edition for a while and decided to install the SDK following this guide. http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ Now Visual C++ 2005 fails to start Edit: I reinstalled VisualC++ 2005 and it starts now but what does this mean from that link Step 3: Update the Visual C++ directories in the Projects and Solutions section in the Options dialog box. Add the paths to the appropriate subsection: Executable files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Bin Include files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include Library files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\L ...Show All

  • kymaita GetItems for folders not sorted?

    I noticed some wierd behaviour in the GetItems method. I used ItemType.Folders and RecursionLevel.Full. What I wanted to do was get a list of folders under a given root. I wanted to use this to create a windows app with a treeview which mimiced the TFS Source Control Explorer. But the list of folders returned is not sorted. It was trivial to export the folder names to an array and then sort it, but this seems like a bug The GetItems method sorts the items by default, unless you pass in GetItemOptions.Unsorted. Are you using the overload below public ItemSet [] GetItems( ItemSpec [] itemSpecs, VersionSpec version, DeletedState deletedState, ItemType itemType, GetItemsOptions options) Thanks Please direct this ...Show All

  • Eric Patchen rounding

    I am using this code, Randomize() lblDsuit1.Text = CStr ((10 - 1 + 1) * Rnd() + 1) The numbers it generates are all decimal numbers, how can I make it round each number off If say you get like 9.4657 the number it should be is just 9. Could I get you to rewrite this Randomize() lblDsuit1.Text = CStr ((10 - 1 + 1) * Rnd() + 1) so it will round the number. you can use Math.Round( decimalValue, decimalPlaces ) or the initial overload Math.Round( decimalValue ) to round the number off - is this what you maybe after http://msdn2.microsoft.com/en-us/library/zy06z30k.aspx http://msdn2.microsoft.com/en-us/library/3s2d3xkk.asp ...Show All

  • Tom Rixom How do I highlight only the numbers...

    Hey… I have TextBox1 formatted like this: TextBox1.Text = Format( Double .Parse(TextBox1.Text), "$ ###0.00" ) How do I highlight only the numbers in TextBox1 when the control gets the focus Best Regards Cathrine Hello MyLady, You need to take a look at the IsNumeric method an depending on what your goals are it maybe easier to only allow numberic values in the textbox....other wise you may have to getinto custom drawing the textbox you can use regex however it is expensive, just to do this. as suggested, you are best to probably go through each char in the string, check if it is numeric (Char.IsNumeric( someChar )) then if it ...Show All

  • vbjunkie Why am I getting "End of statement expected"?

    Hello, Why am I getting "End of statement expected" Thanks for the help. Ken Private Sub txtReadRegValue_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtReadRegValue.TextChanged if txtreadregvalue.Text not txtreadregvalue.Text then cmdOpenPort.PerformClick() End If End Sub Try This. Private Sub cmdReadRegister_Click( ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles cmdReadRegister.Click cmdOpenPort.PerformClick() Dim Response, message, msgg As String Dim command_type, addres As Short Dim registerr As Single ...Show All

  • ranadheer mac Can't see new work items in Project Portal

    Does anyone know why I can't see new work items in reports at Porject Portal. I am using CMMI Process platform. I have added few work items using excel and I can see them from visual studio but I can't see them with any query from project portal reporting for example Work Items report doesn't give any work items Thanks in advance Thanks. Running the web service again solved my problem. Now I got new Work Items on reports. I tried to run it from remote machine and it wasn't possible. It could be run only from local machine. Ok, thanks for your reply. I'll try that. I suppouse you refer to Reports in the project Portal, ...Show All

  • PeteJM01 Form 1, 2,....

    How can I make from Form1 to Form2 on buttom click WITHOUT NEW WINDOWS I want all form in only one form. Please help thank you so much! That not what i mean. I am use Visual Basic 2005. I do not like make new windows when i click buttom, When i click buttom to form2, i only want in ONE form. Yes you can. One way is to place a panel in the main form which has it Dock property set to Fill. Then, when you create a new form, you can set the Panel as it's parent and show the form inside the panel. Dim frm As New Form2 frm.TopLevel = False frm.Parent = Panel1 frm.Show() 'The form will be inside the panel. You might wish to set the form's border style to None. o ...Show All

  • Rudedog2 Intellisense not working

    I have two Windows Forms projects. Intellisense works in one but not the other. I have tried the things in help (deleting the .ncb file, setting options, etc.) to no avail. Not sure what else to try. Any suggestions as to where else to look Thanks. Thomas Damien, I have read the article recommended (IntelliSense Support in Visual C++ - http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/vcintellisense.asp ). It is interesting and I applaud the design and implemention of Intellisense. However, it really did not give me any clues on how to fix the problem I am having. The problem has actually gotten slightly worse, I think. Whereas previously then I tried to invo ...Show All

  • zabrucewayne Problem with WebBrowser1

    Well, not so much a problem, just something I don't know how to do, if it's possible. I made, wrote, what ever ya call it, a Web browser. It works fine, but on some site when ya click a link or button it opens in a new window, thats when Internet Explorer kicks in. Is it posible to how those open in WebBrowser1 and not have Internet Explorer kick in at all also, how do I add an Add to Favourites to the Browser And if posible, How would do I add an option, if posible, to be able to set the Browser as the Default browser Am still learning program and still got a long way to go. am using visual Basic 2005 Express Edition. Thanx for ya help, very much apreciated. if my ...Show All

  • Macinkross "Start Without Debugging" error?

    i've been following this book step by step. it's called "Build a Program NOW!". im stuck on page 41. it tells me to us the "Start Without Debugging" command. everything seem to work right.. says at the bottom right "build started" immediately followed by "build succeded"... but nothing happens! there is no command prompt like there should be! what's going on all the stuff works fine in the toolbar (such as debug). but when i use the function "start without debugging" it appears to be doing the job right, just no command prompt. my educated guess is that it is closing the command prompt immidiatly after it starts because it "thinks it's done", so ...Show All

232425262728293031323334353637383940

©2008 Software Development Network

powered by phorum