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

Software Development Network >> Sushant Raut's Q&A profile

Sushant Raut

Member List

Kyle Reed
Tamas Pocker
LirarenL
lovealotnana
databaas
aprivate
Merlijn van Noppen
David Rudd
Samir Bolton
Matt_991
Friedrich49886
_StevenB_
Iliya
qtPA2t Lauren
Mark Idea
Rich Preston
lvsund
Dan D9182
adamlane
Kaligaclark
Only Title

Sushant Raut's Q&A profile

  • Visual Studio Team System RequestEnumeratorException when running a load test through VSTS

    When I'm running a loadtest containing multiple webtests, the following exception is generated: RequestEnumeratorException Exception occurred: The given key was not present in the dictionary. Error Stack Trace is given below: at Microsoft.VisualStudio.TestTools.WebTesting.ThreadedWebTest.<GetRequestEnumerator>d__0.MoveNext() at Microsoft.VisualStudio.TestTools.WebStress.WebTestCaseVariation.ExecuteNextTopLevelRequest() Please help me. Why this exception is generated and how it will be resolved Thanks. It sounds like your test is trying to access something in the web test context that i ...Show All

  • Windows Forms detect when a row is being added in a datagrid control

    I have a datatable that bind a datagrid.  I would like to detect when a new row is added, so I can set the value of some fields before user edit these. Here is how to hook into the event that fires when you down arrow in the datagrid. You must be databound to the DefaultView (grid.DataSource=table.DefaultView) // hook into new ro ...Show All

  • .NET Development How to passing parameter from wsdl to .exe file?

    i have tried fix this problem about few days..but not successfull. I got "the request failed with HTTP 405: Method not allowed" error. I want to pass parameter from my client to the web services. I have done my web service by c languange (test.exe). so i want to pass my parameter from wsdl to test.exe. so i have code my soap location address to test.exe file : "http:localhost/test/debug/test.exe". this is my wsdl file:- < xml version ="1.0" encoding ="utf-8" > < definitions xmlns : s ="http://www.w3.org/2001/XMLSchema" xmlns : http ="http://schemas.xm ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problems with Sprite.Draw2D & October SDK

    Hi, I replaced my Direct3DX reference (1.0.2906.0) with the latest version included in the October SDK (1.0.2908.0). However, when I now compile, my code fails with "Overload resolution failed because no accessible 'Draw2D' can be called with these arguments:" Sprite.Draw2D(Texture, Rectangle, Rectange, Point, Color) The "dxreadme.htm" states that the D3DX dll is unchanged from the August version. So what is this 1.0.2908 I have gone back to the 1.0.2906 dll and all is fine again. Can someone explain what I am doing wrong please. Thanks, Jim Hi I found that out too. Using the 3D Draw it seems setting Z ...Show All

  • Visual C# back to the line error after error occurred

    I'need back to the line error after error occurred in my program You need an inner while loop and your catch needs to reconnect. The while loop needs to be on the line that you're trying, so you can keep trying it until it succeeds. ...Show All

  • .NET Development Assorted warnings and error messages.

    Do this in production VS 2005 Pro. 1. Creat a new data set and add an element. Save. 2. View the xsd file in the XML editor. ( I know I know I shouldn't fiddle with what's under the hood, but ...:-) You now get a warning: The attribute 'SchemaSerializationMode' is not declared. And a whole bunch of errors like: Could not find schema information for the attribute 'urn:shemas-microsoft-com.xml-msprop:Generator_RowClassName'. where the piece after msprop varies greatly. So what gives and how can we clean this up As near as I can tell the missing pieces are not included in the relevant schema files. It obviously doesn't matt ...Show All

  • Visual C# Pop up property grid

    hi I have an application where i can draw objects like rectangle,circle,etc. I am displaying the properties of the objects in property grid. I want to pop up the property grid as soon as i complete drawing a particular object i.e in mouse up event.This popped up grid should have the facility to be made dockable or floating. any suggestions how to implement this in c#2005 i cant see any way to add property grid to the toolstrip.it is allowing me to add only the 8 controls defined in its list.is there any way to addthe property grid to it or any other suggestions ...Show All

  • Visual Studio Problem running program from MSBuild Task

    I am trying to run a program from a task defined as follows: <Target Name="RunProgram"> <Exec Command="Creating DataSource.exe" ContinueOnError="false"/> </Target> When I issue the command msbuild RunExec.proj /t:RunProgram I get the following error Target RunProgram: Creating DataSource.exe 'Creating' is not recognized as an internal or external command, operable program or batch file. MSBUILD : warning MSB3073: The command "Creating DataSource.exe" exited with code 9009. I believe it is complaining about the space in file na ...Show All

  • Visual Studio 2008 (Pre-release) serviceType information

    Why is the serviceType specified to the WCF infrastructure in two places a) ServiceHost creation - constructor parameter b) An attribute of the service element in the config Am i missing something very basic here -Sendhil this is another example of declarative vs imperative... the infrastructure gives you the flexibility either to host the service declaratively, through IIS, for example, or host the service programmatically David Pallmann's book "Programming Indigo" has more on this, see http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnlong/html/progindigoch3.asp ...Show All

  • Windows Forms Multiline inputbox in propertygrid

    Is it posible to have "inputbox" that looks like a multiline textbox in the Propertygrid control Want to have users input a long text string into this control. But it's not verry user friendly when i use the standard control with only single line inputboxes. I've uploaded a sample UITypeEditor that does just what you need.  Its in&nbs ...Show All

  • Windows Forms add customized combo box in datagridview

    i have my customized combo box found in the other site. i need this to add in dfatagrid view the combox box have multiple columns which i find it suitable for me.for now, the problem is aading it in datagridview heres the my code public class mycombo inherits datagridviewcomboboxcolumn public withevents columncombobox as mtgccombobox ---this mtgccombobox is mycombobox found on the other site ........ end class then in datagrid when form loads dim col as new mycombo datagridview1.columns.add(col) --- the combox box shows but the data inside combo box does not show any missing code in my c ...Show All

  • .NET Development single transaction between different methods

    I need to run a single transaction on the single database (sql 2005) between several methods (.net 2.0, c#). I made required preparations: cn.Open(); // connection SqlCommand mySqlCommand = cn.CreateCommand(); SqlTransaction mySqlTransaction = cn.BeginTransaction(); mySqlCommand.Transaction = mySqlTransaction; mySqlCommand.Connection = cn; then I tried to pass to each method open connection (cn) and sqlcommand, but at some point (when I tried to delete something using mySqlCommand.ExecuteNonQuery(); ) I ran into the situation when system says that open datareader (it's true according to system business log ...Show All

  • Windows Forms Shortcut in controls other then menuitem

    Is it possible   I know you can use something like this my&Item (Alt I) But i want to asign functies keys in stead of Alt-letter combinations. Just like as in menuItems Remco ok tnx ...Show All

  • SQL Server Error while registering assembly that uses ActiveX wrapper stdole

                   > Hi, > > I wrote a dummy Stored Procedure in C#, registered it as assembly, > called the SP and everthing was fine (VS2005 C# Express) > Then I implemeted functionality into the dummy SP that requires a > third party ActiveX. It is integrated in my project by the reference > to "stdole". After compiling, I got three DLL: > > a.dll - with the dummy SP (compiled with strong name) > b.dll - the third party OCX > stdole.dll - system > > Now, I have problems registering that stuff. a requires b. b requires > ...Show All

  • SQL Server Splitting a field with \

    Hi all I have a column in the users table which has a \ separating the data: i.e. mainserver\johnsmith south\johnsmith west\johnsmith I need to create a column with the data after \ Thanks in advance And a 3rd ;-) SELECT RIGHT(SomeField,(CHARINDEX('\',REVERSE(SomeField)))-1) from #Test Denis the SQL Menace http://sqlservercode.blogspot.com/ ...Show All

©2008 Software Development Network