Yeah sure!!!
This is a public sub in a module.
Public Sub Main()
Dim sBeepbox As String
Dim i As Integer
Dim iSize As Integer
If App.PrevInstance Then End
sBeepbox = " "
iSize = 8
If InStr(Command, "/s"

> 0 Then ' Start Screen Saver
CursorOFf
i = GetPrivateProfileString("Screen Saver .Carlos", "Beepbox", _
"TRUE", sBeepbox, iSize, "CONTROL.INI"

If UCase(Left(sBeepbox, 4)) = "TRUE" Then
giBeepBox = True
Else
giBeepBox = False
End If
frmScreenSaver.Show
ElseIf InStr(Command, "/c"

> 0 Then ' This is settings
frmSettings.Show
ElseIf InStr(Command, "/a <HWND>"

< 0 Then ' This button doesn't work, it works but i feel that if there is any other button on the properties of the screen saver then this will come up.
' MsgBox "Password Protected"
End If
This is only the code related to my question, but if you need further explanation, I will explain.
Besides this, I'd like to ask you how did you get your MCSD, I have been working on it and I really don't see the way out. I have 5 years programming with vb and decided to take classes for the MCSD, I took 2 classes at Learning Tree University but I felt like it was a little bit too hard because I don't have any experience on SQL Server, and the company that I work for don't use SQL, I use MsAccess as backend.
Any comments or suggestions on this will be greatly appreciated.
Thanks,
Lulo
End Sub