Hi every one, sorry we haven't been posting this month but we also have a surprise for our subscribers this month, for all of you guys who want more traffic from Facebook.We are starting a FaceBook Like Group or FB-LG, basically made to help you gain more subscribers and likes for you Facebook fan pages, but more on that on our next post.
How to make a vb Script that opens your cd drive once.This little hack will speed up your work flow not much but more than it once was.A simple button on your desktop that opens your CD/DVD drive.You'll be clicking it all day.
Newbie(NOOB)
The newbie way consists of a simple VB Script made ready to download, just download the file.
Download:
CD_Open.VBS
1. Once downloaded, double click CD_Open.VBS
2. "Do You Want The Following Program To Make Changes To Your Computer" Click Yes.
3. Click Yes And OK.
Super User
Open notepad and copy the below code.
How To Use
It's better to place it on your desktop for fast opening. Double Click the file like any other application to make it work.
Have any other question let us know.
How to make a vb Script that opens your cd drive once.This little hack will speed up your work flow not much but more than it once was.A simple button on your desktop that opens your CD/DVD drive.You'll be clicking it all day.
Newbie(NOOB)
The newbie way consists of a simple VB Script made ready to download, just download the file.
Download:
CD_Open.VBS
1. Once downloaded, double click CD_Open.VBS
2. "Do You Want The Following Program To Make Changes To Your Computer" Click Yes.
3. Click Yes And OK.
Super User
Open notepad and copy the below code.
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If
save as Cd_Open.vbsSet colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If
How To Use
It's better to place it on your desktop for fast opening. Double Click the file like any other application to make it work.
Have any other question let us know.