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

Software Development Network >> SusanaMS's Q&A profile

SusanaMS

Member List

Merav
clauden
skostiuk
Jim From Florida
RSach
raymuirhead
J Russell
Bruce_Daddy
qtvali
Mark The Archer Evans
Russ V.
Harrison N.
vimalpatel2u
tatltat
Bigforky
John Vonesh
Paul Knepper
Tyson882
Junifer
Infodine
Only Title

SusanaMS's Q&A profile

  • Visual Studio Team System Code metrics in Visual Studio 2005 ?

    Is any code metrics tool (like NCover, NDepend) in Visual Studio 2005 Thanks. Clement Code coverage is certainly included, here's a video:  http://channel9.msdn.com/Showpost.aspx postid=125041 Eric Jarvi http://blogs.msdn.com/ejarvi ...Show All

  • Visual Studio Tools for Office "send email" button in MS word

    Hi guys! Is there anybody here who knows how to add a button in a Microsoft Word document Then when I click the button it sends an email with the document as attachment. Thanks. Looks interesting! will give it a try and let you know. Regards Pavan ...Show All

  • SQL Server Column Mapping in a Custom Component

    Does anyone know how to get destination coulmns to show up in the advanced editor for a custom component I have a custom flat file destination component that builds the output based on a specific layout. It works as long as the upstream column names match my output names. What I want is to allow non-matching columns to be mapped by the user as they can in a stock flat file destination. The closest that I have been able to come is to get the "column mappings" tab to show up and populate the "Available Input Columns" by setting ExternalmetadataColumnCollection.IsUsed to true on the input. The problem is that the "Avai ...Show All

  • Visual C# Reading from xml file

    Hi all I created a xml file using XmlTextWriter for saving new file information with size   < xml version="1.0" encoding="us-ascii" > - <logfile> - <file>   <FileName>C:\Anup\wms_20050604.log</FileName>   <Size>877</Size>   </file> - <file>   <FileName>C:\Anup\wms1_20050604.log</FileName>   <Size>877</Size>   </file>   </logfile>     I need to check the xml file if the existiing file name is there under the <file> root tag.If it's not there i want to add the file tag like this <file> & ...Show All

  • Visual Studio Team System Document Templates

    I'm missing the templates for "Baseline Configuration Management" workstream (CM Plan, Access Control Policy and GuideLines). Will they be present on final release Regards, Max Andrade I don't feel you need to take this so literally. The fact that you have the system installed and running on a server and you have a team project with a process template and a configuration for artifact storage is enough to prove that you have records. There doesn't need to be an actual document. It is worth remembering that CMM(I) was conceived in 1987 and delivered as a spec in 1991. In those days many more things were m ...Show All

  • Visual Studio Team System Organizing Projects

    We are getting started on Team System and would like some guidance on organizing projects. We are going to have a web based product and a smart client product with components that are going to be shared among them. If we are going to do project references among the two solutions we will have to go with one Team Project as source code cannot be shared among team projects according to this: http://msdn2.microsoft.com/en-us/library/ms242910(en-US,VS.80).aspx. Am I right in understanding this Having one team project for two different products might make it difficult to manage. Is our choice to go with dll references for the common stuff and then ...Show All

  • SQL Server Maximum number of Conversation Timers?

    Is there an upper limit on the number of Conversation Timers We're using Conversation Timers to implement a retry mechanism for outbound web service calls. The idea is to use Service Broker to queue up a number of web service requests. If a web service call fails to contact it's target server, we would like to reschedule that request to retry after a few minutes delay. It appears that when we have a few thousand Conversation Timers queued up, SQL Server (June CTP) will crash, or at least cause a failover to it's mirror partner. TIA -- Keith. There is no hard limit on the number of conversations. However, c ...Show All

  • Visual Studio VS Help intergration- KIndex problem

    Hi, This is for the help index for our VSIP package. I am using VSHIK 2003. The Kindex.HxK file contains the following entries- <Keyword Term="Keyword1"> <Jump rl="Html/Htmpage1.htm"/> <Keyword Term="Subkeyword1"><Jump Url="Html/Htmpage1.htm#BABEIHDF"/> </Keyword> <Keyword Term="Subkeyword2"><Jump Url="Html/Htmpage1.htm"/></Keyword> </Keyword> The help project on compilation gives the following warning/info- Info: No parsing for topic 1682: /Html/Htmpage1.htm#BABEIHDF And on installing the help, the ...Show All

  • Windows Forms DataView problem after DataAdapter.Fill

    Hello, If a DataTable is refilled by DataAdapter.Fill() should a DataView on the table automatically reflect the new data in the table   It seems this is not happening in my code.  Do I need to recreate the DataView Thanks jmatt I apologize for the delay in responding. The problem turned out to be that an input parameter for the table's DataAd ...Show All

  • Windows Forms Is there a way to distinguish between designer and actual runtime?

    Hi all  I need to perform some designer specific customization, which should be shown only while at designer and not at runtime.  Therefore I need to distinguish between designer and actual runtime  Say, by using some kind of designer directive just like compiler directive   thanks  developer what kind of exceptions   i have used the DesignMode pro ...Show All

  • Visual Studio Express Editions Refer to a Biz Logic Class - VWD

    All, Any tips on how to add a business logic class to VWD Web Site   In VS you could add a class library but I can't seem to find a way to do this in VWD.  I simply have a class containing some methods that I would like to have access to in any one of the pages within the site.  Any info would be appreciated...Thanks! You should be able to do this by creating a folder called "App_Code" in the root of your web app and putting the class there.  Once you do that, the class is automatically available to all pages in that web.  VWD should also provide intell ...Show All

  • Windows Forms problem with printer trays

    hi i am have a problem with my application using the printer for getting printouts problem: i have an application developed in vb.net and a printer having three trays.when the user wants to get the printout from tray1 he should get it only from tray1 and not tray2 and tray 3 ,same is the case with tray2 and tray3.what is happening is the user sele ...Show All

  • Visual C++ Can and how do I extend an array of objects during run time?

    Hi, I created an array of objects, based on a class I created to hold data only, at the start of my program. During the run time, I may need to add an unknown number of additional objects to new data. Can I do this How can I increase an array of objects during run timge, one at a time as the need arises For exmaple: myClass aryObjects[10]; .............. How do I add to the aryObjects and make it a aryObjects[11] Thanks. Have you thought of using a linked list instead. That is to have the object contain a pointer to the next object that gets created at run time. Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server JOINS and Integers vs. Indexed "Strings".

    I was told that, when possible, use integer fields for the equality comparison in INNER JOINS. Today someone suggested that using character fields that are indexed should be just as efficient. What do you think TIA, barkingdog It is the size of the index key which is most important. The larger your index key is, the more pages should be processed (and probably read from the hard disk: this is the slowest operation) while executing query. And, of course, there are some overhead comparing to strings in terms of collation. So, integer field is more effective in most case ...Show All

  • Microsoft ISV Community Center Forums Assign Minimum and maximum values for a MSGraph

      Hi all, I want to assign values for minimum and maximum for all MScharts. For that am using the followind code in a loop. oGraph.Axes(xlValue).MinimumScale = 5000 oGraph.Axes(xlValue).MaximumScale = 15000 Here what is the problem is the values are assiged while execution the above instructions and again reassinged the old values for maximum and minimum. Please let me know this is happening Regards, Abhiram Hi Are you working with Charts or ChartObjects I appeared to get the same effect when I tried to modify the min and max for the Chart Sheets when I actually had ChartObjects embedded on Wo ...Show All

©2008 Software Development Network