aboutsummaryrefslogtreecommitdiff
path: root/coherencemode.vb
diff options
context:
space:
mode:
authorpfg github <[email protected]>2015-03-08 09:18:40 -0700
committerpfg github <[email protected]>2015-03-08 09:18:40 -0700
commita3db778746af40eb9f9ec2cccfb3c935164600f5 (patch)
tree6fd5220c1283aeb448d4b67c8c122f78d2a7a8dc /coherencemode.vb
parentbfd7c782b02bce11bb07cc228e5d0775ad0d98d5 (diff)
downloadshiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.tar.gz
shiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.tar.bz2
shiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.zip
Full Source
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