DirectX in VB.. Can't create D3D object

Started by
1 comment, last by Tevong 22 years, 2 months ago
public objDx8 as DirectX8 public objD3D as Direct3D8 Set objD3D = objDx8.Direct3DCreate() gives me an error saying object variable or with block variable not set. Why??
Signed: ___T____
Advertisement
You need to create the DX object first:

public objDx8 as DirectX8
public objD3D as Direct3D8

Set objDx8 = New DirectX8
Set objD3D = objDx8.Direct3DCreate()


and remember to clean up at the end:

Set objD3D = Nothing
Set objDx8 = Nothing

Trying is the first step towards failure.
Trying is the first step towards failure.
thanks
Signed: ___T____

This topic is closed to new replies.

Advertisement