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

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

TheAgent

Member List

SankaraNarayanan Nagalingam
rexisfed
Dale17677
Shirvo
KluchCode
Spanglishone
Gary7
Boulderdude
S10n
theTroll527
mtm81
Marshes
aybe
Hussain Saffar
lsb_lsb
limssd
DarthCoder
Kunal Yadav
Terry Wang
Rezzie
Only Title

TheAgent's Q&A profile

  • Visual Studio Team System Unreferenced component WebtestFramework

    Warning 1 The referenced component 'Microsoft.VisualStudio.QualityTools.WebTestFramework' could not be found. I have tried re-installing VSTS, but am seeing this when I try to build a project with a web test plug-in. While this worked at one time, I cannot say when it started failing. Thanks, Tom Uninstalling VSTS and .Net 2.0 framework, then re-installing them did not work. I tried manually re-installing into the GAC (see below) but they still do not work. It lists the assembly in VSTS when I try add refernce .Net, but it then shows up under references with a yellow alert, and when I try to build I get the same error. C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemb ...Show All

  • SQL Server JDBC Integrated Security problem

    Hi, I am using the latest 6/26 JDBC driver to connect to sql server 2000 server. My url is jdbc:sqlserver://hostname:1433;integratedSecurity=true;. I was getting the following errors "Invalid integratedSecurity property value:true". Any suggestion to resolve this problem. Thanks. Angel, You mentioned "For Windows platforms you can get arround this limitation by using impersonation before creating a connection so that you connect with the NT domain information that you select." from you early response. Do you know how to implement impersonation Any code sample or reference document Thanks again. ...Show All

  • .NET Development Cannot use designer in Visual Studio 2005 ASPX page

    Good morning. I am currently unable to use the visual designer when editing my aspx pages in Visual Studio 2005. Two days ago I was able to see the controls on my page (which uses a master page) and edit controls, but now everything is greyed out and I am unable to work with any controls visually, I must now type in everything in the markup. Does anyone know what the cause might be I am not the only one who has this issue and some of the people are working on different solutions. Thank you, Kelly One of the Visual Studio forums ( http://forums.asp.net/default.aspx GroupID=35 ) at fourms.asp.net will be better able to answer this question. Thanks. ...Show All

  • Visual C++ CDataBase Connection Status Checking

    hi there, I just want to check the Connection status (is open or not) of CDataBase object in a thread.When I realise that it is closed,I want to connect to database again.I used Isopen method of CDataBase,but when I close the connection to database,isopen method still returns me true...Another way you recommend me to check the Cdatabase object connection status You can call IsOpen( ) function of CDataBase object to know the connection status . See MSDN for more information ...Show All

  • Visual C# converts a char into a string

    Hi All,   How would I convert this string bleh = "hello world"; inputString = "r" if (bleh == inputString) { blah = inputString; } The error message I get is Error 1 Operator '==' cannot be applied to operands of type 'char' and 'string'    Much help appreciated   Sorry, Need to explain a bit further, The input string comes from inputString = Console .ReadLine() ; How would you convert this to a char, Many Thanks ...Show All

  • SQL Server SQL Server 2000 Maintenance

    Hi Dear Friends I have the sql server2000 that I have installed it on the windows server 2000 My server has 4 GB of RAM but i now can use only 2 GB of RAM. How can i adjust the server for using total of RAM. Best Regards Ahmadreza. Hi, Which version of SQL Server you are running ! If it is standard edition you can use maximum 2 GB of RAM and if it is Enterprise Edition you will have to use PAE or AWE swith in your BOOT.INI , refer Maximum Capacity Specification in BOL for more. Refer this KB for more details http://support.microsoft.com/kb/274750/ Hemantgiri S. Goswami ...Show All

  • Windows Forms Keys Enumeration for ">" or "." at letter's part

    Keys .Decimal is for numeric part. Help me, please. ...Show All

  • .NET Development I don't have initializeData attribute for the <add> element

    Hi, I use vs 2005. I try to add a listener to the listeners collection in the web.config(or app.config) file . I try this example from vs help : <configuration>    <system.diagnostics>       <trace autoflush="true" indentsize="0">          <listeners>             <add name="myListener" type="System.Diagnostics. TextWriterTraceListener , system version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" initializeData ="c:\myListener.log" />          </listeners>       </trace> & ...Show All

  • Gadgets Can't get xml back from Amazon Web Service?

    I can put the feed url in the browser and all is well, but I can't seem to get a response using the code below function GetFeed() { var r = Web.Network.createRequest( Web.Network.Type.XML, m_feedUrl, {proxy:"generic", numItems:m_numItems}, OnFeedReceived); r.execute(); } Is the m_feedUrl just too long maybe http://webservices.amazon.com/onca/xml Service=AWSECommerceService&Version=2006-06-07&AWSAccessKeyId=1CE7SK4ZPTNDQZCWBP82&Operation=ListLookup&ListType=WishList&ListId=241KH7V8OZ7EQ&Sort=DateAdded&ResponseGroup=ListItems Any help would be greatly appreciated! Addressing a few points: selectNodes() returns an array of XmlNode elements, wh ...Show All

  • SQL Server how stored procedures return multiple result sets?

    hi i read that stored procedures can return multiple result sets how is that thanks in advance. Returning multiple result sets You can have multiple queries inside a single sproc, as shown in the following sproc code: ALTER PROCEDURE MultipleResultSets AS Select * from Products; Select * from Customers; hth Barry Andrew ...Show All

  • .NET Development passing SOAP parameters to a WebService from Firefox

    Hey all, I've got a web service running that expects 5 parameters from the client. I can pass the parameters through just fine using IE, but I'm not having any luck in FireFox. In IE I'm building the soap envelope as a string and doing an xmlHttp.send. I was initially having a problem here with the parameters not being received, but was able to solve that by including " xmlns="" " within the parameter node (i.e. <name xmlns="">value</name>). The problem I'm running into with Firefox is that I don't seem to be able to attach an empty xmlns value to the node. Without that my parameters are not being received. Is there a way to alter the service/WSDL to not require the empty xmlns attribute, or, alter ...Show All

  • Windows Forms copying and moving c# windows form in visual studio 2005

    Dear All, I have a question say I have done a C# windows form then I want to make another new form which is similar to my earlier form with slight changes. So I want to copy my original form and make changes to it. How can I do it in visual studio 2005. This because when I copy and paste my original name of my class remains there. So how to do this type of copy My another question is that I have 2 different visual studio project. So I want to copy one windows form from project1 to project2. So how can I do this Thanks. I have a question say I have done a C# windows form then I want to make another new form which is similar to my earlier form with slight changes. So I want to copy my original f ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Pixel Perfect Collision, working...kinda

    So I spent the night working up a way to do pixel perfect. Here is what I'm doing. Sudo. Init spite with texture Int32[,] = new Int32[texture.width,texture.height]; I then scan the texture data using GetData<Int32> and load in into the two-dimensional array above. So now I have these two arrays filled with the values from the texture, they come out like 16777215, -16711936 which is where my first question comes in. If i'm grabbing this data from GetData as an Int32(any other thing I can grab it as ) how can I tell what this color is, what do these numbers mean Anyways, from trial and error I figured out 16777215 was transparent so now I made a big *** loop to go through the two sprites and check to see if any pixels are both not tra ...Show All

  • Visual Studio Express Editions Web Browser Creation Problems

    Hi, I have a question, when I'm following the tutorial for creating a Application which per the instructions name Web Browser. Here is the problem that I encounter, I follow ALL the steps and when I hit F5 to run the code it runs "successful" however when my Browser pops up and I select one the URL's that I have entered during the creation phase. Nothing happens. No Homepage or websites that I inputted in the Application. Is there something that I'm doing incorrectly Please advise and thanks in advance!! double click the combobox on the form designer, this will take you/create you the selectedIndexChanged event you could also, for your reference, select the control in designer ...Show All

  • Windows Live Developer Forums Virtual Earth and Internationalization

    Can anyone tell me if VE can be internationalized...basically, can you get the maps to generate in different languages Do you happen to have a Microsoft website source I can give to my boss verifying this Thanks, Michael ...Show All

©2008 Software Development Network