Im running the program screen saver but i receiving this error its says Run-time error '6' Overflow i hope anyone could fix this thanks ...
VB Code:
  1. Private Sub Form_Load()
  2. Dim res
  3.    'I made this array to translate name of day to Indonesia
  4.    'language. You can change this array elemen to your
  5.    'country language. Start from Sunday...
  6.    aHari = Array("Sunday", "Monday", "Tuesday", "Wednesday", _
  7.                 "Thursday", "Friday", "Saturday")
  8.    sHari = aHari(Abs(Weekday(Date) - 1))
  9.    frmMain.Caption = "LOGIN PROGRAM Versi 1.0"
  10.    frmMain.Timer1.Enabled = False
  11.    Timer1.Enabled = True
  12.    DoEvents
  13.    Label1.Caption = "" & sHari & ", " _
  14.                    & Format(Date, "mmmm dd yyyy")
  15.    Label2.Caption = Format(Time, "hh:mm:ss")
  16.    DoEvents
  17.    App.HelpFile = ""
  18.    res = SetWindowPos(frmScreenSaver.hWnd, _
  19.                       HWND_TOPMOST, 0, 0, 0, 0, _
  20.                       flags)
  21. End Sub

But its only highlightened at

VB Code:
  1. App.HelpFile = ""
  2. res = SetWindowPos(frmScreenSaver.hWnd, _
  3.                       HWND_TOPMOST, 0, 0, 0, 0, _
  4.                       flags)