forked from Jonathan-LeRoux/IguanaTex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutBox.frm
35 lines (32 loc) · 1003 Bytes
/
AboutBox.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} AboutBox
Caption = "IguanaTex"
ClientHeight = 5286
ClientLeft = 48
ClientTop = 330
ClientWidth = 8790.001
OleObjectBlob = "AboutBox.frx":0000
StartUpPosition = 1 'CenterOwner
End
Attribute VB_Name = "AboutBox"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub CloseAboutButton_Click()
Unload AboutBox
End Sub
Private Sub LabelURL_Click()
OpenURL "http://www.jonathanleroux.org/software/iguanatex/"
End Sub
Private Sub UserForm_Initialize()
Me.Top = Application.Top + 110
Me.Left = Application.Left + 25
Me.Height = 288
Me.Width = 448
Me.LabelAuthors.Caption = "by Jonathan Le Roux and Zvika Ben-Haim" & NEWLINE & NEWLINE & "Mac version by Tsung-Ju Chiang and Jonathan Le Roux"
#If Mac Then
ResizeUserForm Me
#End If
End Sub