| Thread | Last Post | Replies |
|
| How can I use Reflection to call a com made by matlab?? | 22 Sep 2005 20:54 GMT | 2 |
I wrote such code: Assembly asm = Assembly.LoadFrom(@"Tools.dll"); The Tools.dll is made by matlab, which contain some fuctions wrote in matlab.
|
| How to read text from the interface of another application? | 22 Sep 2005 20:03 GMT | 2 |
I want to write a C# windows application that reads some text from the interface of another (separate) application, and am looking for a few ideas as to where to start. Specifically, I would appreciate some help with the following questions:
|
| How to monitor files create by a specific process | 22 Sep 2005 19:56 GMT | 2 |
I have a program that will be launching another process. I want to be able to monitor the files created and/or modified by this second process. I know about FileSystemWatcher, but there's no way to limit it to a specific process that I know of. Any ideas?
|
| Style Question: Event handling | 22 Sep 2005 19:25 GMT | 2 |
The canonical way of declaring delegates for events is to include a parameter representing the sender as well as an EventArgs derived class (or EventArgs itself) as the second parameter representing the data that accompanies the event. For example:
|
| Regular Expression check for non matching string | 22 Sep 2005 19:08 GMT | 1 |
I am trying to write a regular expression to ensure the selected value is not equal to a specified string. something like !~/^(Select Salesperson)$/; Thanks!
|
| Decrypt string encrypted in Java | 22 Sep 2005 18:35 GMT | 6 |
Hi there! I have a string that was encrypted in Java using the classes DESKeySpec, SecretKeyFactory, SecretKey, and Cipher. It looks like using the SecretKeyFactory puts a transparent layer on top of the bytes from our key so when I try to decrypt using the classes in C#, I get ...
|
| Reference counters | 22 Sep 2005 18:32 GMT | 12 |
Is there a way to determine the number of references to an object? I only need a reference count. Thank you, Bill
|
| Q: How To Set a mask on a TextBox | 22 Sep 2005 18:32 GMT | 2 |
Is it possible to set a mask on a TextBox control? I want to limit the chars to be entered, in one box i want just numbers 0-9 and in another box i want to separate the areacode in a phonenumber automaticly...
|
| Syntax for regular expression to highlight text in HTML string | 22 Sep 2005 18:26 GMT | 2 |
I'm relatively new to regular expressions and was looking for some help on a problem that I need to solve. Basically, given an HTML string, I need to highlight certain words within the text of the string. I had it working somewhat, but ran into problems if one of the ...
|
| HttpWebResponse getting attributes | 22 Sep 2005 18:25 GMT | 5 |
How can I get all the attributes of an HttpWebResponse? I do a request to this site: http://pipa.inov.pt/cgi-bin/camera but originaly it comes with a PAGE attribute that gives me the time in clock ticks of the captured image like this:
|
| Custom Thread Pool (by Mr. Jon Skeet) Enhancement | 22 Sep 2005 18:24 GMT | 5 |
I'm currently in the tail end process of developing a high scalability server for my employer. Essentially it receives short socket based connections with an ASCII message, parses that message, does some processing and then sends out a string reply on the same connection.
|
| Are delegates true type safe? | 22 Sep 2005 18:22 GMT | 3 |
I was just reading this article http://www.netobjectives.com/resources/downloads/Best_Practices_CSharp_Delegates.pdf In which the author had mentioned <quote>
|
| Can web page contents be retrieved? | 22 Sep 2005 17:30 GMT | 1 |
Hi, I was trying to find the right set of objects to retrieve a web page and display its contents. I don't want to display the page, just the HTML. I used to use XMLHTTP Request, but I don't see a lot of examples with .net and c#, so I thought it must have been replaced with
|
| Bitmap PixelFormat Conversion | 22 Sep 2005 17:12 GMT | 3 |
Is there some way to convert a Bitmap from one PixelFormat (16bit or with indexed colors) to another(24bit), without doing per pixel operations?
|
| Startangle and sweepangle | 22 Sep 2005 16:57 GMT | 1 |
I was just wondering what is a start angle and sweepangle in a graphic.drawarc(pen,rectangle,startangle,sweepangle) I have got the coordinates of the rectangle but i want to get the start angle and sweep .
|