Questions tagged [locked]

244 questions
1
vote
0 answers

Respond to volume buttons when phone is locked

I wrote an app which starts record audio in response to holding volume up button on phone or headphone, I'm doing it inside dispatchKeyEvent method and it's fine Problem is, I want to do it when the phone is locked in my pocket, I want to just hold…
Ali Molaei
  • 396
  • 2
  • 13
1
vote
1 answer

UNIX: rename files piped from find command

I basically want to add a string to all the files in a directory that are locked. I'm having trouble passing the filenames to a mv command: find . -flags uchg -exec chflags nouchg "{}" | mv "{}" "{}"_LOCK \; The above code obviously doesnt work but…
Jon
  • 13
  • 3
1
vote
0 answers

Checking out an svn copy leads to "working copy locked"

I have an svn server and with a working copy checked out on my local machine. I want to create another working copy on a webdav server by using the davfs (allows you to mount a WebDav service locally). When checking out a copy to the davfs it simply…
SMeznaric
  • 430
  • 3
  • 13
1
vote
1 answer

How to view Serilog log file while it is used by another process?

I am logging my data by Serilog and I am not able to view the log files of the current day because they are used by another process. I created logger in my program.cs and it is logging data very well Log.Logger = new LoggerConfiguration() …
1
vote
1 answer

I couldn't be able to execute my code 2nd time because of lock-age of exe file?

I am working on a C# project, but when I run my program 2nd time it starts giving below error Severity Code Description Project File Line Suppression State Error Could not copy "obj\Debug\IsLtd.exe" to "bin\Debug\IsLtd.exe". Exceeded retry…
1
vote
0 answers

How to open a new browser tab with locked address bar?

I am able to open a new browser window with locked address bar using this code. window.open('example.com', 'mysite', 'width=800,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no'); It…
Kristián Filo
  • 827
  • 2
  • 8
  • 25
1
vote
0 answers

Detect Keyboard shortcut when computer is locked

Is there a way to detect keyboard shortcuts (For example Ctrl+J+F1) when the computer is locked? It's actually no problem to do that, when computer is not locked and application is in background (Like that:…
xileb0
  • 451
  • 2
  • 6
  • 18
1
vote
1 answer

Informix - Locked DB due to lock created by cancelled session?

SI attempted to run a script to generate a table in my Informix database, but the script was missing a newline at EOF, so I think Informix had problems to read it and hence the script got blocked doing nothing. I had to kill the script and add the…
Matias Barrios
  • 4,674
  • 3
  • 22
  • 49
1
vote
2 answers

excel vba corrupts file - locked for editing + Removed Records: Sorting from /xl/worksheets/sheet3.xml part

I have a file that has a vba macro to paste and sort data. Now everytime i save the file, when opening it says it has a problem = removed records :sorting from sheet3 ( even tough i do not have a sheet3 in my file) , and my file gets corrupted and…
ruisadias
  • 17
  • 3
1
vote
2 answers

MATLAB - property

I had created a simple password program with matlab. As you know the typical password programs have a simple idea which is if you enter your password incorrectly three times, the program will send you LOCKED! error. so how can I add the…
Joe
  • 11
  • 3
1
vote
0 answers

Java GUI stuck when press a button

I have a button "Login" in my GUI, when I press it, it goes here: private void loginBtn(java.awt.event.ActionEvent evt) { Login log = new Login(robot, driver, username, password, server, url); logStatus = log.login(); Control check = new…
Davide Melis
  • 39
  • 1
  • 8
1
vote
1 answer

Android application doesn't work when screen is locked

I've written application on Android to sent SMS when someone has changed phone's position. It's working fine, when screen isn't locked. Even if app is running in backgroud, but screen is turned on, then everythings works fine. The problem is when…
1
vote
4 answers

SQL Server rows not editable for Access after Insert

I have this problem: I'm using a SQL Server 2008R2 backend and MS Access 2000 frontend where some tables are connected via ODBC. Following Structure (Tables all on SQL-Server): Import (not connected to Access) Products (connected via ODBC to…
Misc
  • 23
  • 5
1
vote
1 answer

High Mysql Load - CPU 360%

i having a high mysql cpu usage , on server Intel(R) Xeon(R) CPU E5520 @ 2.27GHz 16 core of processors and 16 G.B ram running on centos 5.4 the load average for the server 500 - 900 , that's really HIGH NUMBERS here is some information to help us…
iLinux85
  • 403
  • 2
  • 6
  • 20
1
vote
3 answers

Excel form listbox issue when using locked property

I'm having an issue with the way a listbox behaves on an Excel form. Steps to reproduce the issue: Create a user form with one listbox control Use following code with this user form: Private Sub ListBox1_DblClick(ByVal Cancel As…
Cpu1
  • 77
  • 8