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

Software Development Network >> Sandy Place's Q&A profile

Sandy Place

Member List

Zhou Yong
ssouki
arro239
Jessica Alba
Muhammad Usman Khalid
kumarvk
NoobestNoob
avalancheseah
Cika
jakeb16
Frederik Vanderhaegen
Yogesh Ranade
Justin Pyfrom
autistic_clown
nikkog
iamme
Alex Stevens
stiflersmom100
vinodambadi
Thomas.Goddard
Only Title

Sandy Place's Q&A profile

  • Visual C++ VS .Net 2005, how to disable intellisense...

    Hi I am really frustrated with the performance of VS .Net 2005. This is because I always see at the bottom "updating intellisense..." and it uses 60% to 70% of CPU. How to disable this updating of intellisense... Please this is making Visual studio unusable. Thanks Chandra Hi all, I'm sorry I dropped off this thread. We have already started making some fixes in C++ Intellisense after we released VS 2005 but I'd like to make sure we are hitting all the issues you are facing. The ideal is to do the following: log a bug in msdn's product feedback ( http://lab.msdn.microsoft.com/productfeedback/ ) and send me an email at borisj@microsoft.com with a link to it so I can make sure we follow up. Obviously, it ...Show All

  • .NET Development add web reference Error The remote server returned an error: (403) Forbidden.

    There was an error downloading 'https://'. The underlying connection was closed: Unable to connect to the remote server. The remote server returned an error: (403) Forbidden. I have developed the ASP.NET Web Service and deploy on windows 2003 server with SSL Connection (https). When I try to add web refrence on Windows or Web Application error shoe as above. What can I do to sovle this problem   ...Show All

  • Visual Studio Team System Install VSTS with data tier on a Cluster SQL Server

    hi .. I was wondering if someone can send me a link for installing VSTS in a dual server mode. where data tier resides on a clustered SQL Server instance. I am not having any luck with finding such a doc on msdn. thanks Hi TFS only supports very specific clustering configurations, you first must follow the instructions here for setup the failover cluster SQL http://msdn2.microsoft.com/en-us/library/ms179530.aspx and then checkout this document for instructions about installing TFS in the cluster: http://msdn2.microsoft.com/en-us/library/ms252505.aspx ...Show All

  • Visual Studio Team System Cannot write to a closed TextWriter

    In Unit-Tests I want have all output of all trace-sources available in each unit-test output, so I can debug more easily. for this purpose I add a ConsoleTraceListener to all Sources. This works fine, when running one unit-test, but executing a batch causes the following error: Test method WZ.Hermes.Border.Daemon.UnitTests.MonitorHandlerTest.ExecuteMonitor_EmptyMonitor threw exception: System.ObjectDisposedException: Cannot write to a closed TextWriter.. at System.IO.__Error.WriterClosed() at System.IO.StringWriter.Write(String value) at System.IO.TextWriter.SyncTextWriter.Write(String value) at System.Diagnostics.TextWriterTraceListener.Write(String message) at System.Diagnostics.TraceListener.WriteHeader(String source, Trac ...Show All

  • Windows Forms [SOLVED] Selecting a certain cell?

    Hello, [C#] A quick question. I have a DataGridView with 4 columns (title, name, age, misc). How do I display a certain cell value to a TextBox field, as in when I select or trigger one of these events RowHeaderMouseClick or CellEnter event I want : textBox1.Text = the current rows "age" cell .Value.ToString(); Thanks all. you could also use: textBox1.Text=dataGridView.Rows[ dataGridView1.CurrentCell.RowIndex ].Cells["age"].Value.ToString(); ...Show All

  • .NET Development Remote access to class that references MS Outlook

    I'm trying to use remoting to have a client access a server where my outlook calendar is to retrieve several calendar entries. I've read lots of stuff on the internet and have been able to get what I want to work on the same pc (server with outlook). When trying to run the client on a different pc, I get 80040154 indicating that something is not registered, and upon researching determined that it is outlook that is not registered. Now, I do not have outlook installed on the client machine. I thought since the access is via the class instance that is on the server where outlook is installed, I'd be okay. Is this, in fact, why I'm getting there error Is there any way to get this to work without installing outlook on the client ...Show All

  • .NET Development Q: Webservice (SOAP) Problem

    I've got an problem with calling a webfunction that returns an 2 dimensional array. I tried it with an proxy class (made with wsdl.exe) and with an webreference. I think that C# has a problem with the data type or the SOAP message not good is. Here is the function in the proxy class. [System.Web.Services.Protocols. SoapRpcMethodAttribute ( "urn:XpertSelectServiceAction" , RequestNamespace= "urn:xs.wsdl" , ResponseNamespace= "urn:xs.wsdl" )] [ return : System.Xml.Serialization. SoapElementAttribute ( "getDocumentGroupsReturn" )] public object getDocumentGroups( string strUsername1) { object [] results = this .Invoke( "getDocumentGroups" , new object [] { strUsername1}); ...Show All

  • .NET Development Can't access UserState with cancellation on BackgroundWorker

    I am just a .Net newbi and implementing some multithreads application. When I used Backgroundworker with Cancellation. I can't get any information from UserState. I always have it as null. I am just wondering how can I set a userState with a value when you intened to set up a cancellation I just found an article related it. They thought it maybe a bug with BackgroundWorker. An interesting paper. I want to confirm their correctness here. http://pluralsight.com/blogs/mike/archive/2005/10/21/15783.aspx Thank you for your any suggestion in advance... --Meijuan The UserState property is there because RunWorkerCompletedEventArgs inherits from AsyncCompletedEventArgs. The BackgroundWorker class ...Show All

  • .NET Development How to make Windows forms responsive to buttons while main thread is busy?

    Hello, I don't want to do thead programming. Is there an easy way to make form to resond to button click event while main thread doing some processing If I need to cancel that long process what is prefered way to handle this with minimum amount of code. Thanks, G Right! For changing the cusor, do this: this.Cursor = Cursors.Hand;// or any cursor you need! and then back to original one using the same command assigning the default cursor! You are probably calling MessageBox.Show(this,......); Remove this from the first parameter and all wil be fine then Anyother thing Best regards and Best of Luck, Rizwan ...Show All

  • .NET Development How to move objects between collections

    I have this code: 1 public void Move(object item, ArrayList srcList, ArrayList dstList) { 2 if ( !srcList.Contains(item) ) { throw new 3 System.ArgumentException("item not in source list"); } 4 if ( dstList.Contains(item) ) { throw new 5 System.ArgumentException("item in destination list"); } 6 srcList.Remove(item); 7 dstList.Add(item); 8 } Problem:. dstList.Add(item) fails because the item lost. The item in dstList also lost if I change the order of line 6 and 7. How to overcome those situations Thanks I might be missing something here, but can you not do the following: // Get Index of item to be added to dst int nIndex = src.IndexOf( item ); // Add item ...Show All

  • SQL Server Merge Agent System Stored Procedures and sp_Recompile

    Hello, We are trying to be proactive and stop a potential performance issue by reducing the number of recompiles in our SQL 2000 database application. This database is replicated. After viewing output from Profiler and PerfMon it seems that over 90% of the recompiles are due to system stored procedures generated by replication merge agents. Can anything be done about this Thanks The databases are setup to use push merge replication with the polling interval set to every 15 seconds. It is replicating 4 databases to one subscriber. The procs that are involved are the ones generated by the merge agent when you set up replication. Hope this helps! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. how to delete the threats?

    please tell me that how to delete my threads (formerly threats) As a general guideline if you want high performing code you should multithread. You'd be stupid not to! Of course there is a steep learning curve, but it is something well worth learning to do right. ...Show All

  • Software Development for Windows Vista Unable to do Response.Write!!!

    Hi! I am new to WF and am trying a small application do some processing and give back a variable to asp.net and I am trying to write that variable using response.write();.But I was unable to do that. Application is saying..Response.Write is not applicable. I am using the WorkflowCompleted event to do the Response.Write.One more thing I observed is, before application reaching the BreakPoint at WorkflowCompleted event handler, the page was loading completely into the webform.Is it because of the Asynchronous Behaviour of the WorkFlow foundation I will be thankful, in case of any help in this regard... Thanks & Regards Hemanth Try: HttpContext .Current.Response.Write( "Foo" ); Instead of: Response.Writ ...Show All

  • .NET Development taking id of current node???

    i have an xml file for my announcements; and when user click edit button i must take it id of current node because i must forward this to my editannouncement function for edit its context; so how can i take current node id for forward this id for example;; textbox1.text = annTitle; textbox2.text = annBody; id class1.editannouncement(int annID, string annTitle, string annBody); so edit announcement takes this id and find this announcement from xml file and edit it; Then take text value of this node. You can take text value of XmlElement node with InnerText property. http://msdn2.microsoft.com/en-us/library/system.xml.xmlnode.innertext.aspx ...Show All

  • Visual C# Guide on Cross Threading

    Anyone have a good guide on cross threading Essentially, I'm trying to access a Windows form control outside of the thread it was created in. Any help would be greatly appreciated. :-) have you followed the example in the link supplied in order to access a UI control from another thread, you need to invoke that control, an example on how to do this is given in the link so in your case you may wish to do this. //main form public delegate void MyTextBoxDelegate(bool enable); .. .. public void DoEnableTextBox(bool enable) {    if (this.theTextBox.InvokeRequired)    {       MyTextBoxDelegate theDelegate = new MyTextBoxDelegate(this. ...Show All

©2008 Software Development Network