Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
lock
- Page 1
how to lock control in vb6 by given code
Programming
2 Months Ago
by Syed Zubair Ali
i have a project where i have to given code to system to
lock
different controls by using code lines in vb6. please guide.
Re: how to lock control in vb6 by given code
Programming
2 Months Ago
by rproffitt
Controls by default are locked in place (position) so that's a done deal. Explain further what you need. Also, VB6 is very old so while I did code in it till about a decade ago we have moved on to other platforms and there is no further access to the dev systems to verify any code I may offer. I strongly suggest you move away from VB6 as soon…
Lock up
Hardware and Software
Microsoft Windows
20 Years Ago
by RussD
Im having a problem with a computer that appears to randomly
lock
up at various times and there is no way to shut down the computer unless I turnoff the swith on the supply. I have replaced the RAM and ran diagnostic on the machine and it still freezes. Is there anything else that I can do?
Re: Lock up
Hardware and Software
Microsoft Windows
20 Years Ago
by <<seS>>Saint
You also might want to check your graphics card that will also make your computer
lock
up if it's to hot or just utter crap. Do you do any Over Clocking? If so on what?
lock object in non-background thread
Programming
Software Development
11 Years Ago
by Franze
…, I simply if it is an okay practise to use
lock
objects in functions which is not a background thread. If… we assume that the code that exist in those
lock
object is no more than just say 5-10 lines… 1 milliseconds to execute? Also we would assume that those
lock
objects will not be embedded anywhere where deadlocks can occur…
Lock Computer problem
Hardware and Software
Microsoft Windows
21 Years Ago
by billy61788
I'm having trouble getting the
Lock
Computer option to work. I was told that using this … to use my computer when I
lock
it. I do ctrl+alt+del and then
lock
computer and put in my password…
Lock table help...
Programming
Web Development
15 Years Ago
by zhinokin
… db->simple_query('SET AUTOCOMMIT=0'); $lockquery = "
LOCK
TABLE costumer_prof WRITE"; $db->insert('costumer_prof',$valueAdded); …gt; [/code] am i implementing the right way to
lock
table or better to use [code=php]$lockquery = "…;
LOCK
TABLE costumer_prof IN SHARE MODE";[/code] hope …
Re: lock object in non-background thread
Programming
Software Development
11 Years Ago
by Ketsuekiame
… (which may be a background thread) then you need to
lock
. Otherwise, don't bother. A sychronisation context (not to be…
Re: Lock Computer problem
Hardware and Software
Microsoft Windows
21 Years Ago
by Roberdin
[QUOTE=billy61788]I do ctrl+alt+del and then
lock
computer and put in my password[/QUOTE] Wait a moment …there! You press Ctrl + Alt + Del, click
Lock
(or just press the Windows Key and L) and then…
Re: Lock Removable Media
Programming
Software Development
16 Years Ago
by wildog
…. in each file there are 3 .REG files.
Lock
.zip lock_USB.reg - Locking just usb mass storage device…zip unlock_USB.reg - disables the
lock
on the usb unlock_CDROM.reg - disables the
lock
on the cdrom unlock_Floppy.reg -… disables the
lock
on the floppy disk just …
Re: Lock Computer problem
Hardware and Software
Microsoft Windows
14 Years Ago
by OldTime
[QUOTE=russellr;1336367]My problem is just the opposite. My computer goes into computer
lock
all by itse?lf. How do I stop it?[/QUOTE] You probably have your screen saver set to
lock
the system when your screen saver activates. Go into your screen saver settings and uncheck "On resume, password protect".
Re: Lock and Unlock SQL Data Table
Programming
Databases
12 Years Ago
by Reverend Jim
… would be preferred. TABLOCK forces a full table
lock
rather than whatever the
lock
manager would have used but can create contention… to modify data in the table. TABLOCKX creates an exclusive
lock
that locks all other users out of the table for…
Re: Lock Computer problem
Hardware and Software
Microsoft Windows
21 Years Ago
by billy61788
oh alright i get it now. i thought you had to put in your password and click ok and the it would
lock
the computer. thanks
lock commands from c
Programming
Software Development
19 Years Ago
by jax_123
i want to develop a c program from which i can
lock
the dos commands. example. when user enters a dos command, it request for a administrative password. after providing password, it executes that command.also, it facilitates to
lock
and unlock commands of dos.
Lock taskbar??
Hardware and Software
Microsoft Windows
18 Years Ago
by The Dude
Anyone know how to
LOCK
THE TASKBAR in 98se?? I looked on an XP and … right click the taskbar it has the option right there (
Lock
Taskbar) but not on 98se.... Im trying to get rid…
Lock ups have been happening since forever...
Hardware and Software
Microsoft Windows
18 Years Ago
by Dispel
… it isn't going too well. I've had this
lock
up ever since this computer was given to me as… didn't turn up too well because my computer had
lock
ups at the stage where the Setup copies installation files…
Re: Lock table help...
Programming
Web Development
15 Years Ago
by JRM
Maybe the miss-spelled table name is tripping you up? also the full dtail for the syntax is here: [url]http://dev.mysql.com/doc/refman/5.0/en/
lock
-tables.html[/url] There are other pitfalls you need to be aware of, like using an alias in queries etc..
Re: Lock table help...
Programming
Web Development
15 Years Ago
by zhinokin
tnx JRM for the reply..:).. even the i only use 1 table to
lock
..ill do an alias on it..?..am i right...?..
Lock Screen and terminate all apps
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
Hi Guys, I need to make remote app control via network where I can
lock
a computer and terminate all applications running. currently I don't have any technical direction on how to
lock
and terminate. I have no problem where to start on network and sockets! please point me to the right direction/resource Thanks
Re: Lock Computer problem
Hardware and Software
Microsoft Windows
14 Years Ago
by russellr
My problem is just the opposite. My computer goes into computer
lock
all by itse?lf. How do I stop it?
LOCK is not allowed in stored procedures
Programming
Databases
13 Years Ago
by shanker31
… name varchar(255)) begin set autocommit=0; set @x=0;
lock
table member as m1 write; start transaction; repeat insert into… if; end // The error I get is : ERROR 1314 (0A000):
LOCK
is not allowed in stored procedures [/CODE]
Lock and Unlock SQL Data Table
Programming
Databases
12 Years Ago
by Papa_Don
… stored SQL procedure that will need to be modified to
lock
the table, run the commands and then unlock the table… a very short procedure. So in essence, I want to '
Lock
the table 'run the commands here SELECT @today = GETDATE(), @ordno…
Re: Lock and Unlock SQL Data Table
Programming
Databases
12 Years Ago
by pritaeas
> I have to wonder why anyone would use TABLOCK over TABLOCKX. Technically, the
lock
will only
lock
the rows in question (if possible), so other data can still be read and modified. Lockx will block all other queries (select queries too).
Lock Screen
Community Center
10 Years Ago
by marvin_1
computer 1 (Mom) copmuter 2 (son's pc) using coputer 1, i want to
lock
and unlock the screen of computer 2 whenever i wanted.. i need a code to
lock
and unlock screen. -unable to use alt+tab or close program .. -unable to do anything please just a simple code will do . (for my assignment please help .. )
Lock Screen
Programming
Software Development
10 Years Ago
by marvin_1
computer 1 (Mom) copmuter 2 (son's pc) using coputer 1, i want to
lock
and unlock the screen of computer 2 whenever i wanted.. i need a code to
lock
and unlock screen. -unable to use alt+tab or close program .. -unable to do anything please just a simple code will do . (for my assignment please help .. ) im using VB 2012
Re: lock commands from c
Programming
Software Development
19 Years Ago
by Ancient Dragon
… it was (is) command.com. So if you want to
lock
out the command prompt you will have to write your…
Re: Lock taskbar??
Hardware and Software
Microsoft Windows
18 Years Ago
by The Dude
Yes i have heard of those.....Unfortunetly i dont know of any to "
lock
" the taskbar :( Ah well.....Thanx mate!
Re: Lock taskbar??
Hardware and Software
Microsoft Windows
18 Years Ago
by caperjack
[QUOTE=The Dude]Theres gotta be..... A registry tweak or something...... Why would they leave that out??? It doesnt make sense....... You shud be able to use a script for example to do it......... (Or just edit the registry)[/QUOTE] Well if you can i cant find any info on how to do it ,all i find is ,
lock
the taskbar [winxp only ]
Re: Lock taskbar??
Hardware and Software
Microsoft Windows
18 Years Ago
by The Dude
I wonder if "explorer.exe" could be modified and have an option for
LOCK
TACKBAR added (I think thats where it is in XP,not sure though)
Re: Lock taskbar??
Hardware and Software
Microsoft Windows
17 Years Ago
by The Dude
Here is an AWESOME shell replacement that will allow you to
lock
taskbar and do alot of other things also!! [url]http://www.softpedia.com/get/Desktop-Enhancements/Shell-Replacements/xp-styles-for-98se.shtml[/url] I may have to l00k into this!
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC