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

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

NareshVelusamy

Member List

rwilson06
nhaas
Pockey
Ramesh Jha
yudhi
Dietz
mike11d11
mgranto
B. Ritter
Gareth Hunter
Gunnar Adler
Kamii47
VenoM UT
sigme
pst_grant
Helen999888
DerekL
Flip597
Rohit Tela
hariarla
Only Title

NareshVelusamy's Q&A profile

  • .NET Development IoCompletion handle

    Hi. I'm not sure this is a right topic for that section. I have a problem with growing number of IOCompletion Threads. In our producion environment we have from time to time ExecutionEngineException. I was trying to understand what is going on and started from analysing DUMP file. I found that there are more than 1000 thread doing IOCompletion operation: 103 76 528 084fe878 880b220 Enabled 00000000:00000000 0014d518 0 MTA (Threadpool Completion Port) the stack of the each of them is: 0:044> ~103e k ChildEBP RetAddr 0e4af0f8 7c90e31b ntdll!KiFastSystemCallRet 0e4af0fc 7c80a746 ntdll!ZwRemoveIoCompletion+0xc 0e4af128 79f2f30a KERNEL32!GetQueuedCompletionStatus+0x29 0e4af194 79ecb00b mscorwks!ThreadpoolMgr::CompletionPo ...Show All

  • Windows Forms CPU usage

    Hi, I am looking for a simple way to diaplay CPU usage and (if possible) memory usage on a windows form. Cameron. should be: private PerformanceCounter theMemCounter = new PerformanceCounter ( "Memory" , "Available MBytes" ); ...Show All

  • SQL Server The request failed with HTTP status 401: Unauthorized.

    Other postings I know have asked about this error message, but none has quite been my particular experience. Using Visual Studio 2005 I have developed an aspx (.NET 2.0) web page, which has embedded in it, a Report Viewer object. Clicking a button calls the Reporting Services report and populates the Report Viewer object. This web-page works fine when run from Visual Studio. Once deployed to the Web Server however, the web page produces the 401 error message. I can also run the report fine, when running it directly from the Reporting Services Report Manager, so I know I have the proper permissions on RS itself - it fails only when I try calling the report from the ASP page. Any help greatly appreciated. Thanks, Mike. ...Show All

  • Visual Studio 2008 (Pre-release) UdpSample not Working with July Ctp

    I tried the TechnologySamples_Extensibility_Transport_Udp.zip from the official Samples. It isn't working out of the box. There is a third listener Createt with an empty context.ListenUriBaseAddress. If i intercept the UdpChannelListener Constructor, and set that empty Iri to some default it is working. Where does this empty uri come from This fix didn't make it into the July CTP. You need to modify the UdpChannelListener ctor and add the following to the end of it. This empty URI comes from the client-side listener under Composite Duplex. Uri baseAddress = context.ListenUriBaseAddress; if (baseAddress == null ) { if (context.ListenUriMode == ListenUriMode .Unique) { ...Show All

  • SQL Server File system error: The background thread running lazy writer encountered an I/O error. Physical file

    Hi All, Anyone encountered this kind of error: File system error: The background thread running lazy writer encountered an I/O error. Physical file: \\ \D:\OLAP_DATA\Project88.6.db\Dim Service Dim Std Sub Key.0.dim\677.Hierarchy 5.Subkey Only.lstore. Logical file: . I believe a corruption of OLAP database occured during the dimension update processing and I don't know what might have caused and factors that have caused this problem. The resolution to this error was to restart analysis service then process update the dimension. Any insight on this will be appreciated. thanks Please contact Customer Support with you situation. Are you running SP1 See if installing it resolves the pr ...Show All

  • Visual Studio 2008 (Pre-release) Suggested WPF 3D Resources

    I recently started researching 3D programming in WPF. I read over the high-level SDK docs and played around with some samples, but I don't have a lot of time to tinker with it. I'd appreciate it if some people who have solid WPF 3D experience would take a moment to provide me with some links to resources that you feel are "really good" for getting started. Keep in mind that I don't have any 3D programming experience, so it's a whole new world for me. :) Thanks for any help. charles petzold's chapter 32 is also good http://blog.krisvandermast.com/ct.ashx id=609cef16-a8ef-41e2-9d3f-7c7cd3b7bbb9&url=http%3a%2f%2fwww.charlespetzold.com%2fwpf%2fChapter32.doc ...Show All

  • Windows Forms MDI windowlist formclosing bug

    Hello, In my application, I have an MDI parent form and several MDI child forms. Wanting to allow the user to click the X on the child window and hide the window rather than close it, I implemented the FormClosing event handler as follows: if (e.Close Reason == CloseReason.UserClosing) { e.Cancel = true; Hide(); } This does hide the child window but when the user opens the window again, the windowlist is never populated again for that window. It is undesirable for my application to make new instances of the child forms each time one is displayed so instantiating a new form instance when I want to show the child form is not the solution. The code in the parent window to display the child windows does this: myForm.MdiParent = this; myForm. ...Show All

  • .NET Development Problem with underscore prefix on attributes

    I'm using vs 2003 and have a problem with validating some XML against a schema, I'm getting the message "Could not find any attribute 'Outcome' of element 'Result', yet if I remove the underscore from the attribute name it works fine. It doesn't flag it as an error if I leave the underscore in the xml (which it should). Is this a known issue/bug and is there a workaround The schema contains < xs:element name ="Result"> < xs:complexType > < xs:attribute name ="_Outcome" form ="unqualified" type ="xs:string" /> < xs:attribute name ="_Context" form ="unqualified" type ="xs:string" /> </ xs:complexType > < ...Show All

  • SQL Server Install Sql Reporting Service - Windows 2003

    Hello I need to install the SQL Reporting Service in one Windows Server 2003, my schema is: One DMZ (Servers Web with II6/Win 2003) One SQL Server (Sql Server 2000) When I install Reporting Service in the step about SQL Server Configuration the SQL Server not make de authentication, the message with the user dont have permiton! I view the SQL Log with show the problem with not use Kerberous comuniction! Tks a lot I have also faced lotz problem with reporting services. The very best one on the market in my opinion is Intelliview. It is very pricey though! You can find it here: http://www.synaptris.com/products/reporting-analytics/index.html ...Show All

  • .NET Development MS Access supports Cascade deletes but SQL 2000/2005 doesn't?

    This is progress If someone cares to show me how I can do a multi-table record delete with a single query or nested queries with one filter, please do so -- MS Access 97 to MS Access 2003 supports this, yet SQL 2000/2005 doesn't I've even tried creating a view (SELECT all the items I want to delete from 5 different tables) and the performed a DELETE FROM MyViewName and .NET 2.0 tells me I can't peform and update I'm using a sqlCommand.ExecuteNonQuery. Is this one of those cases where functionality was not included to protect the stupid from making mistakes Ugh! Rob. If am not wrong, Are you trying to delete the through a View Please specify. Cause both Sql 2000 and 2005 supports ca ...Show All

  • SQL Server Telco Cube

    I am building a cube for a telco company. There is among others a subscriber dimension and a handset dimension. There is also a dimension to indicate a handset switch. In the source table, this is a flag set to 1 in the month where the switch occurs. I have added this as a measure to count the handset switches and also as a dimension. Other measures are a count of the subscribers and their revenue. I have added a calculated measure to know the average revenue per user. Now I would like to add a measure to know the average revenue before a handset switch and after a handset switch. Is there a way to calculate the average revenue for all months until the handset switch measure has a value and to calculate the average revenue for all month ...Show All

  • Windows Forms Folder Tree

    I'd like to get a listing of all folders contained on my "d" drive. Since I have thousands of folders, it's not practical to manually input them into excel. Is Windows XP equipped with a tool that does this Thanks for the help. peace To me this does not sound like a software development related question therefore I must ask you to post here: http://www.microsoft.com/windowsxp/expertzone/newsgroups/reader.mspx dg=microsoft.public.windowsxp.general&lang=en&cr=US if it is software development related, please tell us the .NET Framework version you are using as well as the language you are using to develop in thanks ...Show All

  • Visual Studio 2008 (Pre-release) TreeView & HierarchicalDataTemplate

    Hi, I am using HierarchicalDataTemplate to bind my TreeView to list a set of directories. In our applicatoin, we have a favorites menu, from which user can navigate directly to a particular node in the tree. I got the logic to get the active item. But I couldn't set it to the SelectedItem or SelectedValue of the TreeView as they are readonly properties. Is there a way to hack this or this is not possible in WPF with HierarchicalDataTemplate. Please help me, this is blocking me to go further. Thanks, -------------------------------- Raghavendra RAV After successfully expand the node and select it, I believe you also wanna bring it into the view, you can do so by using TreeViewItem.BringIntoView(). Sheva ...Show All

  • Visual Basic can anyone help related to TAPI

    hi, i am working over TAPI (telephone application programming interface). i want to build a GUI that can show the current location of the caller using caller_ID. can any one have any idea for any related add on / lib hi, you are right. there is bit problem. but such application will definately helpful in case of protable devices such as laptops. thanks for the help but.. you jost post the result of TAPI search... isn't so actually i am looking for tapi related power pack. if you can really help.. gaurav ...Show All

  • .NET Development set up of the project

    Hello All, Me create the setup of my project in C# (through setup project ).. Now i want that wen i start installing from the setup created...Before it i got the message dat if .net framework is nt installed please installed it.. How do i add it ... Regards, Aamir A bundle of thanks.. where are the Launch conditions....in it can i do some operations on uninstalling like removing the entries from registry..if yes plz tell me where.. Regards, Aamir ...Show All

©2008 Software Development Network