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

Software Development Network >> VS Team System

VS Team System

New Question

Is it me or has intellisense been dumbed down for C++ Express?
Form Size. Preventing re-sizing on Form blue bar double click
Extending Team Portal to have calendar...
Error : when starting the sqlserver(SQL EXPRESS) service
Query within a datagrid
Can't seem to change opacity of window
Registering
payment calculator
function returns
CPU usage

Top Answerers

Giedrius Banaitis
Dots
koko
e.henriquez
Merlin the Wizard
BD_Elektrona
SavitaHK
EwenTweedie
msaeedf
Maclau
sitemap
Only Title

Answer Questions

  • Andr&#233&#59; Dias Application Diagram problem with WSE 3.0

    I have a solution that contains an ASP.NET web service that uses WSE 3.0.  It also uses a custom UsernameTokenManager.  The application compiles and runs properly.  However, when I attempt to open an Application Diagram, Visual Studio locks the diagram and displays the following error: Application definition MyWebService is locked because there is an error in C:\MySolution\MyWebService.web.config.  WSE040: Type MyProject.MyUsernameTokenManager, MyProject could not be loaded.  Please check the configuration file. The configuration file is correct, since the application works fine, and has worked fine for a long time.  The web.config lines in question are: < microsoft.web.services3 >   &l ...Show All

  • Nicolas Navet TabControls

    Simple question. How do I change the name of the tab So that I can name the tab instead of seeing Tab1. Thanks. Where should this code be placed Under the form or under the tabclick Me . TabPage1 . Text = "MyTabPageName" or Me . TabControl1 . TabPages (0). Text = "MyTabPageName" If you are setting the tab text as a constant string through out the life of your program then you could just set it in the designer. If you are wanting to set it at startup of your app then place it in the form load event ...Show All

  • Evan Mulawski Accessing Dataset from two forms

    There is most likely something simple I have missed but I can not get this to work. I have a Dataset containing several tables. One of the tables, "Table1" has a Datagridview on "Form1". Unfortunately, none of the data from "Table1" is "available" on "Form2". I have not been able to use a datagridview of this table on "Form2" nor been able to even do a .Count via code. Everytime it returns nothing. Any suggests on what might be the cause Brian you can pass the objects around classes like so... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=760400&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=777326& ...Show All

  • K&amp;#58;&amp;#58;ot&amp;#63;&amp;#63;&amp;#63;ter Changesets in a cloaked directory aren't listed in the build report

    It looks as if a change that is made in a directory that is cloaked in the team build process does not show up in the list of changesets associated with that team build. Is this an accurate statement If so, can it be changed We have a significant number of files that are cloaked to speed the build but I would like changes to them to show up in the build report. Thanks The associated changesets are calculated by looking at two labels: the last and the current. The labels are generated by labeling the contents of the workspace used during the build, as labelling using a Workspace Version Spec is the only reliable way to determine that the files in the label are exactly as they are on the disk. You may ...Show All

  • Stephen_Sbh Saving in ComboBox

    Hello! How do i do to update Item (Collection) Can't get it to work! This code put the text into ComboBox but it doesen't save it to Item Collection Combobox1.Item.Add(TextBox1.Text) TextBox1.ResetText() TextBox1.Focus() Tanks for all answers! All the codes i have tried works and there is no "errors"! Saving to combobox works fine wile the program is running, but when i close and reopen it all saved data disappear. It doesen't save to "item collection". Is there some adjustment to be done in property What part doesnt work - you'll need to be more specific Example Code to determine items collection is be ...Show All

  • Davids Learning Sharepoint sites for TFS disappeared

    Hi Today I noticed a big problem with our TFS test server, the SharePoint sites for all the team projects are gone. The sharepoint sites haven't been visited for a few weeks due to the summer holidays, but they were certainly not deleted on purpose. This is not a big problem however, as these were only sample sites. The big problem is that it's not possible to create new team projects, I have tried both repairing and reinstalling SharePoint, but this doesn't seem to help. I would prefer not to set up everything all over again, so if anyone can help me get back on track I'd be very happy. Hi I checked in the logs, and found nothing there. Sadly I can't check any more now, as the server is kinda formatted at the moment, need to ...Show All

  • trackdaychamp Refresh MS project file upon open

    Hello everybody, Has somebody written a macro which asks to refresh the MS project file upon open If I forget to and click later on publish, the actual values in msvs (eg the completed work) will be overwritten with the values given in the MS project file. Or even a better solution: Refresh a list of MS project files by selecting them within a folder, right click and refresh. That would be best ;) Kind regards, Henk Hi, Thanks for the replys. Yes I am interested in that macro. A macro that prompts a dialog box on opening a project file would be best. So you can choose to refresh or not, but cannot forget! My problem is to publish changes in the plan without refre ...Show All

  • White-Tiger-Eyes Making A Panel Move?

    I have a Panel who's "Location" starts off at (12, 317). When the up button is pressed, I want the Panel to move up an interval of 50. For example, if the "up" button is pressed once, then the new location would be (12, 267). If it ws pressed again, then the location would be (12, 217). Here is the code I am using: Private Sub Form1_KeyDown( ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me .KeyDown If Keys.Up Then <What do I Put Here to Make Panel Move Up > End If Thanks, both of your suggestions are helpful. Also, how would I go about boundary checking That sounds really important in what I'm am doing. Would it be somethi ...Show All

  • djmikke Power Toys for Modeling Tools

    1. I cannot load the Modeling Enhancements - I'm using Team Suite. Error is : The Add-in 'Modeling tools design enhancements' failed to load or caused an exception How can I get these tools to work Jean-Pierre Fouche How typical! Somewhere in the dialog with the developer, the tools started working. I'm not sure what I did that affected the change, but it seems to be fine now. Also, I only had issues using the tools on the Application Designer. They worked fine on the Class Designer. Jean-Pierre, have you noticed any changes Again, I'm not sure what might have caused the change - reboot of VS , reboot of the machine (after installing Windows updates), timing issues in something... Anyway, I'm ...Show All

  • schlrobe CType Trouble

    I am trying to make a small amount of code save me from having to manually write everything out. What I have is this so far Dim Box As CheckBox = CType (sender, CheckBox) Dim W As Integer = 1 For W = 1 To W = 7 If CType ( Me .Controls( "rC" & Box.Name.Substring(W)), CheckBox).Checked = True Then CType ( Me .Controls( "rW" & Box.Name.Substring(W)), CheckBox).Checked = False ElseIf CType ( Me .Controls( "rW" & Box.Name.Substring(W)), CheckBox).Checked = True Then CType ( Me .Controls( "rC" & Box.Name.Substring(W)), CheckBox).Checked = False End If Next W I want it to check if rW1 is checked, and if it ...Show All

  • johnacs small problem with Messagebox

    Hello. I have just a small problem. i have a MessageBox on my form. On the menubar, when ya click File, then click New, if text has changed in RichTextBox1 the MessageBox opens asking if ya want to save it. When ya click Yes on the MessageBox the SaveFileDialog1 opens, which is want i want it to do....the problem is, if ya click No on the MessageBox the SaveFileDialog1 opens. How can I stop this from happening and get the th MessageBox close when ya click No heres my code: Private Sub NewToolStripMenuItem1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewToolStripMenuItem1.Click If RichTextBox1.Modified = False Then End If If RichTextB ...Show All

  • Beth mfc library

    can any one tell me how i can get the mfc header files (assuming they are header files) so that i can use them with visual express thanks Let me just add that there's a common misconception amongst new developers that when they need to include a header to make something work, they seem to assume they just need to find that single file. A header is often an entry point into a library, which will include many other headers. In addition, headers are useless without .cpp files or .lib files ( which are precompiled .cpp files for your code to link to ). So, MFC requires a lot of files above and beyond the headers that the help tells you to include, and as Jonathan has stated, the Express Edition does not support MFC. Yo ...Show All

  • marelis Weird Compare Issue

    When I click the "Check-In" button on a TFS SCC project in the source control explorer I get a list if .vspscc and .vssscc file conflicts that occur. When I click on resolve and then click the compare button I get a pop-up window that has the notification icon, 2 buttons but no text at all. Not even on the buttons. What is going on here I installed TFS about 4 days ago. Cheers, Mark Not directly, but you can upload it somewhere (e.g. Flickr) and post a link :) Hi Paul, You should start a new thread with your issue. Newer threads have more visibility and will most likely get your problem resolved faster. -Matt Ok I will get onto that. How exactly ...Show All

  • mstcrow5429 Problems with Private Subs

    I am lost (whats new)......Are not Private Subs within a single Public Class mutually exclusive from each other If they are not how then do you make them mutually exclusive Also, if you call a Provate Sub that you created ( i.e. Private Sub Clearand Off () .... which is used turn off and clear specific txtboxs, lbls, and checkboxes) in all the Private Subs that you have is the use of that Private Sub Mutually exclusive to the Private Sub you made the call from Please if I am not clear, let me know. LVB Although these are "subs" they are event handlers. Normally code calls subs. Event handlers are called by events usually windows messages I don't want to sound sillier than usual b ...Show All

  • Morten Petteroe Problem in running build -error MSB3073

    Hi I am trying to run a build using TFS and I geting an error. It looks like it fail on some post events (md directory + copy) of a VS project. Is it a known bug in TFS build If I build the solution without using TFS build it works ! Thanks, Error: Solution: MasterSolution.sln, Project: Destinator.PC.Services.Local.csproj, Compilation errors and warnings C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(3089,13): error MSB3073: The command "md C:\console_build\Destinator_IL\PCPortal Master\Sources\PCPortal\DestinatorPC\\Destinator.PC.App\C:\console_build\Destinator_IL\PCPortal Master\Binaries\Release\ copy *.* C:\console_build\Destinator_IL\PCPortal Master\Sources\PCPortal\DestinatorPC\ ...Show All

232425262728293031323334353637383940

©2008 Software Development Network

powered by phorum