Wednesday, June 22, 2011

Hey guys,

Update 6 is released but this time we did a change. We lost the code of OmniBrowser so it will be no longer updated. Therefore we created to applications.

     MediaFire : http://www.mediafire.com/?7p1poqautl98pl7 

1. Font Find- it helps you to see if the specific font you wrote is available on your computer
2. Number Converter- it helps you convert roman numerals to to the normal numerals or the other way round.

We are very sorry if you don't like these softwares as much as the OmniBrowser. We will try to recover that computer and get the code back.

Don't forget to visit this blog daily!!

Saturday, June 11, 2011

Register/Unregister ActiveX Controls Using Code


Register/Unregister ActiveX Controls Using Code

This example will show you how to register and unregister ActiveX
controls from Visual Basic using code, instead of using the Regsvr32.exe

Preparations
Add 2 Command Buttons to your form.
Press the first to unregister the control, and the second to register it.
Module Code
'replace the two "d:\MyDir\MyFile.OCX" below with the name of the
'OCX file you want to register or unregister
Public Declare Function RegControl Lib "d:\MyDir\MyFile.OCX" _
Alias "DllRegisterServer" () As Long

Public Declare Function UnRegControl Lib "d:\MyDir\MyFile.OCX" _
Alias "DllUnregisterServer" () As Long

Public Const S_OK = &H0

Sub RegisterControlSub()
On Error GoTo Err_Registration_Failed
If RegControl = S_OK Then
MsgBox "Registered Successfully"
Else
MsgBox "Not Registered"
End If
Exit Sub
Err_Registration_Failed:
MsgBox "Error: " & Err.Number & " " & Err.Description
End Sub

Sub UnRegisterControlSub()
On Error GoTo Err_Unregistration_Failed
If UnRegControl = S_OK Then
MsgBox "Unregistered Successfully"
Else
MsgBox "Not Unregistered"
End If
Exit Sub
Err_Unregistration_Failed:
MsgBox "Error: " & Err.Number & " " & Err.Description
End Sub
Form Code
Private Sub Command1_Click()
UnRegisterControlSub
End Sub
Private Sub Command2_Click()
RegisterControlSub
End Sub

Thursday, June 9, 2011

Alien X now on Blogspot!!

Hey guys,

Alien X is now on blogspot and we have Update 5! The download link for update 5 is below:

 Media Fire: http://www.mediafire.com/?9qx3lxtqs7ivrkg 

Changes in Update 5:


  • File opener removed
  • Speech added
  • Notepad improved
Follow us so that you can get the latest updates.