How do i go about making custom objects

ghostpally

Member
Joined
Jan 19, 2008
Messages
23
Programming Experience
Beginner
I was wondering how to make custion object i know i can use a picture box at a button but still that a square. any idears. i tryed to use the transepants key and that did not work IDK why
 
You have not adequately described what you want to do. A "custom object" could be anything. Are you talking about creating your own controls? If so you have three choices:

1. Create a UserControl to group multiple other controls together into a single unit.

2. Inherit an existing control and add new, or modify existing, behaviour.

3. Inherit the control class and creat your own control from scratch.
 
Back
Top