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

Software Development Network >> Anatoly Porsev's Q&A profile

Anatoly Porsev

Member List

MJAIN
aminoplacid
yinmin
Charles Wysong
Mr. Furious
Dao
mandar17367
SreenivasRao.K
fhstsjt
PaulDevine
Brendan Comerford
DbHd
azayas48
Wybren Koelmans
tamir zaslavskt
Mark Tomlinson - MS
LaserGecko
dops141441
Jeppe Jespersen
PhoenixRises
Only Title

Anatoly Porsev's Q&A profile

  • .NET Development JAVA TomCat Web Services

    I can try to migrate an dotnet 1.1 web application under vs2005... In my application I use a java web services on tomcat 4.1. When I try to add a web references for this component in vs2005 I receive the following error: Unable to cast COM object of type 'System.__ComObject' to interface type 'EnvDTE.IVsExtensibility'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{3C536122-57B1-46DE-AB34-ACC524140093}' failed with HRESULT: 0x80004002 (Interfaccia non supportata. (Exception from HRESULT: 0x80004002 (E_NOINTERFACE))). What happen Thank's Hi Craig, Thanks for giving su ...Show All

  • Visual Studio Express Editions How do you databind a field in a FormView to a DrowpDownList?

    Does anyone know how to databind a field in a FormView to a DropDownList OUTSIDE the FormView I noticed there is an option to write a custom expression in the properties menu but I don't have any experience at writing expeirence in ASP.NET or C#. Thanks for any help!! ...Show All

  • Visual Studio Team System Getting list of builds using Object Model

    Can anyone tell me if it is possible, and if so how, to get a list of builds for a project using the object model. I've had a look through the documentation and can't find anything obvious. Thanks, Michael Hi Michael, You need to use the GetListOfBuilds() method on the BuildStore object, as follows: BuildStore store = ( BuildStore ) TeamFoundationServerFactory .GetServer(serverUrl).GetService( typeof ( BuildStore )); BuildData [] builds = store.GetListOfBuilds(teamProject, buildType); Although this will only give you the list for a given build type, so you're going to have to enumerate th ...Show All

  • Visual Studio Team System Test Results

      I want to produce a view of the current status of some manual tests in the test results window. I only want to see the latest status but I get previous test run results. This means I have different results for the same tests or the same tests with the same result. I'm trying trying to get the equivalent  of   the SQL key word "Distinct" for each test. Can anyone help Thank you.         Hello, The test results window has a "Select Run" combobox in its top part (in the toolbar), between the "Run Details" and "Run" buttons. Using this comb ...Show All

  • Visual C++ Visual Studio 2005 C++ program crashes on some XP machines but not others

    I compiled a simple C++ program with Visual Studio 2005 and it works on the winXP machine that i developed it on, but it crashes on another winXP machine that doesn't have Visual Studio 2005. I'm baffled because I statically linked my libraries so it's not depending on DLLs. The code is simple in the sense that it only uses ANSI C and std::string. here's my build string: /OUT:"D:\a\preproc\Release\preproc.exe" /INCREMENTAL:NO /NOLOGO /MANIFEST /MANIFESTFILE:"Release\preproc.exe.intermediate.manifest" /DEBUG /PDB:"d:\a\preproc\release\preproc.pdb" /SUBSYSTEM:CONSOLE /OPT:REF /OPT:ICF /LTCG /MACHINE:X86 / ...Show All

  • Visual Studio Team System How can I achive Continuous integration with VSTS?

    How can I achive Continuous integration with VSTS Please explain with example. Thanks. Check out the following links: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/ConIntTmFndBld.asp http://blogs.msdn.com/gautamg/archive/2006/05/02/588193.aspx ...Show All

  • SQL Server Sharepoint Services 2 sp2 and SQL 2005 Express

    If I upgrade my sharepoint Database from MSDE that comes with sharepoint, to SQL 2005 Express, will I lose my no limit on the Database size Normally MSDE has limit of 2GB but I guess it doesn't when installed with Sharepoint services. So if I upgrade to 2005 express, will I then get a 4 GB limit on size Thanks for your help Hi, as far as I know there is no custom SPPS SQL Server Express Version, so you will be forced down to 4GB database size. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • .NET Development Old style BarBreak?

    Anyone know of a way to implement the old style BarBreak menu item property I have been searching for a while and I'm pretty sure its right in front of my eyes. I hope. In case noone knows what I mean: The BarBreak property makes the menu appear on a new line, or column in the current dropdown. Try setting the the BarBreak property of the  MenuItem instances you are dealing with in order to acomplish this. ...Show All

  • Visual Basic Assigning to variables in a structure dynamically by using the field name in a string

    Hi, I have an issue where I need to be able to take value pairs i.e. fieldname and value - and assign them to the correct fields in a structure. e.g. structure X Field1 Field2 Field3 Field4 end structure Values "Field2", "xyx" "Field4","pqr1" So I need some method of assigning to the correct field in the structure - much like you can with recordsets i.e. rs.fields("<fieldname") = x. Is there a way to do this Regards Michael You can use reflection to do this. Your other option is to store values as a dictionar ...Show All

  • Visual Studio Express Editions How do you shut down computer from VB 2005

    I have tried every code that I could find and nothing seems to work.. Any suggesions on how to do this Link to a class to shutdown windows http://www.mentalis.org/soft/class.qpx id=7 ...Show All

  • Visual Studio 2008 (Pre-release) 3D samples in Windows SDK not modified for feb CTP

    The 3d samples in the Windows SDK are not modified to work with the lastest feb CTP. Just so you know... Yes, sorry. They will be updated with next release. A better forum to post this kind of feedback (about general WPF issues) is: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=119&SiteID=1 ...Show All

  • Visual Basic Using C++ routines in a VB.net project

    I am converting a VB6 project that relies on a few simple .DLL commands to get around VB's inability to work with unsigned integers. VBnet seems to have the same constraint. Considering the whole .net framework, is there a way that I can rewrite these routines as a VC++ .net library and then link them to my VBnet program  It would be nice to get rid of the .DLL dependency. JDeas I tried using UInt16 but the error checking detects the overflow and flags an error. After that the UInt16 no longer holds a valid value. If I could disable the overflow and get the UInt16 to work like it would in C then I would have a valid solution. ...Show All

  • Visual Studio Express Editions how to make stuff function?

    i am VERY new to vsc++ express and i am just learning. how do i make things function after they are draged onto the form, in other words i make a file menu and all the commands are there but when you click on say, exit nothing happens. or i create a button and click nothing. how do i assign function to the things i create in my form any help would be great! i hope i was clear Hi Magrute I'd seriously suggest you use the learning resources available at MSDN site to get an basic understanding of c++ winodws forms programming using the Express IDE. http://msdn.microsoft.com/vstudio/express ...Show All

  • Visual Studio Team System Is it Possible to Publish/Deploy Code After Team Build?

    Hi, I am looking for the possibility of deploying the built code into a QA server.  Team system places the release artifacts in a network share.  Can the team system pick up the code from this network share and make the deployment in a specified network location/ftp site   Also I need to send a notification to the QA team at the end of this process. You may use TeamBuild extensibility and accomplish this:   1.                   Implement an msbuild custom task for deploying the binaries from drop location. Please refer htt ...Show All

  • Visual Studio 2008 (Pre-release) Feb CTP, documentation not updated, no config intellisense

    Just so you know, i have installed the last bits and unfortunately although the various samples in the SDK are reflecting the API changes, the documentation is not updated. At least not the topic i looked for. (federation) Also, it appears that there is no intellisense in WCF configuration files. The "List members" doesn't work. In fact it never worked for me even with the Jan CTP. Is that normal -Jonathan Hi Jonathan, I dont know if this is your case, but I suffered the missing intellisense for WCF config files in the Jan CTP. Just after installing it, intellisense was working like a charm. ...Show All

©2008 Software Development Network