Hello, I'm wondering how it's possible to create an application wide event that's fired when any keyboard or mouse key is pressed and mouse move? Please help. Thanks
xkx32
Posts
-
keyboard and mouse -
Is there any packer for .NET?Is there any packers for .NET apps such as: http://upx.sourceforge.net for win32? Thanks
-
Should I use Dispose in this situationhello, i'm initiating an object inside a method: private void Example () { MyClass ins = new MyClass(...); ins.AMethod(); ins.Dispose(); } i'm wondering if the last line: ins.Dispose(); is necessary? Or C# does it automaticlly?... i mean disposing the object as soon as the method is finish. please advise
-
how can i show a message if it wasn't used for a specific period of time?Thanks but you mean OnMouseMove/OnKeyDown of the form? What if the mouse was moved over a control, such as a treeview? Should I handle OnMouseMove/OnMouseMove of all the controls in my form?! This is not right.
-
how can i show a message if it wasn't used for a specific period of time?hi there can you please tell me how can i show a message if my app wasn't used for a specific period of time? i mean how can i determine that my app wasn't used!!? thanks -- modified at 21:40 Friday 28th July, 2006
-
how can I get the original properties of my form back?hi i have a win form... and i'm changing it's properties at runtime (e.g. BackColor) at some point i want to get back the orginal BackColor.. the color i specefied at design time. when i'm creating a new instance of the form and trying to copy the BackColor from it it's not working! it's as if i changed the class not an instance of it at runtime!!! please help me
-
is there a way to check if the current input language uses latin letters?hi can you please tell me if there's a way to check the current InputLanguage if it's considered a latin language? thank you
-
how can I show the search progress?!Thanks but what index you're talking about? I'm using the LIKE clause to do a simple search...
-
how can I show the search progress?!hi i am using c# and ms access and i have a search functionality in my app... i am wondering what's the concept behind showing the search progress by a progress bar? thanks for your help in advance
-
Should I use obj = null?Hi guys I'm wondering if I should set the objects that I create to null after I'm done with it... let's say I create FileStream object in private method, after I close the object should I write: FileStreamObj.close(); FileStreamObj = null; or: FileStreamObj.close(); Is enough? TIA
-
Why the following condition is never met?thanks, Decimal worked
-
Why the following condition is never met?double number1 = 1, number2 = .5; while (number1 > number2) { number1 -= .1; MessageBox.Show(number1.ToString()); if (number1 == number2) MessageBox.Show("condition met"); // <- never :( } Please help
-
How can I create a var that doesn't get destroyed after exiting the method?I am wondering if it's possible to create a variable in a method as follow: string tttt = "Gggg"; and then after exiting the method i can still access that var
-
How can I compare doubles?hello can you tell me how can I compare two double vars in my app i tried: if (var.Equals(.4)) but it's not working... and i am sure the two var contains the same value (i used MessageBox to print the vals) please help me
-
How can I create a var that doesn't get destroyed after exiting the method?hi can you please tell me how can I create a local var that doesn't get destroyed after exiting the method? thanks
-
Storing binary data in MS Access database -- what do you think?Hi there, I'm coding a photo gallery desktop program and I'm planning to store the images in an MS Access DB (OLE field). The size of the images I got is around 600 MB... ~ 400 KB each. What do think? Can MS Access handle it or I should look for an alternative? Please advise. Your help would be greatly appreciated.
-
Restoring control's default propertiesI'm changing a control property at design time (backColor, etc), at some point of the program... I want to restore the control's default properties that I have chosen at design time. Is that possible? thankx
-
How to get the rows total of an OleDbDataReaderhi can you tell me ho can i get the total of returned rows of OleDbDataReader? thanx
-
Compacting MS Access database from C# code?Hi! Does anyone have an idea how it's possible to compact and repair an MS Access database using C#? The option is avaiable in MS Access main menu but I don't want to do it manually. Thanks in advance.