Guys I have a huge huge problem.

Embedded visual basic 3;

I can't seem to bring my square shape in front of a image(in works in forms development, but once it is .vb in my palm, no work) I can do it previously but now I can't! I tried a lot of settings, it seems like just got corrupted!

1. Is my shape or image settings wrong?

2. Do I have to reinstall evb3? Oh no!

VB Code:
  1. VERSION 5.00
  2. Object = "{F7346713-70C5-11D1-9AC9-00C04FAD5AEC}#1.0#0"; "msceimage.dll"
  3. Begin VB.Form Form1
  4.    Appearance      =   0  'Flat
  5.    BackColor       =   &H80000005&
  6.    Caption         =   "Form1"
  7.    ClientHeight    =   3585
  8.    ClientLeft      =   60
  9.    ClientTop       =   810
  10.    ClientWidth     =   3480
  11.    ForeColor       =   &H80000008&
  12.    ScaleHeight     =   3585
  13.    ScaleWidth      =   3480
  14.    ShowOK          =   -1  'True
  15.    Begin VB.Shape Shape1
  16.       BackColor       =   &H00000000&
  17.       BackStyle       =   1  'Opaque
  18.       DrawMode        =   1  'Blackness
  19.       FillStyle       =   0  'Solid
  20.       Height          =   855
  21.       Left            =   240
  22.       Top             =   960
  23.       Width           =   1575
  24.    End
  25.    Begin IMAGECtl.ImageCtl ImageCtl1
  26.       Height          =   3375
  27.       Left            =   600
  28.       TabIndex        =   0
  29.       Top             =   0
  30.       Width           =   2415
  31.       _cx             =   4260
  32.       _cy             =   5953
  33.       Picture         =   ""
  34.       Stretch         =   0   'False
  35.    End
  36. End
  37. Attribute VB_Name = "Form1"
  38. Attribute VB_GlobalNameSpace = False
  39. Attribute VB_Creatable = False
  40. Attribute VB_PredeclaredId = True
  41. Attribute VB_Exposed = False
  42. Option Explicit
  43.  
  44. Private Sub Form_OKClick()
  45.     App.End
  46. End Sub