Karthik R181134's Q&A profile
.NET Development Do Microsoft Recommend using Windows Server 2003 for ASP.NET development?
I am trying to convince our company to move to Windows Server 2003 as a day to day platform for development of our ASP.NET application, which will be deployed to this platform. My reasoning is the differences between IIS 5.1 and 6.0, and the general principle that it is good practice to design and develop on the intended delivery platform. I have had no problems using it myself, and I know a lot of developers use it, including M ...Show All
Visual C# Copy <Summary> from other member?
Is it possible to copy the <summary> from another member In particular I want a Property to display the same Summary as my DependencyProperty (WinFX). But it could also be that I want to copy the summary for some overloaded methods. I have stumbled across a document showing: <summary cref=”xxx” /> But this doesn’t seem to work There's nothing currently available to do that sort of th ...Show All
Visual Studio 2008 (Pre-release) Compiling XAML
I'm not 100% clear about the relationship between XAML and IL. As far as I can tell, you can compile XAML but it ends up as BAML rather than IL. Equally, my understanding is that anything you can do in XAML you can also do in C# (declarative vs procedural). If so, presumably it would be possible to compile XAML to IL, even if this is not what happens. Another interesting question: if C# compiles to IL, but XAML does not, then what are the pro ...Show All
SQL Server How to clean machine for SQL2005 Reporting Services RTM
hi all, I am trying to get Reporting Services to install on a machine that previously had the September CTP install on it. The SQL Server part of the install has been fine and all seems to be operational as expected but the Reporting Services fails to install with the following errors: "An instance of the same name is already installed on this computer..." This is thrown out of the ValidateInstanceName func in the MSI. I am telling it to use ...Show All
Visual C# Preventing decompilation!!
Hi, Can someone tell me how can I prevent decompilation of assemblies created in .NET. Are there any freeware softwares that makes this happen. Please provide me the download link of these softwares, if there are any. Thanks, Frens You can use a obfuscator, here is a little list of obfuscator's for .NET: {smartassembly} Decompiler.NET Deploy.NET Salamander .NET Obfuscator Sema ...Show All
Visual C# Add "Help" button
How can I add "Help" button to my forms Like the picture: http://img.majidonline.com/thumb/39010/Untitled-3.gif Where is the picture Where and how you want to have Help implemented ...Show All
SQL Server Problem creating diagrams
I just upgraded an existing sql server 2000 installation with the RTM sql server 2005 (developer). I went to work on a database that I've been working on for a couple of weeks before the upgrade, and wanted to create a database diagram. However, when I click on the "Database Diagrams" tree node, I get this message: TITLE: Microsoft SQL Server Management Studio ------------------------------ Database diagram support objects cannot be installed ...Show All
SQL Server using Microsoft SQL Server 2005 JDBC Driver with JDK 1.3 (or JRE 1.3)
Hi, It seems that the Microsoft SQL Server 2005 JDBC Driver available from Microsoft and the requirements are : Java Development Kit: 1.4 or later SQL Server 2005 or SQL Server 2000 However, we have applications that use Java Development Kit: 1.3 and would like to upgrade to SQL Server 2005 , we run SQL Server 2000 now. Is there a solution other than upgrading our apps to use JDK 1.4 Are there known bugs or workarou ...Show All
Visual C++ Basic ifstream problem
Hi, one of my C++ aplication I use an ifstream to read a file. I used to open it like this : ifstream myfile("C:\\Documents and Settings\\devj4\\Desktop\\CH_12\\ColorLinks.ini"); And read a line like this: myfile >> line; And that worked fine. But now I want to use a string variable that contains the path an file name so I have a variable like this : string Path = "C:\\Documents and Settings\\devj4\\Desktop\\CH_12\\ColorL ...Show All
Visual C# Interest in type parameter casting?
Has any consideration been given to adding the abliity to use type parameters in casting public class Customer { } List<object> list = new List<object>(); list.Add(new Customer ()); list.Add(new Customer ()); list.Add(new Customer ()); List<Customer > list2 = list as List<Customer>; Another thing you could do, instead of copying, is create a proxy cl ...Show All
SQL Server assigning datasetname dynamically to a report ?
Hi friends am new to reports in VS2005. how can i assign a datasource dynamically to a report. i know how to do add datasource in desgin mode to a report.(i.e i create a new datasource and drag and drop it on to report). but in my case i need to take some parameters from users and create a dataset with relavant data and show it in a report. i cant find any documentation or samples for it. Thanks for your help. BTW its winform application and i w ...Show All
Visual Studio Team System Report Viewer Failed in second project
I'v create two team project, "aaa", "bbb", all ms-agile template, in second project "bbb" , team explorer, "bbb" -> "reports" -> "work items", the report viewer (url http://tfs/ReportServer/Pages/ReportViewer.aspx %2fbbb%2fWork+Items&rs:Command=Render ) "Iteration" "Area" Field's pull-down list's content are empty, and cannot proudce reports..... (the "aaa" project, "Iternation" "Area" Filed's default is "aaa", and pull-down list ...Show All
SQL Server SSMS-EE: Creating and Using Stored Procedures - Error Messages 111, 156, & 102
Hi all, I tried to use the SQL Server Managemet Studio-Express Edition to execute the following code statements: --- SQLQuery.sql--- USE testDB DECLARE @procID int DECLARE @procName varchar ( 20 ) DECLARE @procType varchar ( 20 ) CREATE PROC sp_getRecords AS SELECT * FROM Inventory CREATE PROC sp_insertRecord @procID int , @procName varchar ( 20 ), @procType varchar ( 20 ) AS INS ...Show All
SQL Server SSIS Requests...
May be it's too late, but I think this requests could be scheduled at least for a SP1 if it's not possible for the RTM. 1) Execute Task without debugger: it would be very nice to be able to execute a single task without going in debugging mode. Just as you would ask "Start Without Debugging CTRL+F5" but for a single task 2) Customize default properties for task and component: when you drag a task on the package you get a default value for the ...Show All
Visual Basic So where are the tutorials? (DirectX)
So I've downloaded visual basic several weeks ago, done alot of tutorials, and downloaded the directx sdk (april release). So where are the tutorials for vb Do you have to download them somewhere else There are some in the coding for 4 fun developer center . ...Show All
