Answer Questions
Innovia SCCP on Vista?
Any plans to enable SCCP on Vista Currently Vista install is blocked by the setup.exe, which is sad.... MSterin wrote: Any plans to enable SCCP on Vista Currently Vista install is blocked by the setup.exe, which is sad.... Yup, we had to cut down on the size of our test matrix - as a small team we don't have the resources to keep all the early-adopters happy. Sorry! We'll revisit this decision once Vista is suppo ...Show All
Filipe Fortes - MSFT WebBrowser events question
I have the following code that navigates to a web page. When the DocumentCompleted event fires it calls the Login method which logins to the page. My question is, how to I create an event handler to call another method once this page (the one after logging in) is finished loading private void button1_Click( object sender, EventArgs e) { webBrowser1.Navigate(textBox1.Text); webBrowser1.DocumentCompleted += new WebB ...Show All
Jean St-Arneault How to wait till all threads complete their job ?
Hello friends, Kindly fo through the following code sample, In this code, i want to stop execution till all the threads have complited their job. and i dont know how can i do this. static ArrayList FarchedContent = new ArrayList(); public static string SearchContent(string KeyWord) { objThread = new Thread[20]; for (int i = 0; i < 20; i++) { objThread = new Thread(new ThreadStart(FatchContent)); ob ...Show All
Laputa09 How to convert an integer number to alphabet
Is it possible in .NET to convert an integer number to alphabet Like this: 1 ---> One 2 ---> Two .... I don't want to create a mothod for this, I need a .NET module, like Int32.Parse(). Thanks for any help. I'd seen it before. But I cannot remomber it. As I think, there isn't a .NET function to do that, but there are some samples to do that simply! Check this article http://www.codeproject.com/ ...Show All
Josh Using a Timer
Hello, Here's my problem, i'll write it in text code: now time = 18.00 turn on alarm = 20:00 start_program(); check_time() if (now time = time to turn on alarm) --> turn on alarm else if(now time = 30min to turn on alarm) --> make a sound else if(now time = 15min to turn on alarm) --> make a sound else if(now time = 5 min to turn on alarm) --> make a sound So I kind of want a timer that know what time it is, so when its ...Show All
smobrien C# API
I'm fairly new to C# and i'm having trouble finding C#'s API. I tried googling it and had no luck. Thanks C# is the language. It doesn't have APIs. However, most people use the .Net Framework APIs shipped by Microsoft when they program in C#. You can find more information on the .Net Framework here: http://msdn.microsoft.com/netframework/ If you're interested in learning the language, http:/ ...Show All
Bryan Chriscoli Writing to Specific Locations in a text file
Hi, How do I write to specific locations in a text file. For example I need to delete the characters from index x to index y. Thanks, Bruce Hi, load the modified string into StringBuffer from the text file and re-write the file again. It's unfortunate that .NET 2.0 does not support memory mapped file... yet. ...Show All
Kendal Walton Copy Local Fails
I have a large solution (16 c# dll projects, 1 c# exe project) where the dll projects are project references of the exe project. I have set copy local true for all the projects. The problem is on alternating rebuild-all builds one or two of the 16 dll's are not copied into the exe's bin/debug directory. On the good build, all references are there and on the next build, some of the dll's are missing. Any suggestions SB ...Show All
mkrayirath .NET Runtime 2.0 Error Reporting
I badly need help for this issue I am facing every time I try to run the simulation and export the details into excel I get the below mentioned error. Please help me .....I desperately need the details exported into an excel sheet. Event Type: Error Event Source: .NET Runtime 2.0 Error Reporting Event Category: None Event ID: 5000 Date: 5/9/2006 Time: 12:14:23 AM User: N/A Computer: TESTLABW3B Description: EventType clr20r3, P1 capman.exe ...Show All
Danieletor What is a Hashtable?
Hi, Can anyoane explain to me what is a hashtable Thank you, Hashtable is a member of System.Collections which is a collection of key/value pairs that are organized based on the hash code of the key. Read more about it on MSDN: http://msdn2.microsoft.com/en-us/library/system.collections.hashtable(VS.80).aspx hi, as what finch82 suggested, you have to study all arrays and collections(arr ...Show All
M. Nicholas Application object model question
Hello, I'm trying to implement an application class like this: http://msdn.microsoft.com/VBasic/default.aspx pull=/library/en-us/dndotnet/html/automationmodel.asp But I can't get the Application object to work; the code is: private static readonly Application instance = new Application(); public static Application Instance { get &nbs ...Show All
Sanjay12345 Intellisense Information from library dll
I have a C# library project that compiles to a dll. I have several other projects that reference this dll. However, the intellisense commenting does not display for the methods in the dll while if I include the library project in the solution (rather than just the dll in the project) I do get the information. Is there a way to have intellisense get the method information from a dll Thanks. Figured it out ...Show All
CMCFelix Help Button
I turned the help button on, but I can't figure out how to set the help that is displayed when the help button is clicked then a form element is clicked. Try this MSDN article . ...Show All
Tim Wagner Serialization/Deserialization
I'm having an issue with a Property deserilizing. From what I undersatnd you do not want to expose ArrayLists or you just can not expose them through the serilization. This is a wierd problem to me. //This works public class Person { Person[] employees; //private member [XmlElement(ElementName="employees")] public Person[] Employees { get { return employees; } set { employees = value; } } } //Now this d ...Show All
d_gao system.drawing in VS 2005 ???
Hello everybody, I am (still) discovering VS 2005, and when I find some interesting code on the net it is, for 90% of it, from VS 2003... and I got a little but simple problem with the using... I got a using system.drawing in a code I found recently, but vs2005 doesn't know this namespace... could anyone tell me what is the path of the namespace in the latest version of VS. Thank you. don't forget : LIFE IS A PARTY :-) ENJOY IT. ...Show All
