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

Software Development Network >> VS Team System

VS Team System

New Question

Downloading & Installing 'Microsoft Platform SDK (R2) Installation'
TFS RC on Domain Controller
command line "get"
Save a picturebox image as jpg
Visual Basic 2005 Express
Limitations of Visual C++ Express Edition
Update/Edit DataGridView
Failed to save WI Bug in specifik transition
Suggestion: Selectively deploy objects
Format as zero if a Textbox is empty

Top Answerers

JGP
Peter De
stallion_alpa
ImagineNation
Tom_Liu
atirado
Ahmed Fetouh
Opoc
ToddOs
Shawnk
sitemap
Only Title

Answer Questions

  • Vlastimil Application to generate MS 2007 Excel document?

    how a C++ application can generate the MS 2007 Excel file For example... if I had a form with text box and a button on it. When the button is clicked, program make a new MS Excel document that has a cell table with the text box value in cell, and save this Excel file to the current directory Thanks. Thanks you =) but need solution for MS Office 2007 and i found it in VB MSDN =) hello Re: Application to generate MS 2007 Excel document look at this article: Creating an Excel Spreadsheet and Adding Data to It Programmatically , it use c# in sample code, but i believe c++ can make the same thing. thanks rico ...Show All

  • Stoj Hide message in an .exe file

    Hi, I need your help. How to add 16 byte or 32 byte string in .exe (.NET Assembly) file Even if i add message in an .exe file, the .exe file should work properly. Is there any way to add and extract message from/in .exe file Please send your suggestion or links. Thanx. M. GANESAN You can add string resources into .NET Assemblies. In Visual C# Express, right click the project name in Solution Explorer, select Properties, and go to Resources tab. Or in Solution Explorer, double click the auto-generated Resources.resx file (or similar). A resource editor should open. Then you can add resources; images, strings, files etc... In runtime, you can get the resources from Resources-class. (It is something like global::<Y ...Show All

  • jschroeder Office integration throws Assertion error when we export from TFS

    For some unknown reason we are now getting an" Assertion Failed" error when we attempt to export our tasks from a specific TFS project (rt+click on work items and choose "Add work items with Microsoft Excel" or project) or connect to TFS from our existing MS Project that used to previously synchronize with this project. The error says "Rule 6824 refers to a non-existing field." at WitExporter.FindaddTargetElement(PSRuleMetadataRecord* pRule) .... etc(more not listed here)... Anybody ever seen this before As far as I know my colleague and I have done nothing to the schema or rules for this project. (He had updated some rules on a different project.) I'm looking in the obvious places of the task and b ...Show All

  • Tomarn Create error log text file

    How do you go about creating an error log from a text file, then once the file is made, write back to that file if another error is caught I can take care of the Try,Catch statements, but I need a little help creating the file in a desirable location, then if it exists when another error is generated, find the file and add to it. The location would be a shared file, do you think there would be any share violations from a file that was created remotely I thought of using a db file but, if there are network issues, that wouldnt be good since this app will be shared across a network. Davids Learning actually it is better to use the FileStream and wrap it in a StreamWriter as it acts as a bu ...Show All

  • anirudhj database tables doesn't update

    Hi. I have few tables in my database and they don't want to update. I changed database property "copy to output directory" to copy if newer. Then after I'm inserting data in my database everything works but changes doesn't show in the tables. Below u can see part of my code, I'm using Insert, Fill and Update. I can compile program over and over again and changes stay but when I open "Show table data" everything is going back to beginning. What should I do Dim datasave1 As New MaintenanceDatabaseDataSetTableAdapters.EmployeeTableTableAdapter Private Sub Add_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click firstname = TextBox1.Text lastname = TextBox2. ...Show All

  • Okugops Looking for the best way to add an event-handler to an existing web part

    Hi all, I'm looking for the best way to add an event-handler to an existing web part. I'm actually trying to assign a string to a read-only field in a SharePoint issues list without having to re-create the issues list from scratch. Any thoughts or suggestions Frank You may want to check out the Sharepoint Forums here http://www.microsoft.com/sharepoint/community.mspx a quick search on live.com produced a Windows Sharepoint Services Toolkit which *may* help. http://www.microsoft.com/downloads/details.aspx familyid=4B2C2F1B-D74A-482A-903A-45BB44C5DEC4&displaylang=en ...Show All

  • Landon Parks Messages From site

    Hi All, Does anyone have anyideas on how to display latest news from a website into a vb.net app basicly I want to keep people updated when a new playlist is availiable etc. ive looked at rss, but dont need loadsa catagories etc. Is it possible to display a txt file on a server for example in an app Hope someone can help, Stuart thank you for your help stuart no worries, glad I could help! :-) "you can use SQL Express and enable remote connections, then directly connect to it and retrieve the playlist or whatever (same way I used webservices but without webservices) however there will maybe some security issues." Is it possible for so ...Show All

  • Preeteesh Change types of work items?

    How would I change a project so the types of work items are : Defect, Enhancement, Requirement and Task Instead of the default I got like Bug, scenario, etc. Thanks Hello, You need to change the Process Template used to create the Project to customize it to your need. By default the project is creaated based on Agile Process Template. More information available here http://msdn2.microsoft.com/en-us/library/ms194945(VS.80).aspx , http://msdn2.microsoft.com/en-us/library/ms243849(VS.80).aspx Hope it helps, Thanks, I'll have a look ...Show All

  • Jon Watte C# winFrom, show output ?

    about C# express, 1. how to show multiple projects at same time Now, sounds like we could only open one project. 2. winForm , how to show console ouput for example, in a button event, I write cosole.writeline("dddddd"); when I "start without debugging", I can't see the output. It should have some settings. Thanks. You are very nice. Thanks. correct :-) 2) Console output is put in the debugger - to show the Console output, you need to make your application /output type into a Console application: right click project > properties look for "output type" and set to "Console Application". your application will now also lau ...Show All

  • Gpg Why enumeration?

    Hey guys, thanks in advanced. I am reading through a beginners C# book and it cover enumeration, but yeah in great detail as far as why to use it. Can someone explain why you would need or want to use enumeration over another option. And what are other options if there are Thanks a ton. Hello All. Anil: Yep, you can, if you don't mind casting them to (int) every time. See this topic for a discussion about that very thing. If you don't need the collection to be a strong type, and you only want the integer value, then you can use named integer constants, unless you don't mind the type casting. HTH. On the topic of casting enumerations, does this have any impact on performance For an ex ...Show All

  • Armanchos Fundamental doubts on DLLs and Lib files on Windows

    Hi, I am a Solaris developer trying to port an application to windows using Visual C++ Express Edition and SDK. The application can be briefed as a module for Apache 2.2. The output I want is a DLL which has a function which will be called by a module in Apache. I have a core set of files which I compile to a static library A.lib. Then I have another set of business logic which uses A.lib and the output is B.lib. Around B.lib I have a set if interface methods which I want to publish as exported function in a shared library say C.dll. When I build I get the size of A.lib < B.lib. I want total logic as a single DLL C.dll and expect it bigger than both A.lib and Blib. But the size is A.lib around 5 MB, B'lib around 4 ...Show All

  • Paul Stringer Recreate Project Portal Site

    Is there a way to recreate a TFS project WSS site We migrated from B3R to RC and the WSS portion was not migrated correctly and all of our backups are gone at this point. I would like to get just a blank one set up that the project will use going forward. Thanks, I also don't mind creating a new project and moving the source control over to it, if there is a way to do that.  It looks like a branch/merge might work, but I want to verify before attempting this... Hi Jiffy, Have you found a solution to your issue If you still need help, I will find the appropriate person to provide it. Thanks. Hi, The best way to get help for this is to start a new thread explaining your issue. Doing s ...Show All

  • Abdul Aziz Using Team Foundation Server with Adobe DreamWeaver

    Can someone please let me know if it is possible to use Team Foundation Server with the Adobe Dreamweaver IDE I know there are plugins for Eclipse. I was wondering if there were any for this product. Thanks in advance. Hi Michal Yes I belive it does there is an option for Visual Source Safe when you setup a remote site. I do not see one for Team Foundation server. I am a little confused on the MSSCCI provider. Any help or references would be great. - Aaron Aaron, do you know if Adobe Dreamweaver supports the Msscci specification Does it integrate with Visual SourceSafe If yes, than we have Team Foundation Server Msscci Provider. As far as I understan ...Show All

  • Sutha Thiru Calculation formulas

    In my wee banking database I have the expected three columns ie: deposit, withdrawal and balance. I have never used formulas before in excell, programming or anything and after searching on the web for the last two days to find out about them I am at my wits end. Could somebody please explain how to get these columns to add/delete and update the balance column. and where/how to put the code. Do I use the Formulas property in the database property for the balance column if so what do I type. Im desperate to make this part work so any help would be great. Diane This is what i use to do something similar. On a form i have a datagridview with my table, the table is in the (datagridview). ...Show All

  • bobby_macnair Can you copy the CA Rules from one Team Project to another Team Project.

    Can anyone tell me if it is possible to copy the CA Rules from one Team Project to another Team Project. Also, it is possible to export CA Rules from a Team Project Done! Oops, I gleamed right over the whole "Team Project to Team Project" part. Sorry, my bad. I don't know of any method for doing this at the moment. I'm trying to find out if you can copy the CA Rules from one TEAM PROJECT to another TEAM PROJECT. Not from a TEAM PROJECT to a project. I'll look into the vbproj (<CodeAnalysisRules> node). Thanks. If you are using Team Foundation Server, you can (sort of) copy the Code Analysis ...Show All

808182838485868788899091929394959697

©2008 Software Development Network

powered by phorum