"SendKeys" equivalent in Linux
Date: 24 Jul 2005 12:42:47 -0700
In Windows it is possible to control one application from another by
sending keystrokes to the buffer for that app. The technique is
limited, of course, by what you can do via the keyboard in the driven
app. Is there an equivalent in Linux?
Thanks.
Relevant Pages
- Re: "SendKeys" equivalent in Linux
... > sending keystrokes to the buffer for that app. ... The technique is ... One is just to use an input file: ... (comp.os.linux.misc) - RE: ASP.NET data access
... Since you need disconnected data, datareader is not necessary. ... > which was then saved back to the db when the app was shut down. ... > 1 - the original technique which seems like a huge waste of resources ... > the db access class is created. ... (microsoft.public.dotnet.framework.aspnet) - Re: Application xxx has encountered a serious error and must shut
... it refers to errors in buffer management code - functions like strcpy etc. ... My app is a Managed C# CF3.5 app and makes extensive use of a TCP Socket ... NB I replaced the MS SerialPort with OpenNetCF Serial and this seems to ... (microsoft.public.windowsce.app.development) - Re: ASP.NET data access
... > Since you need disconnected data, datareader is not necessary. ... >> which was then saved back to the db when the app was shut down. ... >> it is returned from the dataset saving a connection, ... The problem that this technique seems to have ... (microsoft.public.dotnet.framework.aspnet) - ASP.NET data access
... We have used ADO datasets previously for a windows application that we developed where the entire db was loaded into the dataset at the beginning of the application and the user made changes to the dataset which was then saved back to the db when the app was shut down. ... Which means that when data is required it is returned from the dataset saving a connection, but has used a heap of resources loading from the db in the first place. ... We would in this case have insert methods which would then use inserts, updates and deletes to directly update the database. ... The problem that this technique seems to have is that you are creating a dataset in each method, which is failur repetitive and may only contain a few rows. ... (microsoft.public.dotnet.framework.aspnet) |
|