Questions tagged [locked]
244 questions
1
vote
5 answers
It seems that your device does not support camera
I have come across an error which I guess is very common in OpenCV apps. When I try to run the app, it says "it seems that your device does not support camera(or it is locked)". I have seen this and this and I have already done whatever they have…

Vishal Chhatwani
- 167
- 1
- 4
- 14
1
vote
0 answers
Receive sound button click when the phone is locked
I need to receive long sound button press event even if my phone is locked.
I tried using SettingsContentObserver and AudioManager but it only works when the music is playing.
Source: https://stackoverflow.com/a/15292255/4757621
Currently I am…

Liudas Indrašius
- 41
- 4
1
vote
1 answer
VSTO - Lock all cells of excel worksheet without changing selection
I'm developing an application add-in for excel using VSTO, programming in VB.NET. I'm trying to lock (by setting ".locked = true") for all cells in my worksheet, and I'm currently doing it this way:
Me.sheet =…

Leonardo Valverde
- 137
- 2
- 12
1
vote
0 answers
Wake up a locked, sleeping device, screen off - Android
This works for my purpose to wake up a locked, sleeping, screen off device:
PowerManager.WakeLock screenOn = ((PowerManager)context
.getSystemService(context.POWER_SERVICE))
…

John Smith
- 3,493
- 3
- 25
- 52
1
vote
1 answer
C# SQLite, database being left locked after a read
I have read some of the related posts about this and didn't quite understand. What is happening is it appears that after this access to the database, the database is being left locked so that it can be read, but not written to. After exiting the…

Keith Kolbo
- 15
- 1
- 5
1
vote
0 answers
UILocalNotification: Execute code when screen is locked
currently I'm developing a iPhone app that automatically turns on the light in my room. Therefore my app needs an alarm clock function, which means I have to find a way to trigger an event at a specific time.
In the moment I create…

André
- 464
- 4
- 17
1
vote
0 answers
odbc mysql database locked
i'm new to mysql, i'm using odbc to access a mysql database i created. i've noticed one of my other sofware packages uses mysql and once i open my database, the other datbase is locked. i close the connection immediately when i leave my database but…

user3701191
- 29
- 1
- 5
1
vote
1 answer
Locking / protecting a cell or column in Jasper iReport
I'm trying to lock a column/cell in an excel sheet that is created from Jasper iReport, because our client doesn't want the user to be able to update the formula. I haven't been able to find much on this.
I added the locked property that I found in…

jem
- 63
- 1
- 8
1
vote
1 answer
Service stops running when phone is locked
I have a started service that is started from an activity of my application. I am using this service to play online radio (like TuneIn)
The problem is, when I lock down the phone;
If my application is on screen (started and visible), service…

Taner
- 4,511
- 3
- 18
- 14
1
vote
1 answer
AD ERROR Likes: ERROR CODE[80070005] MSG[Access is denied. ]
Recently, I have tried to test the user while if it was locked or not in AD server, but get this error info ERROR CODE[80070005] MSG[Access is denied. ], I have logined in the AD server and find the user wasnot locked...
I am sorry to know what…

Edward
- 249
- 1
- 4
- 16
1
vote
1 answer
Access a locked folder
Ok so my supervisor is currently testing something with Windows Permission Settings for folders, basically setting who can access it and who can't. He wants me to find out if I can get in, without permissions.
Basically checking how secure this…

moonblade
- 287
- 1
- 3
- 13
1
vote
1 answer
do concurrent kernel execution require use of pinned memory
There are a few different forms of task parallelism that can be exploited with CUDA. we could execute copying memory back and forth in parallel with kernel execution. in this case we have to allocate host memory as pinned memory using cudaHostAlloc…

shadow
- 141
- 1
- 7
1
vote
1 answer
Toggling locked and unlocked toolbox elements in VBA
I'm currently trying to toggle a 'Locked' element so that it is no longer locked once a check is performed. In the properties of the button, I have set the default value to be 'Locked' so that the user cannot use it's functionality.
When another…

jezzipin
- 4,110
- 14
- 50
- 94
1
vote
1 answer
what is the way to check whether excel cell is locked or not?
How to Check if a particluar cell in that range is locked,
I am posting the small snippet of my code, Please suggestme , the better way of writing to cell if the cell is not locked.
if (reader.HasRows) { minRow = 0; minCol = 0;
…

user301016
- 2,207
- 7
- 36
- 50
1
vote
1 answer
alert/notification in locked screen
I want to do a simple alert as per given time from the application,alert is also show if phone is locked. and when press ok then go to application view(if phone is locked). if we can not navigate to the application programmatically, then i can do…

Abhishek Patel
- 71
- 4
- 12