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

Software Development Network >> Sameer Simha's Q&A profile

Sameer Simha

Member List

Garry W
Micromause
Alexandre Tremblay
Phil Price
cpwrdev
DaveHorner
fc_curling
Haarissh
Gary D
rpk_isv
Rustum
petervelosy
Tonia
FedorSteeman
DJoyce
carlop
Hans Yadav
JZucker
JeanF J
DStar
Only Title

Sameer Simha's Q&A profile

  • Visual Studio Tools for Office Word Template from ASP.NET

    Hello, I need to load in IE from a web server (IIS) a custom word document which I created with Visual Studio which has a custom button in Document Actions which does a copy paste action. The problem is that when I acces the word document in IE the button doesn't load and I have the following erros: The customization does not have the required permissions to execute. ************** Exception Text ************** System.Security.SecurityException: The customization does not have the required permissions to execute. at Microsoft.VisualStudio.Tools.Applications.Runtime.AppDomainManagerInternal.HandleOnlineOffline(Exception e, String ba ...Show All

  • SQL Server Error message

    Hi, I keep getting this error message while creating and deploying my report. I already restart the SQL server services(MSSQLServer) a lot of times, it is still the same. An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'AdventureWorks'. (rsErrorOpeningConnection) A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) I also got another error message while deploying my report. The selected report is no ...Show All

  • SQL Server De-normalising query

    OK. I know this can be done with cursors but would like some pointers on if SQL 2005 provides any more elegant solutions. Basically I have 2 tables ... TableParent(ParentPK, ChildFK) TableChild(ChildPK, ChildValue) For each row in TableParent, TableChild may have up to say 5 rows. I need to transform this into a table containing at most the first 3 ChildValues (ordered by ChildPK) of the form ChildValue1 Childvalue2 ChildValue3 Any tips on how this could be achieved by a more efficient means than cursors Thanks, Greg. You can do below in SQL Server 2005: select pt.Parent_PK, [1] as ChildValue1, [ ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Drawing 2d polygons with holes

    Hi, I'd like to draw arbitrarily shaped 2d polygons, with holes, using managed DirectX. Do I have to write my own code to break down the polygon into triangles, or does DirectX provide this facility I can't see anything in the help that looks like it would do this for me. Direct3D and the underlying hardware operate on 3 types of primitives - points, lines and triangles. Anything more than that it upto you to triangulate (this also applies to parametric/higher-order surfaces). Triangulation pops up in a few places in general graphics theory, so I would imagine you can find a few algorithms around (the only ...Show All

  • Visual Studio Team System TF30162: Task "WITs" from Group "WorkItemTracking" failed

    This is with Beta3 on a real 2003 Standard Server SP1. Setup worked without a problem. I did change the name of the three accounts but they all work fine. I cannot create a project with a user account that's in the domain admin group. However I can create a project with the <setup> account logged on on the server directly. Thinking it's a SQL permission kinda thing, I gave the domain account all the same permissions as the <service> account, but that still did not work. I tried the deletion of the cache directory, but that did not make a difference. Can someone give me any hints how to go on with this. Peter ...Show All

  • SQL Server Trouble with XML Bulkloading from a stream

    Hi, I am having trouble bulkloading xml into SQL from a stream.  I am able to bulkload the XML from a file, but I want to load it into an XMLDocument first and then bulkload it.  I understand that the bulkload execute command is overloaded to do this but no matter what I try I get an 'Error opening the data file.' exception. I am using SQLXML 3.0 and C#.  Does anyone have any ideas Thanks. I am kind of confused about loading the Xml file into XmlDocument and how you use the Bulkload. Are you passing an XmlDocument to Bulkload If so, this is not possible. You can only pass a file uri or a stream to bulklad as data xml. ...Show All

  • Visual Studio 2008 (Pre-release) Perforator tool not working...

    Hi, Is anyone else using the perforator WPF performance tool When I run it, and run XAMLPad at the same time, perforator doesnt list any applications in its left-hand pane. More generally, I can't get perforator to notice any WPF apps. Hello again, If anyone is having success/problems with Perforator, can they just reply to this thread. Even if nobody can help I'd like to know whether noone is using it, or noone can get it working, or it does in fact work, just not for me. ...Show All

  • Visual J# How to access Java Language Conversion Assistant

    I'm trying  use JLCA tool, but don't know how to access it from VS2005. I've look into the help, it says go to File->Open->Convert,  but when I go to File, I can't fine a Open menu, there is just Open Project, Open File menu available. Anyone have an idea on this Thanks. Lennie Hi, If you are working on J# express, then you are right. You can't find  Convert there as  JLCA is not supported on J# express. If you are not on J# express, then can you please download JLCA from one of the links given above. Please post back if you face any issues further. Thanks. ...Show All

  • Windows Forms ¿Why TaskVision does NOT use DataBinding?

    ¿Why TaskVision does NOT use DataBinding I see a lot of code doing things like oneDataRow["someField"]=someTextBox.Text; I am building a big (i am in 5° Month, of about 6 months of development, and maybe more, if the client likes it and wants more) project in .NET, in Windows Forms,  and I use DataBindigs for every window, but some times i do ...Show All

  • Visual Studio 2008 (Pre-release) Making Trackbar in MediaElement

    I wish Avalon Has a right help file. It is hard to figuar it out. I am making a sample program like Windows media player. How Can I change the position of the movie clip with progressive bar. I thought I can use "MediaElement.Player.Position" but it seems not working... Would you give an example code please   This can be achieved by databinding a Slider's Value to the Position property (as you mentioned above). The trick is that the Slider needs to be notified whenever Position changes, which doesn't happen automatically since Position is not a DP. This can be done by setti ...Show All

  • SQL Server Migration of SQL Serve r2000 packages

    Hi, In SQL Server 2005, when I tried to migrate existing SQL Server 2000 DTS packages using Migration Wizard, I ran into the following error message. "Index was out of range.Must be non-negative and less than the size of the collection. Parameter name: index[mscorlib]" Please help! Thanks, KP Please take a look at this earlier thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=130931&SiteID=1 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Beta for XNA Studio?

    Does anyone know if there is a beta planned anytime soon for XNA Studio, or if it will have a public beta My primary line of business is not game development, but I am interested in seeing/experimenting with this product. Hi. I'm really interested in XNA Studio, too, but I understand that it's not for casual developers (I'm a hobbyist). Is there any screenshots showing XNA Studio And by the way, nice forum. I really like the toolstrip-look above the rich-text edit box. Howeve, I've noticed that the toolstrip (toolbar) didn't change depending in the color of the theme (but I will end here since this is off-topic). ...Show All

  • Visual Studio Team System Cannot find namespace system.web.security

    Hello, I am using beta2 team edition. But when I try to add "using system.web.security;" in the code, I got compile error: Error 1     The type or namespace name 'Security' does not exist in the namespace 'System.Web' (are you missing an assembly reference )      C:\Documents and Settings\Administrator\my documents\visual studio 2005\Projects\WebSite1\CustomMemberShipLibrary\CustomMembershipProvider.cs      4     18    CustomMemberShipLibrary And then when I try to add System.Web.Security to the reference, I cannot find it from the ...Show All

  • Visual C# Throttle CPU speed

    Hey all, I need to control the speed (in hz) that a c# application executes at. I want to be able to simulate the program running at 600Mhz, 1Ghz, 2Ghz, etc... Anyone any idea how to do this I would prefer to code the CPU throttling into the C# app rather than use a external program. Thanks, Stevoie for what exactly is this needed if you're running in a loop, you can use System.Threading.Thread.Sleep(); to slow down if needed, or just calculate stuff depending on the time that the last loop needed.. ...Show All

  • Visual C++ Help On A Tricky Console Application

    I Am Creating a Console Application (and/or) A Form That Can Achieve the Following Things. I need it to respond to a Key Press while it is not the active window, and I need it to write directly to the screen for a few seconds. To clear things up, I want to have a full screen window open, be able to press page up and page down to change a value that will be printed directly to the screen for a few seconds. Then I can press print screen and it will add it to a running total that I can view for a few seconds by pressing insert. This may seem tricky but I have never seen any code that can do this, I know it can be done, and as soon as I know how ...Show All

©2008 Software Development Network