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

Software Development Network >> D.A.C.'s Q&A profile

D.A.C.

Member List

sdoyle
veloce
Shadokin
ShubertAtEastridge
J-rod
kart
Bruce Rosner
eiger
Robin27015
sashisme
Dave_Bates
learning_in_texas
Shargon
Frustrated1689
wildshark-uk
Ade Miller MS
ATS16805
Robbyec
jz2006
billoo
Only Title

D.A.C.'s Q&A profile

  • Visual Studio Team System Rename TFS Server

    The Team Foundation Administrators Guide has a section titled "How to: Rename the Data Tier, Application Tier, or Active Directory Server or Client", but there is no content in it yet.  Anyone have any success in doing this   Is there a tool to be used to facilitate this, or do you need to edit configuration files by hand.  If the latter, does anyone have a list of the files that need to be edited Yes this is B3, but I was refering to the fact that the documentation is late or non-existant in places. Yes, TfsAdminUtil does ship (on the AT) with B3. ...Show All

  • .NET Development XsltCompiledTransform exceptions

    I'm looking for opinions on this. XsltCompiledTransform can throw a System.Xml.Xsl. XslLoadException. The problem is that the class is an internal class. Instead I have to catch XsltException. Now I guess I was expecting to be able to catch XslLoadException since it is being thrown. It just doesn't seem normal that I can't catch a specific exception that is thrown. Maybe others have run into that situation before and I haven't been doing .Net development long enough but this is the first time I have run into a situation where a specific exception is being thrown that I can't catch. XslLoadException dervies from XsltException so I can catch ...Show All

  • .NET Development Why am I getting WSE2008: KerberosToken is expected but not present in the security header of the incoming message.

    I'm working with a WSE3 client and WSE3 server. I'm getting the above error when my client tries to call a Web Service method on the server. Debugging the problem, I tried using the QuickStart WSSecurityKerberos Policy sample. When I use the QuickStart sample everything works just fine (both client and server applications are running on the same Windows 2003 R2 Server machine -- a 64-bit machine w/ 4 Intel Xeon 2.8GHz processors, w/ 4GB of RAM). However, when I take the identical wse3policy.config settings from client and server (each) and put them into a 2nd application on that same machine (also with client app and serve ...Show All

  • Visual Basic Method POST to send Data from windows form to ASP web page and get response

    Hi Friends over here, I'm using httpwebrequest and httpwebresponse to send and recieve data between windows form in my project and web page (ASP) using GET method, what I need is how to send same thing Using POST I found some example in MSDN but it was not clear for me and not working !!! Please help me as soon as possible. Hi there,    The main differences between POST and GET methods is the quantity of data that can be sent and security, so if you'r sending a simple form (Like registertation form or editing database record) you can just use GET method.    For more complex missions (Sending Files, Long Paragraphs) ...Show All

  • .NET Development .NET & Exchange 5.5

    Hi, There already is a .NET & Exchange 5.5 posting in this forum but I think there is more to discuss about this issue. Any info would be much appreciated. I need to connect to Exchange 5.5 using .NET in order to parse the attachements in a mail box. I also need to archive the messages in the mail box. The application needs to be robust since it serves a critical process. I understand that my options are WebDAV and CDOEX/ExOLEDB (using interop assemblies): http://support.microsoft.com/default.aspx scid=kb;en-us;813349 My questions: Is WebDAV less reliable than CDOEX (http access) Is CDOEX a more complete solution t ...Show All

  • SQL Server Running Sum on Query

    Hye Guys, I am new in this forums and programming.. I have data like S.N    Item      Qty 1      ABC         10 2      ABC         20 3      ABC         5 4      XYZ         2 5      XYZ         10 6    & ...Show All

  • Visual Studio Express Editions Problem installing Amazon Movie Collections Starter kit

    Hello, I have VB.NET 2005 Express edition installed. I downloaded and installed the Amazon movie collection starter kit. The installation seems to be giving no problems, but when I try to create a new Visual basic project, I don't get the possibility to create a Amazon movie collection project, or moviecollectionDL project.. Same problem ooccurs in Visual C#.Net express edition   What could be causing this problem Hi Patrick, You should be able to find the Starter Kit in the New Project dialog box by selecting the MySK node - the description for the template is "My Movie Collection Starter Kit (download)& ...Show All

  • Windows Forms Visual J# redistributable package and setup program question

    I have a setup project for a J# assembly and when the setup.exe program finishes installing .NET 2.0 it then looks for VJ# redistributable package. I have set the Launch condition properties to launch the vjredist.exe properly but when this installation is finished my setup.exe program has  exited memory. Is there anyway to have my setup.exe program continue with my installation like it does for the .NET 2.0 installation after vjredist.exe is completed Are you sending any arguments to vjredist.exe Unless you aren't already, try these: /q:a /c:"install.exe /q" ...Show All

  • Visual C++ Progress Bar assistance

    I am new to using Visual C++. I used a Control box in the Resource view tab to create the progress bar in the dialog box. This puts all the information in one file. In another file, I want to update the same progress bar so that it looks like it is downloading. How do I do that I've tried everything I could think of which is not much since I am new to this and they don't work. For example: one file Progress.cpp: Member variable,m_pBar, is what I created for Progress Bar using the class wizard. It was automatically put in this file. Update.Cpp I want to update the progress bar in Progress.cpp so that it looks like I am downloading while I ...Show All

  • SQL Server Executing trigger

    If I have a trigger "instead of insert" on tableA When I insert a set of rows in tableA. How many times the trigger is called(executed) Once or for each row inserted Thanks Thanks Nielsb, It's really cool becaus I wasn't sure. good night ...Show All

  • Visual Studio Team System Is there an example of how to test web services using https with X.509 certificate

    Any examples out there to test web services that require a client-side certificate using https I created the tests on my local machine without ssl and now am trying to enhance them for our larger test system. Can't record as we are using Smart Client WinForms.  Actually, the problem migh not be the certificate but how to add a FormPostParameter with Username and password. Is this the same in Smart Client forms as in IE Thanks, Burkhard WebTestRequest class has a Certificates collection that you can put client-side certs in. You may be better off writing a unit test to test the web services. ...Show All

  • Visual C++ how to add dialog events and override functions in vc++2005?

    in vc 2003 i could use the class that was created for a dialog and rigth-click on it to open the add virtual fucntion dialog and select from  a list of virtual functions or open the add message handeller dialog to sellect from a list of message handellers(functions that will respond to the messages). this way has some advantagres: 1- usefull comments and common codes are automaticly added(like the serialize OnCtlColor OnInitDialog). 2- also i do not need to take care of return type and argumants and capital or small letters when i am declaring the function and i do not even need to type them. 3- in case of message hande ...Show All

  • Visual Studio Team System Distributed System template

    Hello, I've just downloaded Visual Studio Team System Beta 2 and started "looking into" the Team System features but was unable to locate the Distributed System Solutions project types when creating a new project.  Where can I find these Thanks, Scott Mead Marking this as the correct answer for now while Jyothi and Scott work on this offline so I can stop getting reminder e-mail every day ...Show All

  • SQL Server how do i use a secure non-windows smtp server with ssis?

    my package requires a send mail task and i must use a secure non-windows smtp server. can someone please tell me how to configure the smtp connection manager so i can do this thanks. I've made a SMTP Connection Manager using a SMTP server by Windows Authentication without problems and works fine. Although I am not sincerly sure If I've understood fine this issue. ...Show All

  • Visual Studio Team System Removing Build information from TFS repository

    I have set up an nightly build and I need some help to remove build result from tfs repository...Is there a way to do that Hi, I have deleted a build using TFSBuild command. Does the build report effect this delete After deleting when i opened build report, listing the build which got deleted Thanks Padmaja ...Show All

©2008 Software Development Network