| Thread | Last Post | Replies |
|
| Who is Muhammad? | 28 Jan 2008 20:32 GMT | 13 |
I believe that my topic is useful and I would like to share my thoughts. THANK YOU. Who is Muhammad?
|
| Mouse Clicks | 28 Jan 2008 20:32 GMT | 2 |
How can i detect mouse clicks on any windows application and get information about the application that has been clicked? Thanks!
|
| Usb Classes in VS 2008? | 28 Jan 2008 20:26 GMT | 4 |
I have VS 2005 and there aren't any usb classes built in. Have they put any in 2008? Thanks Mike
|
| Change Windows Form Location without Title Bar | 28 Jan 2008 20:24 GMT | 1 |
I want to create a windows application with a small topmost form. Because the form is so small, It does not include title bar. Is there any control, so I can use it to move FORM location by mouse? Thanks.
|
| Notified when other top-level windows open | 28 Jan 2008 20:06 GMT | 1 |
Is it possible to get notified in my C# application when a top-level window is opened at another application? By top-level window, I mean main application windows, dialog boxes, pop up windows, the sliding notification window of Windows Live Messenger and so on. I need to get
|
| Why can my Form only open once per Excel session? | 28 Jan 2008 20:02 GMT | 4 |
I'm still creating a Form to be used in Excel. The Form is opened via a vba macro which calls a C# wrapper within an xll that opens the Form, like this: VBA:
|
| Navigate Datagrid | 28 Jan 2008 19:35 GMT | 4 |
Hey All, I have the following code example where the user gives me a query and I populate a grid: private void btnTestSQL_Click(object sender, EventArgs e)
|
| about delegete | 28 Jan 2008 19:31 GMT | 3 |
Assume I have some classes and in this case the Ticker class below is relevant for my question. I have a Timer instance in this class with interval set to 1 second. When the timer elapse efter each second it
|
| Strange Static contstructor behavior | 28 Jan 2008 19:28 GMT | 2 |
I am having some unexepected results with a static constructor. I have the following class design ParentClass<TType> {
|
| SystemEvents.PowerModeChanged from windows service | 28 Jan 2008 19:25 GMT | 2 |
I used SystemEvents.PowerModeChanged to monitor from WinForm application and it work fine. I put that code in to Windows service application and it not seem to catch any power event.
|
| DllImport and Structures - spidermonkey | 28 Jan 2008 19:16 GMT | 2 |
Having trouble with getting Error Information from spidermonkey. How would one convert a C structure to CSharp? struct JSErrorReport { const char *filename; // source file name, URL, etc., or null
|
| General exception Handling question | 28 Jan 2008 19:10 GMT | 13 |
Just a question on exception handling and the stack trace... Throughout my application when any data access is ocurring, i use a try-catch for exception handling to simply display an error message. This is good and working well. I now notice that this exact same general error
|
| IEnumerable<T>.Intersect() not calling my object's IEquatable<T>.Equals()? | 28 Jan 2008 17:11 GMT | 11 |
I have a class, MyObject, that implements IEquatable<MyObject>. I'm trying to get the intersection of two MyObject[] arrays. According to the documentation for IEnumerable<T>.Intersect(), it's supposed to use the default equality comparer, EqualityComparer<T>.Default, to compare
|
| Object equals | 28 Jan 2008 16:39 GMT | 11 |
I am looking at the object equals methods and am confused. I was under the impression that o.equals compares content (not whether they are the same object as o1==o2 does). But in my example, this doesn't seem to be happening.
|
| event and delegate | 28 Jan 2008 16:13 GMT | 2 |
Assume I have a declared a delegate and an event with that delegate type. We can assume this class is called Test. Now to my question when this event will be fired must this be done within the same class which is Test where the event is declared?
|