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

Software Development Network >> Amy Hagstrom's Q&A profile

Amy Hagstrom

Member List

vivek23
fbrian
StuartF
Rdavido
Fatming
Rishiraj Singh
Kaz33
Michael Chroman
andreapavia
EliasTa
Oirad
LongShen
Roesel
Michael Rich
Corinne
Alexander Ivaniukovich - MSFT
Tan Phan
KiAsU
VIPERRWD
Cronos12
Only Title

Amy Hagstrom's Q&A profile

  • Visual Studio Team System How to get the xml source files for process guidance such as ProcessGuidance.xml

    " MSF Process Guidance Customization Guide " suggests using InforPath to edit the xml source files for customizing process guidances. W here to get these XML files for the two pre-defined processes from Microsoft Thanks very much! Yuhang. Prior to the TFS Release Candidate the Source process guidance was included in the process templates that are downloaded from the Process Template Manager ...Show All

  • Visual Studio Express Editions Cannot connect to server

    I can download the ~3mb files, but when they are run and they are trying to download and install everthing, it says that the transfer rate is 0, then goes to say that it is trying to re-establish it's connection with the server. It can't do this, and when 5 attempts to do this fail, it exits. Any ideas I am assuming that you are talking about installing the express editions from the web installer. Have you tried downloading the full img f ...Show All

  • Visual Studio Express Editions why not work in visual C++ 'iostream.h'

    i put this n c++ and doesn't work #include <iostream.h> void main() { int c,i; for (c=6;c>=1;c--) { for (i=c;i>=1;i--) cout<<i; cout<< "\n" ; } } the wrror is fatal error C1083: Cannot open include file: 'iostream.h': Hi, You've to use the ISO compliant rather than old "iostream.h" which is not supported in the new compliers ...Show All

  • Visual Studio Really Frustrated With VS 2005

    I posted earlier about the fact you cannot get a copy of VS 2005 Pro even though the "launch" was 11/7. I have a Windows app I built using the VS 2005 Beta 2 that I need to update but since I downloaded the new Express editions (thinking they would work - wrong!) all the Beta 2 stuff is gone. OK, I went to my other system (Win XP SP2) and figured I'd install the VS 2005 Beta 2 there and use that until someone decides to "really" relea ...Show All

  • Visual Studio Team System Question about CA1819: PropertiesShouldNotReturnArrays

    Heya folks, i have a property that returns a byte array /// <summary> /// Binary data of the ringtone. /// </summary> public byte [] BinaryData { get { return this ._binaryData; } set { this ._binaryData = this .PropertySetter( value , "BinaryData" ) as byte []; } } now i get a warning saying i shouldn't return arrays from properties. Hmm. ok - the rational (if i have under ...Show All

  • .NET Development invalid operation exception

    Hi, I'm very new to this and I would appreciate any help you might be able to give me.  I am building a composite web service on my local machine.  This web service is to be comprised of calls to two other web services, one on my local machine and one not.  The web service I am trying to incorporate into the composite web service retrieves data from an SQLServer database.  It tests fine; when I use a web application to test ...Show All

  • .NET Development Y New Class. How can i made it?

    Hello, i want make a Control for me. A Control what have some Panels inside. (like TableLayoutPanel). The Panel at Top have a Label inside that shows the Caption. The Panel at bottom you can use as Panel and can have other controls inside. I made one with a UserControl. But the BottomPanel don’t want work. I can’t put other controls inside. How can i do this Thanks If you want it to act like a ...Show All

  • Visual C# C# EXPRESS DOWNLOAD

    I downloaded BETA 2 installed! ERROR MESSAGE POPUP Package 'Visual Studio Settings and Project Designers Package' has failed to load properly (GUID= 67909BO6-91E90-4FrE-AB60-495046BE9A9A}). Please contact vendor for assistance. Application restart is recommended, due to the possible enviroment corruption. Would u like to disable loading this package in the future You may use VCSEXPRESS/resetskippkgs' to enable package loading. WHaa I do ...Show All

  • Visual C++ errors binding AD using LDAP

    Hi all, I am new to Visual Studio and C++ and I am trying to bind to active directory using ldap. I could compile the code, but when I built it, I got linker error like this: ldapConn.obj : error LNK2001: unresolved external symbol __imp__ldap_initWC:\lewis\smtpMail\ldapConn\Release\ldapConn.exe : fatal error LNK1120: 1 unresolved externals My code is very simple, it's like this: #include <windows.h> #include <winldap. ...Show All

  • Visual Studio Express Editions Findcontrol in a FormView

    Okay I have tried everything..... I've spent hours researching this to no avail I need to set the property enabled of a drop down box in a Formview to false. Dim dl as DropDownList dl = FormView1.findControl("EmpDrop") dl.Enabled = False Does not work ---------------------------------------------------------------------------- Dim dl as DropDownList dl = findControl("FormView1.EmpDrop") dl.Enabl ...Show All

  • Visual C++ Problem with a program I am writing...

    I am writing a simple program for a c++ course I am taking and can not seem to get my vector string to initialize correctly. Below is what my main looks like. void main(void) {  double dblResult = 0;  vector <string> strTestCase1;  //******************************  //* TEST CASE ONE  //******************************  strTestCase1 = {".....",    ".....",    "..B..", &nbs ...Show All

  • Visual Basic context menus

    Is there a way to change the default background color of a context menu Thanks, Fred ContextMenuStrip1.BackColor = Color.Red ' Use a predefined color ContextMenuStrip1.BackColor = Color.FromArgb(20, 255, 0, 0) ' Use a custom color. Note that the first number is alpha and should be 255 if you are not sure what to do with it. ContextMenuStrip1.RenderMode = ToolStripRenderMode.System ' Use this if you want it to look like ...Show All

  • Visual Basic Data refresh problem

    I have a table connected to a binding source and a table adapter, which are bound to a dataset. The text boxes are editable and the Update setting is OnValidate. However, the edits are not being passed back to the database. I added the following lines to the OnClosing event for the form: Me.Validate() Me.TblSystemBindingSource.EndEdit() Me.TblSystemTableAdapter.Update(Me.ManForexCLSDataSet.tblSystem) However, the application ...Show All

  • Windows Forms printing datagrid

    hi. does some one knows how can i print all the records in my datagrid, including the once i have to scroll to see Thank's hey i have that code, and i can give that to you, just send me ur e-mail add. at majnoo@msn.com the&nb ...Show All

  • SQL Server retreiving connection strings from machine.config

    Hi, I'm trying to figure out how to retreive connection strings from the machine.config instead of storing the conn strings in a *.dtsconfig file. The reason that I'm trying to use the machine.config is for the simple reason that I'll be able to manage all of the conn strings in one location on each server. (Instead of mutliple dtsconfig files.) Is it posible to utilize the machine.config in SSIS If so, could someone explain how, or better ...Show All

©2008 Software Development Network

powered by phorum