My exe is running in the background so ,it is not having focus .So this solution does not work .I need a solution in which even if my exe is running in the background ,captures the hotkey combination and does it,s prdicede task.
Prashant Gadhave
Posts
-
Hot keys -
Enabling and disabling desktop icons programmaticallyMy application has three users 1.Administrator 2.Cash collector 3.User .If somebody has logged in as administrator he should be given access to all the drives ,desktop etc. if he is a cash collector he should be shown only one shortcut on the desktop and other shortcuts should be disabled and if he is a user he should be shown only one folder on C drive. Is there any way to implement this functionality. Thank you.
-
Hot keysIn the project I am working on ,I have one exe running 24*7 on Kiosk and its size is FullScreen. I need to start one exe (login application)as soon as I press Alt+Ctrl+A key on keyboard.How can I do it?Any help please.It's urgent. Thank you.
-
Disabling keyboard keysFor some reasons my company is using traditional keyboards with all the keys.
-
Disabling keyboard keysI am neither creating a virus nor any malware . I am working in a company whose product is kiosk .For its security purpose I need to implement this functunality so please help .
-
Disabling keyboard keysI am working on a windows application .This application will be running in the background and capturing all the keystrokes .All the short-cut keys need to be disabled i.e. Alt+F4 or windows+M etc by this application.If the user presses alt+ctrl+8 he should be shown a login screen and if he is authorised the keys should be enabled according to his permission level i.e Admin ,user etc. If this application has got the focus then only it captures events , but as the case mostly is ,there is some other application running which will have focus but I still want to get these keystroke events in my application .Any help please. Thank you.
-
using datarow array as data sourceI have used a dataset and fired a query on it using select method which returns datarow array.This array I want to bind to datagrid. I tried your solution ,But what I saw in the datagrid was RowError,RowState,ItemArray,HasErrors,Table as columns which are not the columns in dataset. Any help on this?
-
using datarow array as data sourceIn my windows application (C#) I need to use a datarow array as datasource for datagrid ,but I don't know how to bind it .Any help please.. Thank you.
-
File HidingHi , I want to hide a file after creating it in C# by using File class and also to hide it .After creating it using File class's create method when I use File class's set attribute and set the attribute of file to hidden and readonly ,only readonly is getting set but the file is not getting hidden.What to do?
-
Changing web reference urlMy asp.net project is live and I have used one web service in that project .Now I want to change web reference in that project.Do I need to make a change in code ,compile it again and deploay my new apllication again , or is there any other way by which I can get the same thing done by making changes in disco,map or reference file . Thank you.
-
locking rows in a multithreaded applicationIn a windows application(C#) I am working on,I have 5 threads accessing data from a table and running one after another.I want to lock data for each thread when it is accessing data ,so I have used "for update" in my select statement but it doesn't work.Every thread when accessing data sets one flag in the table so that other threads should not select this data again,but some times 2 or 3 threads access the same row .Any help to lock the rows please. Thank you.
-
problem with dropdownlistI have already done it ,my code on page load is query = "select * from CashDataTable"; conn = new OleDbConnection("FILE NAME=C:\\abc.udl"); conn.Open(); cmd = new OleDbCommand(query,conn); reader = cmd.ExecuteReader(); DropDownList1.DataSource = reader; DropDownList1.DataTextField = "AcctNumber"; DropDownList1.DataValueField = "AcctNumber"; DropDownList1.DataBind(); conn.Close(); but still it doesn't work.
-
problem with dropdownlistIn the project I am working on ,I need to add new records in a database and show the first column of all these existing records in a dropdownlist on the same page.The problem is that when I add a new record its value doesn't get reflected in the dropdownlist and I need to refresh the page to see the changes.What should I do so that I will not need to refresh the page and still the value will get added to dropdownlist. Thank you.
-
Datagrid eventSorry ,I don't know where the code has gone but the code was having a datagrid which is havig 5 columns 3 showing data and 2 columns of buttons .
-
Datagrid eventIn a datagrid code which is like this I am getting event when I click on Next or Prev link of page But I am not hetting the events when I click on button .Any Idea please. Thank you.
-
Decrypting dataHi. I want to decrypt data encrypted using System.Security.Cryptography.MD5CryptoServiceProvider class .Is there any way to do it? Thank you.
-
Data Encryption in MySqlHi. I am working on a project in which I need to encrypt data I am storing in MySql Database.There are many codes available on Internet but most of them are in PHP and I have to encrypt data in C# windows application .Any help please. Thank you.
-
Shut down exe running on remote computerHi friends .I am working on a project and in that I need to get all the processes running on remote computer which I can but the problem is that I have to shut down one exe which I am unable to do .Any help please .
-
stop a process on remote computerI have all the processes running on remote computer in Process array.I want to kill one specific process.how to do it ?
-
Starting remote computerHi .I want to start a remote computer connected to my computer through LAN .Any idea?