how 2 make the dvd drive load automatically without pushing or using the switch?

Sreejith

New member
Joined
Jun 5, 2008
Messages
4
Reaction score
0
Points
1
how 2 make the dvd drive load automatically without pushing or using the switch??
my iballfab9 cabinet is designed in such a way that , when the drive ejects , the switch to load the drive cannot be seen, so i have to push the drive.....
is there any software for this...??????????
 
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 100
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 100
colCDROMs.Item(i).Eject
Next
End


copy and paste this in notepad. it will give you 100 seconds to insert a cd
save this with the extension name.vbs (change name)
 
Right click on the cd drive, eject

You are really going to enjoy your new case when you get a cd that will not eject, won't ya.

Good Luck
 
Back
Top