Answer Questions
Sentme [HIS] TI Designer for VS2005
Hello, Is there a version of TI Designer for VS2005 Today it only works on Visual Studio 2003. Thanks. ...Show All
Mikael Gosen Problems with .Net 2.0 RC Framework and accessing Performance Counters (specifically Processor)
I have written a tool to dump performance counter data from any number of sources to a perfmon-compatible csv file. The problem is... on certain performance objects such as Processor\% Processor Time\_Total.... I get a zero back no matter what I do. There are alot of counters that give me zero back that shouldn't, but at the same time there are alot of counters that give me back what I expect (ie. Memory\Available KBytes). I have checked al ...Show All
PhoenixRises Webservice works only with SOAP, not HTTP POST/GET
I created a webservice that works well. I can retrieve info from it with SOAP and that works good. But what I miss is the HTTP POST and GET functionality. f.e. MyWebservice.asmx/SearchFor Searchtext=blabla The error I receive is: Request format is unrecognized for URL unexpectedly ending in '/SearchFor/'. In the info at /MyWebservice.asmx op=SearchFor the info about HTTP POST and GET is also missing. What setting do I have to cha ...Show All
wookie Web Service proxy
This might be really basic,but can someone pls explain. I have created a proxy class using WSDL.exe.Do I still need to add the web reference. I'm a bit confused does one normally do it one way or the other or both ways (adding the web reference or using WSDL.exe). Not sure if this even makes sense.. Thanks in advance No, you typically do one or the other. Underneath Visual Studio actually us ...Show All
SW Skeen How to programmatically determine the version of internet explorer, msxml etc?
I have an ActiveX control (.NET 2.0) running in IE. How can I programmatically determine the versions of IE and msxml Alex You should not use MSXML from managed applications. See http://support.microsoft.com/default.aspx scid=kb;en-us;815112 for more info. To answer your question: See for IE detection http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html For MSXML version d ...Show All
Melipao Randomly GNE "General Network Error" after upgrade MSDE 2000 to Sql2005 Express
I wish nice day, we have many, many bugs ( arround 10 errors messages from every user per week --- today 300 users using our application and up to end of May, 2006 we reinstal Sql 2000 MSDE -> 2005 Express next 750 users) from our application ( .NET 1.1, localDB on Sql2005 Express ) with exception bellow: ----------------------------------------------- General network error. Check your network documentation. -> ExecuteReader [.Net SqlCl ...Show All
karthikeyan.A how do I get the key for a collection?
If I have the following VB.NET collection: Dim oUser As New Collection oUser.Add("jbloggs", "CN") oUser.Add("jbloggs", "samaccountname") oUser.Add("Joe Bloggs", "DisplayName") oUser.Add("Joe", "givenName") oUser.Add("Bloggs", "sn") I can do this: msgbox (oUser("CN")) and get this result: "jbloggs" But how would I check for the collection's key = "CN". It would be handy if the Key could be used in conjunction with its value as well. Example ( ...Show All
Tobi3965 Concurrency violation when updating twice
I have a parent row that I create, which will have a number of child rows related to it. There is a status field in the parent row that I give a value of "UnderConstruction" (which is an enum with a value of zero) so that, while I'm creating the child rows, the parent row will not be processed by another method that looks for new rows to process. After populating the rest of the parent row, I do a .Update on its SQLDataAdapter, which will ...Show All
darien_specter Generic List: ConvertAll
let's say i have a generic list of guids i want to convert to strings. when i type the following [c#]: List<Guid> list1; // Fill list List<string> list2 = list1.ConvertAll<string>(delegate(Guid g){return g.ToString();}); ...it works fine. but when i declare my own generic list: public class ManagedList<T> : List<object> ...and try to do the same thing as above: ManagedList<Guid> list1; // Fill list ManagedList ...Show All
igibbwiz Newbie-What is the proper way to handle special characters in XML?
I'm having a problem with single quotes in my XML document. I have Xml that resembles something like below: < xml version="1.0" encoding="utf-8" > <root> <MyText>Text contain's a single quote</MyText> </root> This content resides in a file and when I extract the xml and pass it to a stored procedure, instead of the entire xml being sent to the stored procedure, it is being truncated because of ...Show All
Sneha Desai Serial port
I've been looking some information about send and recieve files tru the serial port, and i can't find something usefull to me. I'm using Visual Studio 2003 and C#, so the System.IO.Ports doesn't work. Does anyone know some examples or code that could help me or al least what is the best way to do this. Thanks. System.IO.Ports will only work in .NET 2.0 (ala Visual Studio 2005). This class is not present in .NET 1.1 (ala ...Show All
Nicole3288 IE memory problem with my script ? or it's bigger ?
Hi, I'm Francesco from Italy, and I want to post a technical help request: I use the script above to "callback" a remote .aspx page. My site make larger use of this because I'm trying to develope a RealTime Multiplayer D&D based game, and until now everything goes well. This morning I left IE open on my chat page. When I come back after some hours, a message about "increasing system virtual memory" was displayed by OS. I saw the Ta ...Show All
Zurdo Validation problem
This really isn't an ADO.NET question, Hasan. You might perhaps get a more definitive answer in an ASP.NET forum. Off-hand though, I think you may be able to get the behaviour you want if you set the CausesValidation property of your search button to False. -- Brendan Reynolds (MVP) wrote in message news:68d4e511-2603-4dca-886a-1babd2e9cc45@discussions.microsoft.com... > Hello again: > I put requiredFieldValidator controls o ...Show All
King Solomon Reading from DataGrid and save the Data into Access
Hi there, I have a slight problem here which is that i have a project that needs to convert the data from Excel file to Access db so i have wrote the code to read the Excel sheet to a DataGrid and it works fine but now i need to get that data back and save it into Access db, so what i need to do to get this done exactly thanks H.Saber I have tried to follow the sapmle in the page you gave me and the code is below but whenever i try to ...Show All
to_dickey My programs won't start up on Win98 or Win2000
I've been struggling hard with this for about a month. I have a program written in C# .Net 1.1, that has about 170,000 lines of code and is in daily use by thousands of users. Any version that I released after about 9/1/05 simply fails to start up at all on Win98 or Win2000. "An unhandled exception has occurred", followed by thread id, but absolutely none of the usual details. Keep in mind that it continues to ...Show All
