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

Software Development Network >> Kamalkanth Nayak's Q&A profile

Kamalkanth Nayak

Member List

Brian Foley
dbcuser
RajKumarD
adhsys
xVxObliVioNxVx
nharendt
Weebmaster
dustinto
drew_p
Ian Cook
asiaindian
Bastiaan Molsbeck
arthurmnev
Sanophy
Satyajit
Steve Harding
Lili Gao
bndgk1337
fscarpa58
Sunil Virmani
Only Title

Kamalkanth Nayak's Q&A profile

  • Visual Studio Team System How to Use FxCop1.35 in VS2003?

    Hi everyone: I create a fxcop rules which can used by vs2005,but it is can not used by vs2003 .How to Use FxCop1.35 in VS2003 thanks for your help! --Tiny Hi Todd: thank you for reply. It means that I can not use fxcop1.35 in vs2003 as in vs2005 but there is a web site create by vs2003.how can I check it ...Show All

  • SQL Server Problem On Store Report Parameter in Subscription ( by custom UI)

    I wrote a interface on my website about create/update subscription . when I get the parameter back by using GetReportParameters () the value was swap for example: I have 8 reportparameter: tcust, fcust, fdnnum, tdnnum, fdept, tdept, fairline, tairline. all of them are string when I create the subscription by: tcust 1 fcust 2 fdnnum 3 tdnnum 4 fdept 5 tdept 6 fairline 7 tairline 8 then I get back that subscription the value will be : tcust 2 fcust 3 fdnnum 8 tdnnum 5 fdept 1 tdept 7 fairline 4 tairline 6 are there any order for storing the ReportParameter[] thank you You should not rely on order. ReportParameter has property Name which can be used to identify the parameter. See sample code a ...Show All

  • Visual Studio Team System Will it be possible to open a DB project created in CTP5 Refresh in CTP6?

    All in the subject. Thanks Jamie Just a follow-up question: if I have a CTP5 project linked to Sourcesafe, is there anyway to reattach a CTP6 project I've tried the method of creating a new CTP6 project with the same name and then linking it to Sourcesafe but it creates a new project. Anyone had any luck ...Show All

  • Visual Studio 2008 (Pre-release) Imported and inline Resources

    as always, hello and thanks in advance. I was trying to do this; <Window.Resources> <!-- imported styles --> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/Resources/Base.xaml" /> <ResourceDictionary Source="/Resources/Brushes.xaml" /> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> <!-- inline styles --> <Style x:Key="TestStackPanel"> <Setter Property="Control.Background" Value="BlueViolet" /> <Setter Property="Foreground" Value="White" /> <Setter Property="FontSize" Value="2 ...Show All

  • Visual Studio Team System Upgrade problem : "TFS sql server exists and their schema doesn't match..."

    Hi upon trying to upgrade to RC I encountered a problem : "TFS sql server exists and their schema doesn't match the version expected by setup" how do I workaround it all the upgrade steps went fine until this one.... 10x, guy Thanks Allen, It worked. I have successfully installed VSTS RTM, but I am not sure how do I now add my existing projects I can create new projects just fine after uploading my customized process template. Please let me know. Thanks, ...Show All

  • SQL Server Null Values in Destination

    Hi to all! I created a simple package – data flow task, containing OLE DB Source, with Data Access Mode – SQL command and OLE DB Destination. My SQL command is update support_incident set date_closed = rn_edit_date where status_text = 'Closed' and date_closed is null DECLARE @CMonth as datetime DECLARE @LMonth as datetime SET @CMonth = '10/1/2006' SET @LMonth = DateAdd (m, -1, @CMonth) select @LMonth as Reporting_Date, (select count(support_incident_id) from support_Incident where rn_create_date >= @LMonth and rn_create_date < @CMonth) as Opened, (select count(support_incident_id) from support_Incident where Date_Closed >= @LMonth and Date_Closed ...Show All

  • Internet Explorer Development IE7 and desktop icons

    I just installed Internet Explorer 7 today, which I guess is a.k.a. Windows Live . All of my fancy customized shortcuts on the desktop disappeared and each got replaced by the same generic windows icon. Right-clicking & changing the icons in properties no longer works. Also, when I create an internet shortcut while browsing, that creates a shortcut with that same generic icon (not even an explorer logo). Now my desktop is just one forest of identical icons. Anyone know how I can fix this I've wasted all day without success. CPIAD That is exactly the problem and question I am also experiencing...I finally uninstalled both IE7 and Netscape 8.1 (which is also behaving unsatisfactoril ...Show All

  • Windows Forms Invalidating...

    Hi everybody I'm writing a chess game and I encountered a little problem. Before the main Form loads, I have a Fform in which I set the time etc' and then the main Form shows up. In my main Form I have a MenuStrip, a PictureBox and a lable. My problem here is: After the main form loads the MeniStrip doesn't invalidate itself. I have tried to use the Refresh and Invalidate methods for the Form and for the MenuStrip but it's still doesn't work. The other problem, which is the same as the first one, is that the lable that represent the time changing during the game, doesn't change. The MenuStrip and the lable change their appearance - Invalidate - after I move the Form or hide and the then reveal the Form. When I remov ...Show All

  • Visual Studio 2008 (Pre-release) Any way to disable optimistic concurrency in LINQ to SQL?

    Is it possible to disable optimistic concurrency checking completely, at a *table* level It appears that the May build only allows for setting this on the column level with the UpdateMode attribute on the columns and not table wide. I don't see anything on a table basis that would do this at this point. Perhaps it could be a change request for a future release. Jim Wooley http://devauthority.com/blogs/jwooley/default.aspx ...Show All

  • SQL Server Upgrading from SQL Server 2005 Standard Evaluation Edition to a Fully Licensed Version.

    I just received my licensed disks for upgrading my SQL Server 2005 Evaluation version to a fully licensed version. Do I simply run the two disks over top of the evaluation version or is it a little bit more complicated Any input would be greatly appreciated. A little new to SQL. Thanx Chad   It depends on the components you installed for SQL Server 2005 Evaluation version. If you install both instance-aware (e.g. SQL Engine) and instance-unaware (e.g. tools) components, then you may be prompted to switch CDs during upgrading. I assume you have already installed SQL Engine. Then start from the first CD under the directory ...\Servers\setup.exe. 1. Make sure you choose the instanc ...Show All

  • SQL Server Merge Join - HELP

    Hi, I have a SQL Statatment: SELECT  *   FROM TABLE1 AS A     JOIN TABLE2 AS  B       ON A . X = B . X     AND A .Y = B .Y When i execute this code in sql server returns 549 lines. I created a package with two oledb sources one for each table, sorted the tables with fields X and Y after placed a Merge Join with the fields: A.Y join B.Y order 1  A.X  join B.X  order 2 both fields with the Join Key checked But my package return 411 lines. What's happened :( When a i have the code: SELECT A .X , A . Y , B . X , B .Y   FROM TABLE1 AS A     JOIN TABLE2 AS  B ...Show All

  • Visual Studio Team System Adding custom attributes to Team Project

    Hi all, is there a way i can add custom attributes at the team project level like if i wana add property called Category just to categorize team projects in our organization btw i'v seen process templates etc.. i dont think theres something like this..any idea regards faraz Faraz: Yes you can add attributes and fields to the process templates. first , you have to download the process template that you want to change. Open visual studio 2005 and navigate to process template manager and then down load the template you want to change to your machine. then go in to the MSF for Agile Software Development - v4.0 (FMG Custom)\WorkItem Tracking\TypeDefinitions then edit the task.xml file and add the fields for e ...Show All

  • Visual Studio Team System Cannot Move from Project A to Project B

    I have 2 projects. One is a sort of test/demo code, but if code is ok and we can use it in production we want to move it to our production project. Now I tried the right-click in solution explorer and Move the folder to the other project, but all I keep getting is an error that says " No appropriate mapping exists for D:\MyDocs\Visual Studio 2005\WebSites\OurWeb.Web.Webservices." Can anyone please help. Thanks, Rykie Hey, I know the problem...While moving the folder from one team project to another you should have the MAPPING folder name to the local disk and it should be in the same workspace that you have mapped.....or you can do one thing...you can CLOAK one mapping folder ...Show All

  • SQL Server So frustrated...why does it have to be so difficult

    Why have you made connecting to a sql server express database so difficult I have it working locally, but going to production has been nothing but a nightmare. I can't even connect locally on the production box. I am on a dedicated server and my login is an Admin on the box. I have just installed SQL Express + the fancy management interface. I have made a copy of my database that I was connecting to dynamically (which was failing remotely) and I have attached it to the server.  I have made myself a user of the database and granted my self evey permission available. I have turned on impersonation in my web.config.  The database knows it's me trying to connect and STILL denies me when I'm actually ON the production s ...Show All

  • Visual Studio Inserting C++ code

    I've started developing a small add-in for Visual Studio but came across some problems. All articles that I've read add the add-in's specific UI in the OnConnection method. I want to add a new menu item in the "Code Window" context menu only if the Project is a C++ project (I don't want to clutter the menu if you are working in a different language). How can I do this Then there is another problem. If the user clicks on the new menu item, a bit of C++ code should be inserted at different locations in the file. Currently I'm doing it like this: TextDocument document = _applicationObject.ActiveDocument.Object("TextDocument") as TextDocument; EditPoint startPoint = document.StartPoint.CreateEditPoint(); startPoint.Insert( ...Show All

©2008 Software Development Network