aboutsummaryrefslogtreecommitdiff
path: root/coherencemode.vb
diff options
context:
space:
mode:
Diffstat (limited to 'coherencemode.vb')
-rw-r--r--coherencemode.vb19
1 files changed, 0 insertions, 19 deletions
diff --git a/coherencemode.vb b/coherencemode.vb
deleted file mode 100644
index 5868bf1..0000000
--- a/coherencemode.vb
+++ /dev/null
@@ -1,19 +0,0 @@
-Module coherencemode
- Dim fakeform As New template
-
- Public Sub setupwindows(ByVal programname As String)
- Dim win As Window = Window.Find(programname)
- win.Style(Window.Styles.Border) = False
- win.Style(Window.Styles.Sizable) = False
- win.Size = New Size(win.Size.Width + 1, win.Size.Height + 1)
- win.Invalidate()
-
- fakeform.Show()
- fakeform.Location = win.Location
- fakeform.Size = win.Size
- fakeform.lbtitletext.Text = win.Text
- fakeform.resettitlebar()
- fakeform.pgcontents.BackColor = Color.FromArgb(1, 0, 1)
- End Sub
-
-End Module