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

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

rupesh_Sidpara

Member List

Haider Ali Khan
GAJMAN
somenamenobodyused
AronR
Strakian
Bruce_Daddy
Vicki V
razerredblue
DustinFlegel
Nguyen Dai Duong
Xzi
walemems
Sriteja
Grace Cheng
bigbrains
Taikonaut
Scotley
hansondan
David Ballard
nope25546
Only Title

rupesh_Sidpara's Q&A profile

  • SQL Server Disable exporting in RS

    Hi, I would like to know if it is possible to disable the exporting option for individual reports in Reporting Services. I have seen a post explaining how to disable it for all reports (editing the config file on the reportserver) but the problem in my case is that I still need my users to have the exporting option for a majority of the reports. There are only a few reports that I need to disable this option for. Does anyone know if this is possible Thanks in advance No it is not possible without writing your own UI. I would like to understand the scenario more. Why would you want to allow users a ...Show All

  • Visual Studio Express Editions urgent !!!!listbox inserting problem

    hi everyone, I have a problem with manually inserting element into my listbox. There is the code I'm using: ListBox2.Items.Insert(0, ListBox1.SelectedItem) or Dim myItem = New ListItem myItem.value = "wisconsin" myItem.text = "Wisconsin" ListBox1.Items.Add(myItem) I've also tried using the add method but either way I do it it still insert the element twice in the listbox. Now I dont know if there is something I'm doing wrong or is that a bug. I'm using visual dev express 05 on windows xp pro. thk you. Have you put a breakpoint in the code I'd be willing to be ...Show All

  • Visual Studio 2008 (Pre-release) nullable Duration.TimeStamp?

    Why does Duration have a HasTimeStamp property instead of a nullable TimeStamp property A quick check of my information reveals you're right....with .NET 2.0 you are able to have nullable value types...my mistake :-/ In this case...I completely agree...I don't see the point either. Later, Brandon ...Show All

  • Visual Studio Team System Problem with VSTS workgroup instalation

    Hello During instalation, after Platform Scan, i've got the message The System Health Check has detected a problem that will cause Setup to fail. Description The original Internet Information Services (IIS) Default Web Site does not exist or is not configured properly. Workaround / Remedy Internet Information Services (IIS) Default Web Site is a prerequisite for this product and must be running before you can install this product. More information For additional information and help please refer to: http://go.microsoft.com/fwlink/ LinkId=52502 any one know - what i should do with it , of course i installed ...Show All

  • Visual C++ Visual Studio 2005 Install

      Hi, We  just got 2 copies of Visual Studio 2005 Professional Edition, upgrade.  Previously we were using either VB.NET or C++.NET.  We are experiencing install problems. I have a general quesiton. Can we upgrade to the Professional edition from Visual Studio 20003 that just had either VB.NET or C++.NET I would think so.   Thanks Hoop Hi, just take a look at this upgrade information: http://msdn.microsoft.com/vstudio/howtobuy/renewal/#up_pro You may be more detailed about your problems. This would help us help you ...Show All

  • SQL Server Problem in insert a datetime into SqlServer 2005

    I user Visual Studio 2005 64 bit ,windowxp 64 bit ,sqlserver 2005 The Sql statement : "insert into sickleave (StaffID,sickLeaveReason,DateStart,DateEnd,RegistrationDate) values (20001,'test',28/3/2006,4/5/2006,4/5/2006 ) " and the result in Datebase (All the time become 1/1/1900 0:00:00 ) Although i change the datetype from datetime to smalldatetime the result is same and i try input the date 28/3/2006 0:00:00 into server but it show the error: Incorrect syntax near '0'. What wrong help me please,Thank. @Original Poster: Could you please track the status of the post Thanks ...Show All

  • SQL Server Remove rtf code from text

    Hi guys, here I am again, Now with a different question. I succesfully converted the binary code to plain text. The text however was put into the database as RTF. Can anyone tell me how to remove the RTF code from the plain text. Thanx Gabs This will be not too simple ;) First of all read: http://www.c-sharpcorner.com/Code/2005/June/CustomAssemblyinRS.asp This is for RS2000, but works for RS2005 also. What you have to do: -Create a class library project (I used vb.net express) -Add a reference to System.Windows.Forms -paste the following code: Public Class General Public Shared Function stripRTF(ByVa ...Show All

  • Windows Forms Is possible to have two rows as header in a DataGrid?

    Hello, Is possible to have two or more rows as header or footer in a DataGrid for example: Considering Sales of the year as main header and Mounts as sub-headers. Sales 2004       Sales 2005                     <-Main header Jan Feb Mar...   Jan Feb Mar ...                <-Sub header $2  $4   $7       $3   $6  $5        &n ...Show All

  • Visual Studio Team System some B3R team builds fail in RC

    I have a team build that builds multiple solutions. All of the individual solutions build in other team builds fine. This build fails, the pertinent exception appears to be: <snip> Exception Message: Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression. (type SqlException) SQL Exception Class: 16 SQL Exception Number: 512 SQL Exception Procedure: sp_InsertProjectDetails SQL Exception Line Number: 46 <snip> Any ideas Thanks What a coincidence! Last week, we also uncovered this bug. T ...Show All

  • Visual Studio Team System TFSDeleteProject.exe fails to delete projects which fail in their creation but are partially in existence

    I posted a bug for this on the bug reporting site: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=a02f3956-e1c7-43f3-99f4-0a6959ee81b7 MS say they have fixed it in v1, however, does anyone know how I can remove projects manually from source control or reporting services manually for an orphaned project Try TfsDeleteProject again with /force - that will continue trying to delete the other parts even when it fails to delete on one of the parts. ...Show All

  • Visual C++ Standalone VC++ 2005

    Forgive me if I've missed soemthing obvious here, but is Visual C++ 2005 not available as a standalone product   I don't need the majority of the software included in Visual Studio, so the previous standalone releases were always perfect for my purposes. I believe Visual C++ 2005 standalone product is only available in Express Edition right now.  Not sure about Professional or Standard editions. ...Show All

  • Visual Studio How do I stop the debugger from showing code that I haven’t written?

    My issue is that I don’t want the debugger to show me code provided in the standard library i.e. the <string> class or the <stack> class ect... It’s so easy to get lost while stepping through the program. I know that I could use the jump over but I'd rather the code never showed up in the first place. Any ideas For managed-debugging, you're in luck. VS2005 has a feature called "Just-My-Code". The fx, mscorlib, stuff you don't have pdbs for is all considered "not my code" / "non-user code". You can also mark stuff as non-user code by placing a custom attribute ...Show All

  • Windows Forms copyright

    Hi I wonder how I could write a copyright character in a messagebox as text Thanks Moorstream Thanx for all the answers... Of course I mean Word :) /Moorstream ...Show All

  • Visual Basic Extract icons..

    hi guyz, is there any way to extract icons from shell32.dll there is a function naming extracticon from that dll.. but it returns handles to the icons.. can by any way i can extract them in a folder.. ashtified_85 This does a little more than you're asking, but I'm sure you can pull out the pertiant part:   Private Declare Function ExtractIcon Lib "shell32.dll" Alias "ExtractIconA" (ByVal hInst As IntPtr, ByVal lpszExeFileName As String, ByVal nIconIndex As IntPtr) As IntPtr     Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click      ...Show All

  • Software Development for Windows Vista Will there be a cost for WWF?

    Hello All, I have tried to quickly peruse the board and releases for this information, so I apologize if it's out there and did not see it. When WWF is actually released, will there be an additional cost for it Or is the costs for the OS, SQL, and VS I have been looking at it and it seems really great and look forward to working with WWF. Thank you, Jennifer There will be no cost. See previous post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=100854&SiteID=1 . ...Show All

©2008 Software Development Network