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

Software Development Network >> VS Team System

VS Team System

New Question

How to keep the changeset history in TFS when I make a merging or branching?
Favorites in webbrowser help!!???
Using iterations in MS Project
shutdown windows
Preview image in browser does not work
how to retrieve data from a database and put it into a variable
Deleted Folder still visible- Can't remove
TFS access problem
IS VS 2005 premier partner editon mandatory
noob question: what do windows applications use as a db?

Top Answerers

bird.tw
Marteyn
kennm
Constantijn Enders
ahmadifx
Peter Huber
SarathChandar
hrubesh
ConfigSSIS
Mark See
sitemap
Only Title

Answer Questions

  • CharlesF Simple copy program

    Hi, I'm new to VB (obviously) and I'm trying to create a program that will copy the contents of a CD (to distribute on that CD) to a hard drive. I have tried using a batch program with the "xcopy" command, but Windows XP just doesn't work with a DOS shell too well. Is there a way I can do this with VB Or possibly even Javascript Thanks for the help, everyone! I finally got the VB program to work, but thanks to everyone who helped me with that batch file. What is not working with that batch How do you ensure that the current directory which you reference with . is set to the CD or DVD directory you want to copy Does C:\CDcontents exist Otherwise you must cre ...Show All

  • Indigo Cowboy Sum ListBox values "VbExpress 2005"

    Hi My listbox display numeric values contained in Access Database file. and i wont to sum this all values. I haved tried some code combinations but it is not working. If someone will help me whith this problem, I will appreciate. Thanks Not Working I have already tried this code, and this is not working with DataRowView. Thanks Dim TempIndex As Integer , Sum As Integer = 0 For TempIndex = 0 To ListBox1.Items.Count - 1 Sum += ListBox1.Items.Item(TempIndex) Next MessageBox.Show(Sum) Hope this helps ;) I presume you are using the example that was provided for my question . In that case just try to change the example above like this: Dim TempIndex As Integer , Sum As Integer = 0 For ...Show All

  • CFIG VS 2003 and Vs2005 using MSSCCI provider

    Hello all, I have vs 2003 and vs 2005 installed on the same machine. I have a 2003 solution that's inside TFS source control and i've installed MSSCCI provider to use with my vs 2003. In the moment that I open Vs2003 and choose MSSCCI provider, it automatically opens vs2005 and i cant work on my solution, because its not converted yet. Does anyone know how could i use the vs2003 without need to uninstall vs 2005 Thanks! Hello! i'll try this! Thanks! Hello, The "File->Source Control->Team Foundation Server Msscci Provider" is the command to run external tool for the active msscci provider - in the case of TFS, it's VS2005. To start working with Msscci you just need to: File->Source Control ...Show All

  • xRuntime Tabbed Web Browsing

    hi everyone at the moment I'm trying to make a web browser which supports tabbed web browsing I've made it so that you can click a button to add new tabs but I'm not sure how to make the address text box control the tab which is currently being viewed, at the moment it's only able to control the first tab. How do I get it to control the tab which is currently being viewed and also how do I get the web page's name to be shown on the tab my code so far : Public Class Browser 'Creating an instance of the Navigate class Dim NavigateWindow As New Navigate Private Sub Browser_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Click End Sub Private ...Show All

  • vkmurari Hyperlink vb 2005 express

    Hi How can I make the wording in a textbox into a hyperlink so that if i click on it it opens a file. Thanks Rob Use the LinkLabel in the toolbox. Otherwise change the textbox forecolor to blue and underline. On the textbox click write your code.   ...Show All

  • Kryor difference in browsers

    Okay, i just started with asp.net and i'm trying to set up a web-site. First i couldn't find a frameset in the standerd utility's so i made my own. Now i am able to use a frameset but when i make a header page with a certain background and link it to the header of the frameset i get a problem. When i use IE the frameset looks fine and i can see the background picture in the header frame. BUT When i use for example : Firefox the background picture is gone. Firefox will not show the background picture. Does anybody know what to do to solve this problem I'm sorry but this is not the forum for ASP questions. Users with questions such as this are referred to www.asp.net . Thanks. ...Show All

  • NetPochi /analyze + Windows Vista SDK + VSTS2005 = crash :(

    Apologies for the cross post but this doesn't seem to be generating a lot of interest in 'Visual C++ General' I have been using VSTS2005 for sometime, main reason for upgrade was to use the /analyze compiler option for unmanaged c and c++. Two days ago I downloaded the Windows Vista SDK, installed it and clicked on 'All Programs->Microsoft Windows SDK->Visual Studio Registration->Register Windows SDK Directories with Visual Studio 2005'. Since then compiling my project with /analyze causes VSTS2005 to crash. I would rather not uninstall the SDK as the compiler seems to be finding a lot more issues with my code, before it crashes! Any suggestions what I can do Thanks in advance. I ...Show All

  • satya999 How to differentiate the Constructor which generated by Compiler or writen by user

    How to differentiate the Constructor which generated by Compiler or writen by user: I have overrided the check method: public override ProblemCollection Check(TypeNode type) { if (type.NodeType == NodeType.Class) { int memberCount = type.Members.Length; int constructorCount = 0; for (int i = 0; i < memberCount; i++) { Here: What can I do to differentiate the constructor which generated by Compiler or writen by user if (type.Members .NodeType == NodeType.InstanceInitializer) { { constructorCount++; } } } Problems.Add(new Problem(GetResolution(constructorCount.ToString() + NodeType.InstanceIni ...Show All

  • ShawnWilsnach FxCop 1.35 skipping Structs

    While analyzing the NodeType the FxCop 1.35 is skipping the Struct which itself is a NodeType. I tried the following code while overriding the Check(NodeType) but still the structs are not getting trapped public override ProblemCollection Check(TypeNode type) { if(type == null) { return null; } switch (type.NodeType) { case NodeType.Class: return Check((Class)type); case NodeType.Interface: return Check((Interface)type); case NodeType.EnumNode: return Check((EnumNode)type); case NodeType.Struct: return Check((Struct)type); } return base.Check(type); } I tried one workaround for this by overriding the Check(Module) method and checking for each type. There I can trap the Structs. But problem with this ...Show All

  • brian_tsim Click event

    Hi I need some help with my program....I'm having an issue getting the check box grand total to display a grand total....any help would be appreciated here's the program: Public Class VBLab2 Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click ' Clear Boxes txtPackageA.Clear() txtPackageB.Clear() txtPackageC.Clear() ChkGrandTotal.Checked = False txtPackageA.Focus() End Sub Private Sub btnCalculate_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click 'Package A retail $99 'Package B retail $199 'Package C retail $299 'Quantity Discount '10 to 19 20 ...Show All

  • jomunoz My form does not respond?

    Waht should I do if my form does not respond I have a button on my form that has an email code under it, so whenI press it, it sends email. The only problem is that when I press it, my for says "(Not Responding)" at the top. Then I get an error that says the operation has timed out..how should I fix this ok.. here's the code.. Dim message As Net.Mail.MailMessage = New Net.Mail.MailMessage( "****@yahoo.com" , "****@yahoo.com" , "subject" , "body" ) Dim client As System.Net.Mail.SmtpClient client = New Net.Mail.SmtpClient( "mx1.mail.yahoo.com" , 25) client.UseDefaultCredentials = True client.Send(message) I'll do the break po ...Show All

  • MSDev23 Sending Data between forms not working!

    This simple example below does work. But, I am doing the same thing in my app and Form2 is not getting the string from Form1! Public Class Form1 Public str As String Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load str = "hey" Form2.ShowDialog() Close() End Sub End Class Public Class Form2 Private Sub Form2_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load MsgBox(Form1.str) Close() End Sub End Class try.... Dim  Str A s String Public Sub New ( ByVal  Str As String )       Me .Str = Str ...Show All

  • Struan How do I program to format some partition ?

    Hi, I would like to program to format the specify partition, but I don't konw whith API or LIB that I need to use. I can get the specification partition, now, but I still do not konw how to execute the format command. My develop environment is Windows 2000, DDK 2000, and SDK 2000. Could you please to teach me whitch API or LIB that I need to use Thanks. Thanks for your reply. I will try it. Thanks the format cannot be started programmatically using SHFormatDrive. You may take a look at http://www.sysinternals.com/SourceCode/fmifs.html After I tried, I still have some problems. 1. When I used SHFormatDrive() in CV++, I have err ...Show All

  • CV. Printing in VB.NET. You need the PrintForm component.

    Hi, im new to this forum and really need help to solve this problem. Can anyone help me out Im really confused. Private Sub WriteLine_Renamed( ByRef vCount As Short ) 'Write file record vXBLNR.Value = Left(vKOSTL.Value, 1) & "SV" & Mid(ctlBUDAT, 7, 2) & Mid(vHexMth.Value, Val(Mid(ctlBUDAT, 3, 2)), 1) & VB6.Format(vCount, "000" ) 'YYH 'FIXIT: Print method has no Visual Basic .NET equivalent and will not be upgraded. FixIT90210ae-R7593-R67265 PrintLine(1, ctlBLDAT & ctlBLART & ctlBUKRS & ctlBUDAT & ctlMONAT.Value & vXBLNR.Value & ctlNEWBS.Value & vCustCode.Value & VB6.Format(vAmount, "0000000000.00" ) & ctlNEWBS1.Value & c ...Show All

  • &amp;#2960; moda.asp.net &amp;#2960; maskedtextbox problem?

    i have a problem regarding maskedtext box....i masked the textbox as a date and time.... i want is to input only valid date(12/25/2006) if user attempt to input date (50/50/5555) then user will promt that input is invalid pls help     Try DateTime.Parse( "Jan 331, 2002" ) Catch MsgBox( "Error" ) End Try ...Show All

192021222324252627282930313233343536

©2008 Software Development Network

powered by phorum