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

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

Cobra300

Member List

chenzhu
xLiNkx
connect2sandeep
Umut Alev - MSFT
bdonnelly
ChrisRichardson
Keith Brown
Azin
Javier Carvajal
Peter House
gul_111111
SlEasy
Allen Jones
Takado
Carlos90210
sflouise
MikeH2005
sk_vel
redocdlab
ToroLocoMex
Only Title

Cobra300's Q&A profile

  • Visual Studio Team System How to assign more then one guy to single item?

    In Microsoft Project I can assign as many resorces to one single task as I want. But wen I try to publish this kind of task to TFS then I get an error that "Assigned To" property has invalid value. If I change it and assigne only one developer then everything is ok. As far as I know, you can only assign a work item to one individual at a time. You might want to break up a work item into multiple work items that would be a small enough unit of work for only one individual to work on. ...Show All

  • Visual C++ Renaming a form

    Hello I create a new project using Visual C++ 2005 Beta 2 (CLR : Windows Forms Application) I obtain a form named "form1" I want to rename it "main". The problem is that I obtain this message "the project is out of date" How can I resolve this problem Thanks I must be doing somthing wrong. Whenever I rename form1 I have to go through all of the source files and replace the "form1" string with whatever I renamed it to. There has to be an easier way. ...Show All

  • SQL Server MS SQL Server 2005 Express Edition and Reporting Services

    Hi, Is it possible to use third party controls for reporting services, such as Dundas Chart for Reporting Services, in MS SQL Server 2005 Express Edition Thank you in advance. Goran ...Show All

  • Windows Forms 4 Problems need fixing ASAP

    1. Drop down lists in the property editor of events available, IList items etc. are not alphabetized. They should be. IT's a major pain in the ass to have to search and search through a list of possibly hundreds looking for one entry. 2. If you have a form that uses visual inheritence the property grid in event listing mode (C#) doesn't list  ...Show All

  • Visual Studio Team System Team Development with Visual Studio .NET and Visual SourceSafe

    Hi! Does anybody know any updated version of a guide like 'Team Development with Visual Studio .NET and Visual SourceSafe' of MSDN (http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnbda/html/tdlg_rm.asp) This guide was written in 2002 and some things seam to be out of date (for instance a web project can also be access throught the file system with VS2005) Thanks Dimitris This might be a good post for the VSS forum: http://forums.microsoft.com/msdn/ShowForum.aspx ForumID=50 ...Show All

  • Software Development for Windows Vista How do I have my app update itself if it can't write to the installation folder?

    I have an app I sell that presently is designed to update itself when a new version is available and the user opts to update. My approach is simple. I install two programs: MyApp.exe and MyAppUpdater.exe. When MyApp needs to be updated it starts up MyAppUpdater and shuts down. MyAppUpdater downloads a new version of MyApp saving it to the installation folder as MyApp.tmp. It then verifies that the entire app was successfully downloaded and if so deletes the old MyApp.exe and renames MyApp.tmp to MyApp.exe. Works fine and saves my users from having to download the entire installer, uninstall and reinstall. If I understand correctly it look ...Show All

  • Visual C# ListView.View=List property and owner-drawing within ListView items.

    Requirement: Currently, I have a requirement to present grouped lists of information in an optimized amount of space with the least amount if any scrolling potential. The item presented has a number of subitems hence the need for a ListView or DataGridView control. Items must be highlighted and selectable across all columns of visible data in each item-row. Horizontal and vertical scrolling must be avoided as much as possible. Problem Issue: I am aware that ListViews can select and entire row-item across all columns. However, to avoid vertical scrolling at some point, I must wrap to and create a new column of items. One possible ap ...Show All

  • SQL Server Update SSIS package in SQL Server Management Studio to reflect recent changes

    What's the easiest way to update an SSIS package that you have already imported into Management Studio after you've changed and saved your package in VS afterwards   I don't see an update option in VS or MS or something to allow me to move any changes I've made to that package into Management Studio.  When I execute the package from MS, it doesn't reflect my latest updates in VS to that package. I figure there must be a way rather than have to reimport it back in manually to MS. If you have imported a package to a server, it creates another copy at the server. The changes you make on the local copy on your file system ...Show All

  • Visual Studio DSL Toolkit and VSIP License?

    Will it always be required for DSL creators to have a VSIP license, and if so, what level of VSIP will be required Thanks in advance Doug Holland The DSLToolkit produces a VSIP package and you will need a package load key to distribute your DSL created package. The good news is that the package load key is free. See www.vsipdev.com for information on the VSIP program. See http://msdn.microsoft.com/vstudio/extend/vsipoverview/  for the details on joining VSIP. ...Show All

  • Visual Studio Express Editions Registration Benefits

    Where can I download the promissed e-books I can download the stockphotos, icons and two components, but not the promissed e-books. Does anybody else already got it I downloaded MicrosoftR Visual Basic 2005 Express Edition: Build a Program Now!, an e-book in PDF-format, from the Visual Studio 2005 Registration Benefits Portal that the "Thank you for registering" e-mail pointed to. If you tried that too but failed, you may have to install the special Microsoft File Transfer Manager first. ...Show All

  • Visual C# buttons

    how do i have it so a button when clicked goes to a website Hi, Do you mean mark as i declare If so: <datatype> <variablename>; eg int var = 0; myClass c = new myClass(); string myString = "Paul June A. Domag"; As you can see its pretty much similar to C++. cheers, Paul June A. Domag ...Show All

  • Visual Studio Tools for Office Typed Dataset from Excel

    Hello, I need to create a typed dataset from a excel file and I must use the .NET Framework Data Provider for OLE DB. The Data Source Configuration Wizard reports an error on the last step, in which I'm supposed to choose the table from the file's structure. Error Text: An error occurred while retrieving the informartion from the database. Operation is not supported for this type of object. This is the connection string from the Wizard: Provider=Microsoft.Jet.OLEDB.4.0;Data Source="file.xls";Persist Security Info=False;Extended Properties="Excel 8.0" Is it a bug or is not really supported Is there a workaround I tried ODBC Provider and ...Show All

  • .NET Development OnLoad or some initialization for webservices

    I expose a few webmethods. I wish to pre-initialize data BEFORE anyone calls the webmethods. Some initialization needs to be done, some stuff thrown in cache, etc. In a Windows app, I have OnLoad, in a website I have Application_Start in the Global.asax but what can one do when JUST webmethods. Is there some other 'place' I can initialize my data BEFORE any webmethods are called You can use the WebService construtor to run initialization code: [ WebService (Namespace = "http://tempuri.org/" )] [ WebServiceBinding (ConformsTo = WsiProfiles .BasicProfile1_1)] publ ...Show All

  • Visual Basic How do I share variables in between subs and forms?

    I know this is a really nooby question but I cant figure it out. I've been using lable.text to hold variables so far but I know that work work in multiform applications. Help plz. event sample: http://msdn2.microsoft.com/en-us/library/y5b57dk2.aspx   [edit]Global Variable sample: Module Module1 Public GlobalVar1 as String End Module Public Form Form1 Public Sub SetVar GlobalVar1 = "Test" end Sub end form Public Form Form2 Private Var1 as string Public Sub GetVar Var1 = GlobalVar1 end Sub End Form   ...Show All

  • .NET Development Memory Leaks in VB.NET

    How do you detect memory leaks (if there are any) in VB.NET windows application I have a medium complex VB.NET application, when it runs, the memory usage at the Windows Task Manager keeps increasing for the application even without any activity. Simply by switching to the application keeps the memory usage increase Any help is really appreciated. Hi Chris. I mentioned my thoughts on this when I was in Seattle, but I didn't actually meet the DX team.  I've also written online articles on the subject.  The book I have on MDX is apparently written by a member of the team, a ...Show All

©2008 Software Development Network