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

Software Development Network >> Sarang-Sarang's Q&A profile

Sarang-Sarang

Member List

Damodar
Kanaan
JardaJ
SimDim
Furikazashi
sassabrassa
>rik<
Peter Homberger
Jon Skeet
hseb
Marcin2k
Luis Bonilla
Trev Hunter
QUT lecturer
John961
bettermanlamia
Jason Rawlins
GreatC
Lant
Sand
Only Title

Sarang-Sarang's Q&A profile

  • Visual Studio 2008 (Pre-release) What happened to ServiceHost.Throttle

    The title says it all really.  The ServiceHost generic used to have a property named Throttle which allowed setting of no. of concurrent threads and so on, but this has now disappeared/moved. Anyone know where it went David David, I've posted a rough draft of the reference documentation for ServiceThrottlingBehavior at http://blogs.msdn.com/ralph.squillace/archive/2005/12/12/502887.aspx . Any errors, let me know. :-) I'll update the post as information becomes available. ...Show All

  • Visual Studio Team System Sharepoint Permissions default settings from VSTS

    When you set up VSTS, Sharepoint automatically works for anyone with Contributor rights...if you create your own group, you need to then manually add them to Sharepoint...that makes sense...however, I want to take away rights from part of the Sharepoint directory structure from Contributors and only allow architects to see the content...any ideas I believe that you can set the access permissions on folders in a sharepoint site, such that in your case only members of the Architects group can have access. Does this help   ...Show All

  • SQL Server .NET 64-bit and .NET 32-bit Framework on a Win 2003 server x64: which aspnet_regsql wizard is recommended?

    Hi everybody, I installed on an Win 2003 server x64 .NET 64-bit framework (beta 2.0.50215). After that I installed VS2005 beta 2 (2.0.50215) and SQL2005 (VS 2005 Beta Experience Kit). No problem are visible. Two .NET frameworks are installed, ...\Microsoft.NET\Framework\v20.0.50215 and ...\Microsoft.NET\Framework64\v20.0.50215. What aspnet_regsql wizard is recommended to use to configure a SQL Server database that stores information for ASP.NET applications services Thanks for replies... I guess it would be better to post this on ASP.NET forums. This forum is for answering questions related to CLR Integratio ...Show All

  • Visual C# Event Based Async Pattern Problem

    HI I doesnt seem this pattern cancelling the underlying async thread any idea..... Well one must has to exit the underlying operation by exiting its loop or what ever its doing inside. it must be done explicitly .The pattern only supports for providing event when the current async thread of the operation is either cancelled or completed. Thanks ...Show All

  • Visual Studio VS 2005 Beta 2 - "Beta period Expired"

    I am trying to install the second beta of Visual Studio 2005 from the MSDN discs ordered from MS.  After following the instructions for uninstalling VS.2005 Beta 1, I sucessfully completed the install of beta 2. However, when running Visual Studio 2005 beta 2, I get the error message "The beta period has now expired". Does anyone know what I have done wrong in the uninstall process of Beta 1 or how to get beta 2 to recognise this is a new beta Thanks Do you have a stack dump or an error message when Beta 2 crashes If you do, I can get the right folks to take a look. And there won't be a Beta 3 :) ...Show All

  • SQL Server Error rendering sub-reports

    I have a report (ReportA) that is a matrix showing monthly figures for 1 of 20 different items (think of monthly sales figures for 20 different products).  In order to obtain a report for all 20 items, it is necessary to generate this report 20 times.  To ease generating the reports, I created a new report(ReportB) that has a simple table displaying the recordset of all 20 items.  The single cell of the report contains a subreport object tied to ReportA.  Each record is passed to the subreport as the parameter of the subreport. The table is grouped by the items and a page break is inserted at the end of each gro ...Show All

  • Visual Studio How do you pass arguments from previous wizard pages

    I want to display a grid that uses the connection string from a previous page. I'm getting the following error: Microsoft.Practices.WizardFramework.WizardExecutionException: The wizard failed to execute. The error was: The argument ConnectionSettings is already collected by the step Define DataMembers. It cannot be added to step Enter database connection information. [ RecipeArgument ] public ConnectionStringSettings ConnectionSettings { set { connectionSettings = value ; } } TIA Jay You can get argument values by using the IDictionaryService: IDictionaryService ...Show All

  • Windows Forms SURVEY about your usage of the .NET Framework documentation!

    Hello -   I'm conducting an official survey about your usage of the .NET Framework documentation. In particular, what programming languages do you filter on. Your answers will be used to help improve the documentation viewing experience. When reading the survey, remember that the concept of filtering on a programming language is talking about viewing the documentation wit ...Show All

  • Windows Forms is there any way to force a control to receive focus?

    i have a custom control inherited from panel and i need to be able to handle Enter/Leave events for it..any idears First off, yes, nested controls should raise Enter and Leave events all the way up the parent hierarchy.  If this isn't working for a given scenario, it is a bug. Secondly, in your drag scenario, you would want to h ...Show All

  • SQL Server Error on Reporting Server - but only through the ReportViewer control

    We are using the webviewer control. We get the following error when we try to export to EXCEL. InternetExploer cannot download ...n=OnlyHtmlInline&Format=EXCEL from app.webcobra.com. Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later. This error comes up almost immediatly after it starts trying to download the file. It is a large dataset but it isn't "overly large". There are basically 44 records. The other wierd thing is that it works fine on our BETA servers but not on our Production servers. We figure this is a ...Show All

  • Visual Studio Express Editions Help With Text

    Hello. I am grabbing info off a web page. What I want in my program is too display my username only from the Source Code. How would I got about getting this. this .textname.Text = "jasonhol" from this which is put into the textname Textbox. this .textname.Text = " this .textname.Text = "<TDalign=right>Jasonhol</TD></TR> " Jason, Can you be more clear on your question what is that you want to achieve and where are you facing problem So that someone can answer your question. Thank you, Bhanu. ...Show All

  • .NET Development Strings

    Hi folks, I'm just wondering if .NET impliments the + operator for its String class As well, does it have any (for example) ToInt(), ToFloat(), FromInt(), FromFloat() members -Zero For converting you have the convert class http://msdn2.microsoft.com/en-us/system.convert.aspx You also have Parse/TryParse methods on most numerics, if not all. The + operator will concatenate strings in VB.NET and C# compilers. I am not sure if the C++ compiler does it. ...Show All

  • Windows Forms Binding a combo box to a data set

    Hi, I am trying to just list some columns in my dataset by binding it to a  combo box in windows form application. I can easily do that in a web  application. But really doesn't seem to work as a windows form  application.  Label1 and label3 lists the values in my dataset. But label2 displays  it as a DataRowView object. Could any one p ...Show All

  • Software Development for Windows Vista Qury Regarding Long Running Workflows ....

    Hi to all Well i know that WF had a capability to handle long running workflows , now here are couple of points i want to ask , please provide the detail answer 1) Very simply how you guys handle following scenario , you have workflow running and Machine got resarted/ reboot I mean is the workflow starts next time with previous state / Activity or gona crash as in non destermenistic state 2) hmm what are mimium steps to acheive hydration / dehydration and how it works 3) once a workflow is running what are best practices to handle long running workflows The main thing you have to have in place is t ...Show All

  • Visual Studio Express Editions Does Microsoft support this product?

    Does this response even come close to addressing the activation issue Did you even read the problem I described in the post This just proves my point that there is no competent support at Microsoft, just excuses and a bunch of B.S. I've read enough. I don't know why the activation wont work for you. But I also think they can start to ignore you if you continue spamming like that here. They, I think, already have read that issues. *EDIT* http://lab.msdn.microsoft.com/productfeedback/viewFeedback.aspx feedbackid=0f2ad44e-d3d5-4abc-a6fa-3fe85317d155 ...Show All

©2008 Software Development Network