Software Development Network Logo
  • Microsoft ISV
  • Smart Device
  • Visual Studio
  • Game Technologies
  • Windows Vista
  • Windows Forms
  • SQL Server
  • Visual Basic
  • VS Team System
  • Architecture
  • Visual C#
  • Visual C++
  • Visual J#
  • Windows Live
  • VS Express Editions

Software Development Network >> Ted Glaza's Q&A profile

Ted Glaza

Member List

MurfMan
Simon T.
ElvisAsaftei
Steve "The Bug Magnet"
BorgmanJayce
DaBurke
Munni
Guitz
jimmyglo
Jaisheel
Garnet
PeterBrown
BobDaBuilder
TWorman
Rhonda MC
Lady_A
Sweey
Equinox_d
Darshan Jog
Jon M.
Only Title

Ted Glaza's Q&A profile

  • Visual Studio Team System setup team foundation server error - and hotifx

    hi, i tried to install team foundation server and i get the following error code: EventType : visualstudio8setup P1 : 12841 P2 : 8.0.50727.43_vstfbeta3_x86_cd P3 : msi P4 : inst P5 : f P6 : ca_quietexec P7 : 6 P8 : 1603 P9 : - P10 : - any suggestions what the problem is operating system: windows server 2003 sp1 installation guide: TFSInstall-v60317.chm hotfix KB913393 for Microsoft .NET Framework 2.0 not installed, because i can not find it on the installation cd. can somebody tell me where i can find this hotfix And you followed the guide for Beta3 or the updated guide as far as I k ...Show All

  • Windows Forms how to add more panels in splitContainer

    hi, in standart split container is 2 panels divided by splitter, i wnat to add moe panels and more spliters of course, maybe someone can offer something well actually i thougth to create a control like in reports with 3 panels 1 for header 1 for body and 1 for footer, mabe someboy have other ideas i still didn't find a good way to do that ...Show All

  • Visual Studio Team System Team Builds error when connecting to the build machine.

    Hi! I'm currently trying to configure a build machine into my team foundation server environment, but I cant get it to work! When I'm from a client is trying to trigger a build of my project I get the following errormessage: TF42046: The build service used in the build process is not reachable. This error occurs when either the build machine is off-line, the required service is not running, Team Build is not installed on the build machine, Team Build is configured for a different Team Foundation Server or the network is not available. Contact your Team Foundation Server administrator to confirm that Team Build is correctly installed and runn ...Show All

  • SQL Server UPDATE a table from XML file

    I have a winforms app which has to update a database from a XML file. I receive an XML file by mail and then I have to update a some records from a SQL database. Which is the best approach to do this Look into the classes in System.Xml for querying/parsing the XML file.  Once you have the information you need, you can use the classes under System.Data to perform the database operations. ...Show All

  • .NET Development Thread safety of instance member Regex.IsMatch()?

    I'm using a singleton object which holds a precompiled Regex object: _identityRegex = new Regex( pattern ) In an instance method, that may be unpredictably busy, I make a call to the IsMatch method of the Regex object: bool ok = _identityRegex.IsMatch( input ) Question is: According to the Regex documentation " Any instance members are not guaranteed to be thread safe ". But I need to know whether this particular one is thread safe - or if will I need to put this call inside a lock (monitor), with the potential wait it entails Thanks, Niels When using the singleton pattern, you a ...Show All

  • Visual Studio VS2005 Release Candidate, Different Component Versions Between Machines

    I and several fellow workers have VS 2005 RC installed and previously had beta 2 installed. We are finding that the version numbers in the About Box in VS are showing different numbers for VB, VC# etc -- all the same except for the last 5 digits for each of us -- mine is 00018, another is 00503, another is 00101, another is 00917. Is this expected, or did we not clean up properly from beta 2 and need to reinstall Jim That is not a version number. The number you're looking at can vary from one installation to another, and I believe part of it is derived from the registration information you enter. The versi ...Show All

  • Visual Studio Team System Developer Express Edition + Team Suite on the same computer

    i first downloaded the express edition - and installed it. Is it possible to install / run the Team Suit Beta 2 and use both of them (Express / TeamSuite) - on the same copmputer. I want to chech the feature of the two versions - (hands on)  thanks You can install the client components on the same machine. But to install Team Foundation Server components you need Yukon installed on a seperate machine or as VPC on the same machine. We do support single server setup of all the components but you need to uninstall SQL express edition before installing Yukon. -- Venkat ...Show All

  • .NET Development makeing a server and client class using sslstream

    Hi i want to develop a class server and client that uses ssl stream.. but i know nothing about ssl nd sslstream.. can some point to some tutorials that showes how to create a server using ssl please C# Copy Code using System; using System.Collections; using System.Net; using System.Net.Sockets; using System.Net.Security; using System.Security.Authentication; using System.Text; using System.Security.Cryptography.X509Certificates; using System.IO; namespace Examples.System.Net { public sealed class SslTcpServer { static X509Certificate serverCertificate = null ; // The certificate parameter specifi ...Show All

  • Visual Studio Express Editions How to read and write a text file without screwing up the encoding

    I am writing a program that reads in a text file, makes some modifications, and then writes the modified version to a new text file. The problem is that any non-english characters in the text file get turned to gibberish. I know this has to do with the encoding of the text files, but I can't figure out what I am supposed to do to keep this from happening. What class do you use to save your updates to a textfile Or better yet, can you provide some codes so we can see what is causing the problem. -chris ...Show All

  • Windows Forms DataGridView & DataGridViewComboBoxColumn datasource

    Hello, I am using VS2005 & SQL2005 RTM. I am curious why does it error if the DataGridViewComboBox cell's items list does not contain the value that this combo box is bound to Like ASP.Net 1.1's DataGrid control, I was expecting that if the value the combo box was bound to wasnt present in its items list that nothing would show. Throwing an error is a bit annoying for an acceptable situation such as this. Another reason is that when I go to the new row, I cannot add a record; it errors out with: System.ArgumentException: DataGridViewComboBoxCell value is not valid. since the default value of the new row's Guid field (00000 ...Show All

  • Smart Device Development problem with dock fill

    I am using Visual Studio 2005 Professional Edition Version 8.0.50727.42. In a PocketPC2003 project, I am having trouble seting up one of my forms. The first thing I did is create a panel and dock it to the top. Then I created a label and a few check boxes and put them inside the panel. I docked the label to the top of the panel. below the first panel I have a splitter, also with its' dock property set to top. This positions it just below the first panel. Then, below the splitter, I have another panel with its' dock property set to fill. This causes it to fill up the remaing portion of the form. So far everything is working fine. Then inside ...Show All

  • Visual Studio Obtain log file contents?

    After my MSBuild project completes, I want to be able to email the results of the Build to my developers.  I have a <OnError ExecuteTargets="MyBuildFailedTarget"/>   and am able to get my EmailTask to run from the MyBuildFailedTarget, but I need to access the contents of the log file so I can include it in the email I send. I'm specifying a log file name on my MSBuild commandline like this: MSBuild.exe /l:FileLogger,Microsoft.Build.Engine;logfile=MyBuildLog.log So the question is: From within the project file, how do I get the name of the log file specified on the commandline   Or alternatively, how can I access th ...Show All

  • Visual Studio Team System How to get target information during running a Test project

    Hello all, I have set up a Team Build Type to build my solution of multiple configurations, such as "Debug|Win32", "Release|Win32", "Debug|Pocket PC 2003", "Release|Pocket PC 2003" and so on. Within the same solution, there is a Test project which perform a BVT test. I config the Team Build Type to run this BVT test after building in TFSBuild.proj as following: ...     <RunTest>true</RunTest> ...     <MetaDataFile Include="$(SolutionRoot)\Main\MySolution\MySolution.vsmdi">       <TestList>BVT</TestList>     </MetaDataFile> ...Show All

  • Windows Forms How to make DataGridView cell button style like Office 2003?

    Howdy folks, In Infragistics, it's possible to set a cell's button style to Office2003. This gives it a nice gradient appearance that you see if things such as Outlook. I love the ease of use with the new DataGridView in VS 2005, but need the Office 2003 button appearance to look like the Infragistics button. Does anybody know how to do this I would also like to do the same thing with normal buttons, although the Infragistics versions of these are OK to use so that's not as big of a priority as the datagridview buttons. Thanks, Dan You can use the CellPaint event to customize the app ...Show All

  • Visual C# Checking if a specific handler exists

    I was wondering if there was a simple way that I can check to see if a specific handler exists for a control. I know I can simply create and set a boolean variable to true once I create the handler, but I was hoping that there was a simple way, without the use of additional variables, to check whether or not the handler has been created: My control is a TreeView, and is called tvRobot. I create the BeforeSelect handler, tvRobot_AlwaysBeforeSelect, within another event. The problem is, is that I have two handlers for the BeforeSelect event, both of which get created and destroyed throughout the program, so I can't simple check t ...Show All

©2008 Software Development Network