Matrix Solver 1.1
Submitted By:
raj_vi80
Rating:





(
Rate It)
VERSION 5.00
Object = "{E0D30636-0F87-47D5-B501-08A4FFAC604E}#1.0#0"; "OSENXPSUITE2005.OCX"
Begin VB.Form frmdimension
BackColor = &H00E4C0AB&
BorderStyle = 0 'None
Caption = "Rows & Columns"
ClientHeight = 2805
ClientLeft = 0
ClientTop = 0
ClientWidth = 2400
KeyPreview = -1 'True
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2805
ScaleWidth = 2400
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin osenxpsuite2005.OsenXPButton cmdOk
Height = 375
Left = 360
TabIndex = 6
Top = 2280
Width = 1575
_ExtentX = 2778
_ExtentY = 661
Caption = "&OK"
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MCOL = 16711935
MPTR = 0
MICON = "dimension.frx":0000
UMCOL = -1 'True
OffsetLeft = 0
OffsetTop = 0
XPBlendPicture = -1 'True
GradientColor = -1 'True
GradientColor1 = 16777215
GradientColor2 = 14854529
End
Begin VB.TextBox TxtPro
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 840
TabIndex = 2
Top = 1440
Width = 615
End
Begin VB.TextBox txt2
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 1
Text = "2"
Top = 840
Width = 615
End
Begin VB.TextBox txt1
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 360
TabIndex = 0
Text = "2"
Top = 840
Width = 615
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "( Max=M && Min=N )"
BeginProperty Font
Name = "Times New Roman"
Size = 11.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00B0134F&
Height = 255
Left = 120
TabIndex = 5
Top = 1920
Width = 2100
End
Begin VB.Label Label2
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Rows && Columns"
BeginProperty Font
Name = "Times New Roman"
Size = 14.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00B0134F&
Height = 330
Left = 105
TabIndex = 4
Top = 120
Width = 2175
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "*"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1080
TabIndex = 3
Top = 960
Width = 150
End
End
Attribute VB_Name = "frmdimension"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdOk_Click()
totalrows = Val(txt1.Text) + 1
totalcols = Val(txt2.Text) + 1
maxmin = TxtPro.Text
frmmatrixlatest.Show: Unload Me
'frmmatrixnew.Show: Unload Me
End Sub
Private Sub Form_Load()
frmdimension.Top = 5000: frmdimension.Left = 5000
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
'27 for Escape
If KeyAscii = 27 Then End
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then SendKeys "{tab}"
End Sub