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

Software Development Network >> Srikanth Ramakrishnan's Q&A profile

Srikanth Ramakrishnan

Member List

software_writer_nyc
Nightowly
Pavan Contractor
skuehner
Rups11
kevinwebster83
hungryghost
danadanny
Kevin Dente
hbilan
DiZASTiX
sgriner
Chigrboy
Brett H.
Cobaia
Nick Gravelyn
Tension
zebat
Struan
peterxz
Only Title

Srikanth Ramakrishnan's Q&A profile

  • SQL Server Getting the domain user running a report

    Hello everyone, I've created a report that will be used by some of my users. I'm trying to get Reporting Services setup so that I can see the user that is running a report. I start a Profiler trace but it's not showing me the login credentials of the user. It shows me the user account that is set for anonymous access (IIS -> Default Web Site -> ReportServer -> Authentication and Access Control). Can someone tell me the settings for RS and IIS so that I can see the domain account of the user who is running a report via Profiler If not, can someone point me in the right direction of where to look for how the settings should be Thanks Jarret We use a sperate folder for each user's re ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. mipmapping

    Hi, i've loaded some fbx models via the content pipeline with integrated textures. can i tell the loader routine to auto-generate mipmaps when loading textures integrated in fbx models or how can i postgenerate the mipmaps out of the models. sorry for my english ;) thx #pragma The content pipeline will create mipmaps by default: you only need to do anything special if you don't want them to be generated for you. ...Show All

  • Visual Studio Tools for Office ComponentID of VSTO 2005 SE --> vstor

    Can someone pls provide the GUID for the VSTOR runtime that is associated with VSTO 2005 SE or explain how to determine it once installed tx Hi Tadwick, yes it is is, but there is also a new registry key HKLM\Software\Microsoft\VSTO Runtime setup\v2.0.50727 Update=1 Thanks and regards, Darryn Lavery [MSFT] ...Show All

  • Visual Basic Capture line of an exception

    How can i capture the line of an exception using Try...Catch i have run into instances when the inner exception does not exist though, and in my attempt to grab it it through another exception, therefore mission the real problem so do something simple like If Not ex.InnerException Is Nothing Then msg += "Inner Exception: " & ex.InnerException.ToString End If ...Show All

  • Visual C++ Array copy?

    What's the best way to copy the contents of a 2-d array into another one of the same size Do I have to copy each element one by one or is there a method to do that directly I think if you deliberately put your array into a structure, then you could copy it directly using = operator, like this:   struct MyArray {     int values[10][20]; };   MyArray a1, a2; // . . . a2 = a1;   ...Show All

  • Visual Studio MSBuild problem with Reporting Services

    Can you tell me if MSBuild will build a Reporting Services project. I am getting an error saying the project must be the MSBuild xml namespace. It seams that MsBuild thinks the project is a old 1.0 or 1.2 format, and of course, it is not. Thank you Andreia ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How do I send a command to a particular PS2 Mouse

    I am building a project which involves connecting many TrackPoints into the computer and collecting pressure data from each. How can I send commands to a particular TrackPoint, and listen for the response A TrackPoint sits on a little circuit board two centimetres by three centimetres. this can be wired in to a PS2 Port. I have three TrackPoints; each goes through a PS2->USB converter into a USB hub. http://www.jstookey.com/arcade /rawmouse/ At the bottom of this page is a .EXE which will show the mouse data from each TrackPoint. the source code makes use of these RawInput DLL calls: http://msdn.microsoft.com/library/default.asp url=/library/en-us/winui/winui/windowsuserinterface/userinput/r ...Show All

  • Smart Device Development Setup wizard, Licence agreement

    Hi all, I have developed a application for smartphone device. I have created the CAB file for the same to install and deploy on to the Smart Devices, but when I click on the CAB file within the device, it install my application successfully wthout prompting me any window for reconfirmation or License agreement. I would like to add my License agreement page whenever user wants to install my application on to his device. I am clue less how to do the same. Please also let me know, whether there is possibility to generate CAB file which result in an Installation wizard for the enduser I truely appreciate your kind help on this WP Normally it’s done different ...Show All

  • Visual Studio 2008 (Pre-release) Image formats for toolbars?

    I'm curious what people are using for images on WPF toolbars Are you using icons, bitmaps, a geometry in XAML, or It's nice that you can easily make an interface scalable with WPF, but that implies that some sort of vector images would be best. But how do you make those look good when sized down to small areas like 16x16 I'd like to hear from some developers/designers that have been working with this awhile on what's worked best for them What gives you the best tradeoffs between ease of creation, good looks at larger sizes, and good looks at smaller sizes That's a good point I hadn't thought of before. That by using icons in XAML format, you have options to animate that you wouldn't have with a bitmap format. That in itself may be ...Show All

  • SQL Server Parameters

    I have a problem in SQL Reporting Services. I have several multi-value parametersI When I use one single value in parameter and running the report work fine, but when I select  more then one value in the parameter (With Multi Value ) it fails: "An error occurred during local report precessing. Query execution failed for dataset "DataSet" incorrect syntax near ',' " thanks I have a problem in SQL Reporting Services. I have several multi-value parametersI When I use one single value in parameter and running the report everything work fine, but when I chose more then one value in the parameter (With Multi Value ) it fails: "An error occurred during local ...Show All

  • Visual C# Anonymous Methods & Object Events

    I never did like how I HAD to hook an event to a class method signature. If I wanted to hook an event to an object instance within a function, that I only needed in that function, I had to create an event handle in the class. Thanks to anonymous methods, I can create my event handler body in an anonymous method from within my code. The problem is that I don't know how to 'unhook' the handler from the event, because the even doesn't expose the multicast delegate. psuedo-code: [code language=C#] form_OnClick(...) { Something s = new Something(); s.SomeEvent+=delegate(object sender, EventArgs e){this.a = e.a;}; {...} s.SomeEvent.Clear() //How do I do this {...} } [/code] Thanks. ...Show All

  • Windows Forms Multiple dependent combo boxes binding to the same parent-child datasource

    I have a parent-child datasource that I want to bind to TWO pairs of dependent combo. The parent-child datasource is itself is dependent on a master combobox. That is to say, when the master combo changes, I retrieve the parent-child datasource from the database and bind it to the first pair of dependent combo, then bind the same datasource to the second pair of combo. -------------------------------------------------------- master combo -> select region ...on master combo selection change, get all related state and city info and bind to pairs of combo. User primary and secondary should be different. ------------------------------------- primary combo1 -> select state primary combo2 -> select city ------ ...Show All

  • Visual Studio Team System Team Foundation Install Problems

    Here is the situation I find myself today. Over the weekend some of my team members uninstalled the Team Foundation Server RC and installed the Team Foundation Server Workgroup (May 2006). I am trying to configure the foundation serve; but do not know if it was installed as local or active directory domain(they don't remember it asking this) . Is there a way to verify domain membership of the foundation server Team Foundation Server could not resolve the user or group '{0}'. The user or group might be a member of a different domain, or the server might not have access to that domain. Verify the domain membership of the server and any domain trusts. Also, since the Foundation Server was uninstalled will I have problems configur ...Show All

  • Visual Studio Express Editions Visual C++ Express: Examples

    Hi, I've written a fair amount of code in C++ Express, but its always been standard ANSI C++. Now that I'm onto Windows stuff I'm stuck and nowhere seems to have decent code I can look crib. Can people please reply with links to good Visual C++ Express specific code examples. I want to write a small single-instance listbox driven application launcher, preferably populating the list box from a directory of shortcuts, so if there are any examples relevant to this I would be grateful. Cheers, Dave Steadman. Hi, Here is download link : http://filebuffer.org/ dl=67a9f93acb5fa11_VC_2005Express.chm  , and buy the book if you can... :)   Live long and prospere! ...Show All

  • Visual Studio Express Editions message box show without stopping program

    In a console application. Is there a way to display a message box that does not stop the execution of the program the sleep statement is there only to make sure that I see the form before the program ends. I only have one label on the form, the one with the relevant message ...Show All

©2008 Software Development Network