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

Software Development Network >> VS Team System

VS Team System

New Question

Me.Size.Height ...
How to pass customized build number to AssemblyInfoTask?
Error message on outlook
why have this error during installation?
image with grid coordinates?
Starcraft As Resource?
Team Foundation Install Problems
Data Compare - Not all tables available
Build errors
Problem with Db not saving--Solution is here!

Top Answerers

RookieBoy
imanish11111
Joey Bradshaw
CSharpCoder
Whoisit
deng sai bing
Kobingo
ckob22
rtayek
KeithGWilliams
OTC Migrator
Only Title

Answer Questions

  • ascona Form Size. Preventing re-sizing on Form blue bar double click

    Hi, How can I prevent a form re-sizing if the forms blue bar is double clicked ron In the form set the MaximizeBox to false. Yes the code works for me. Setting the maximize box to false keeps the form from being maximized. I didn't know that it would not stop it from being changed to normal. The code to keep it maximized works for me. First time clicked on gets a flicker but then on it doesn't. As SJWhiteley says you can use the Size() structure. Hi, Thanks for the reply, First thing I did The maximise or minimise properties have no effect when double clicking anywhere on the forms blue bar. The form is full screen, and like any windows form, if you double click the blu ...Show All

  • dragoncells HELP- solve the great debate

    I and my co-workers are having a debate they seem to think that windows 2000 professional and windows 2003 ent are the same with minor exception. I believe there is a great difference esp. dealing with memory and (serving)applications. I cannot find any documentation from Microsoft to support my statements. I believe I am correct. Am I wrong Thanks you are right, there are quite many improvements as well as additional features in Win 2003 Ent. I don't know, why you are not finding any documentation on that. Take any area and then look for that in both the versions. BTW, you are into wrong Forum - this is for Team Foundation Server - you need to look for Windows related Forum ...Show All

  • John.NET Query within a datagrid

    CHECK BOTTOM well what happens your still doing the same thing as before - creating a new RowFilter everytime...which isnt going to work. Re-read the initial response ;-) Dim theDataView As New DataView( Me .TeacherListLogin.Tables(0)) theDataView.RowFilter = " TeacherName = '" & Me .UserBox.Text & "' AND TeacherPassword = '" & Me .PassBox.Text & "'" When i tried... DataGridView1.RowFilter = " UserName = "'" & Me.UserBox.Text & "'" ... It doesn't work Any ideas whats wrong Oh right :P missed the dimming Thanks well connecting to/executing queries in a database is expensive so you should really try to ...Show All

  • dstorch compairing nine(9) numbers

    I need to compair nine numbers and none of them can be = to eachother. I also need to ignore the null(empty). I am a noob and all the info I am finding only compairs two values at a time. Is there a process for compairing nine at the same time or if you prefer: Public Function IsValid9Series ( ByVal TheArray () As Byte ) As Boolean Array . Sort ( TheArray ) Dim Sum As Byte = 0 If TheArray . Length <> 9 Then Return False For x As Integer = 0 To 8 Sum = Sum + TheArray ( x ) Next For x As Integer = 0 To 7 If ( TheArray ( x ) >= TheArray ( x + 1)) Then Return False End If Next If Sum <> 45 Then ...Show All

  • Yashwardhan Win32 application error

      I'm trying to install Security Update for Internet Explorer (832894).  When I go to run the program I get the error message update\update.exe is not a valid Win 32 application.  What can I do to run this without this error message coming up   Is there a particular update I need to install or change any setting on my pc   wantowan2 wrote: Seems like the perfect place for it to me. I did a searck with this persons exact error and this is where I ended up, perfect. I said this was a strange place to post the message because this Forum is about the Visual C++ 2005 Express Edition and is not a likely place to obtain information about general Windows operation ...Show All

  • progames25 snmpMgrOIDToStr and snmpMgrStrToOID

    How does snmpMgrOID2Str and snmpMgrStr2OID makes the convertion Does it read mib files in system32 Is it possible to load some specific MIB regards Daniel Martins Hi, i'd like to know how does snmpMgrOidToStr get and internal object identifier and returns its string representation. I believe it load some MIB file. Is this it I'm making a driver to commuticate to an UPS over SNMP and I have a MIB file that describes all objects identifier. Thanks Hi, What is it Could you pls describe some info about the specific questions Thanks Hi, dmartins For such issues please use an appropriate newsgroup, potentially one at http://msdn.microsoft.com/newsgroups . ...Show All

  • Surly How to make custom controls in VB Express

    Hi all, I have actually had some success at this but it works sometimes and sometimes it doesn't. I hope someone here can enlighten me so that I can achieve a consistent result. the problem I wish to create custom controls for use in other application I may make. my current solution Currently I follow the steps outlined below: open VB Express 2005 select the Class Library template add a reference to System.Windows.Forms add a reference to System.Drawing add the line "inherits UserControl" to my class add the line "imports System.Windows.Forms" add the line "imports System.Drawing" add the line "imports System.ComponentModel" customize the user control through both the design and code views save a ...Show All

  • selva_kumar Unit Testing, Windows Presentation Foundation: Problem

    Hello, I am writing a class library (File> new>Clas Libarary) with a Windows Presentation Foundation GUI, in VS2005. The Unit Tests wizard has a dialog called:"Create Unit Tests". This dialog is supposed to show a grid with: First row: Namespace Second Row: Class Next Rows: Methods. But I only get rows one and two. This cause me to code by hand my unit tests stubs. If I create a class library with WIndows forms, everything works fine... I think it is a bug. Anybody ever encounter this Regards, arit Hello arit, This is currently an unsupported scenario, we are aware of it, and will be supporting it in future versions of Visual Studio ...Show All

  • Ed Lewis Trouble Saving New Projects

    Just installed VB Express. However I can't open new projects passed the initial simple one I've created. Toolbox is empty. Form is missing. Properties are missing. Have registered the IDE but still no luck. DO you see any new project templates (windows application, console application, class library). The toolbox will only be populated if you are currently working on a form in a new project, so if you arent working on a form using the form designer mode then the toolbox wont show any contents.   The properties windows may also not show anything depending upon the current window your are working on - if its a code window then it may not show anything. Are you saying that you dont get any co ...Show All

  • SLang Moving Line

    Here's the code that I'm using, the idea is that a line is drawn the width of the Rectangle and moves down to the bottom of the Rectangle, I've had this working but after adapting the program to work with advice from a previous post it no longer works. Why is this Private Sub Pb_Paint( ByVal sender As Object , ByVal e As System.Windows.Forms.PaintEventArgs) G.DrawRectangle(myPen, Rect) e.Graphics.DrawLine(myPen, Rect.X, Rect.Y + Y, Rect.X + Rect.Width, Rect.Y + Y) If Y = Rect.Height Then Timer1.Enabled = False Me .Cursor = Cursors.Default End If End Sub Private Sub Timer1_Tick( ByVal sender As System.Object, ByVal e As System.EventAr ...Show All

  • rwbogosian Single Instance application crashes with an exeption...?

    I was making a program that I wanted only 1 copy to be running at a time. If its multi instance, I can run it over and over. If its single instance, instead of letting just 1 copy run, whenever a second copy is launched, both it and the first copy CRASH with some fatal exception error. I'm simply checking off the "Make single instance application" option under the "Windows application framework properties" section. Why does this make the program crash Hi, I found this feedback with the same call stack you got: http://connect.microsoft.com/feedback/ViewFeedback.aspx FeedbackID=93618&SiteID=210 . The problem seems to be with NOD32 anti virus program (see http://connect.microsoft.com/feedback/Workaround.aspx FeedbackID=93618&am ...Show All

  • GethWho Error 29112

    During TFS Single Server install I'm getting Error 29112. Team Foundation Report Server Configuration: Report Server is not properly configured ...Use Report Server Configuration tool ... And the install backs out. So, I fire up Report Services Configuration and get to the Database Setup step and I recieve these error messages: Verifying Database Version The database version (C.0.8.40) does not match your Reporting Services installation. You must upgrade your Reporting Services database. Creating upgrade script for database version C.0.8.40 Couldn't generate the upgrade script. There is no upgrade script available for this database version. Tell me more about this problem gives this: ReportServicesConfigUI.WMIProvider.WMIProviderExceptio ...Show All

  • joginaidu SerialPort 101 for a beginner

    Hello, I have spent a lot of time trying to use the serial port command in the toolbox but i was unsucessful. I looked at the samples posted online but i always get errrors. Can anyone explains what are the steps needed to have a sucessful communication (read and write) from and to a serialport.If you can post the code it would be great...Please help Thank you Hello, Here is what i have at this point. I am just trying to read from the serial port . Am i missing anything all i get is a blank messagebox. Public Class Form1 Dim StoreReceived As String ...Show All

  • catalinione Putting a byte in to a text box

    Hi, Please can someone paste some code for me, I am trying to put a byte in to a text box but have no iead how. I'm pulling my hair out with VB 2005 express and have no idea how to do anything. Thanks   This is from HELP Function ReceiveSerialData() As String ' Receive strings from a serial port. Dim returnStr As String = "" Using com1 As IO.Ports.SerialPort = _ My.Computer.Ports.OpenSerialPort("COM1") Do Dim Incoming As String = com1.ReadLine() If Incoming Is Nothing Then Exit Do Else returnStr &= Incoming & vbCrLf End If Loop End Using Return returnStr End Function Notice this is a function and a function has output sooo ...Show All

  • Prabagarane More about modifying web parts on Team Portal

    Hi, After applying the hot fix to the previous problem I reported, I now found that any web parts I want to add can only be added to the left column of the web page, there is no other choices in the drop down list. Is this a bug too or is there anything I need to do to add web parts to the right column Thanks, Maggie Actually, I want to add that the second problem I reported (the one about adding web part to the right not possible) was probably not a result from applying the hotfix. The hotfix only resolved the problem of not being able to add web parts. And now that I CAN add web parts, I can only add them to the left column. Hope to hear from you soon! Maggie ...Show All

303132333435363738394041424344454647

©2008 Software Development Network

powered by phorum