Hi. Welcome to the forum and by the sounds of it to DarkBASIC Pro as well.
It might be worth checking out some of the tutorials on
this thread as a way of getting started with DBP. Are you totally new to programming? If so there are a few things you may want to learn first such as variables and so on. To get you started though, try these codes:
For 2D graphics:
load image "MyImage.png",1
sprite 1,0,0,1
wait key
end
For 3D graphics:
load object "MyObject.x",1
position object 1,0,0,0
wait key
end
Replace MyImage.png or MyObject.x with your own graphics and you should see them appear on the screen for you. Hope this helps.
EDIT: Hodgey beat me to it lol. Run with his download it will make things easier.