home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Houseplan Collection
/
HRCD2005.ISO
/
data1.cab
/
Zusatz
/
3DS
/
DATA2.Z
/
Form1.frm
< prev
next >
Wrap
Text File
|
1999-10-08
|
952b
|
36 lines
VERSION 5.00
Begin VB.Form MainForm
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
End
Attribute VB_Name = "MainForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim prg As ArCon.ArCon
Private Sub Form_Load()
Set prg = New ArCon.ArCon
prg.StartMe hWnd, ""
Dim o As ArCon.Object3D
For Each o In prg.DesignObjects
If Not o.IsInternalObject() Then
Dim tn As ArCon.TextureName
For Each tn In o.GetTextureCollection()
tn.Name = ">BODEN\KINDER\Tkind07.bmp"
Next
End If
Next
prg.Redraw3DViews
Unload Me
End Sub