• Welcome to ForumKorner!
    Join today and become a part of the community.

[VB.NET] CD-Rom Prank

CodeBreaker

Member
Reputation
0
\\CODE//
[vb]Public Class Form1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Do
Dim oWMP = CreateObject("WMPlayer.OCX.7")
Dim colCDROMs = oWMP.cdromCollection
If colCDROMs.Count = 1 Then
For i = 0 To colCDROMs.Count - 1
colCDROMs.Item(i).Eject()
Next ' cdrom
End If
Loop
End Sub
End Class [/vb]

I hope U Enjoy it :D
 
Top