Add an image to map

Hi

I tried to follow the car track example to create a simple vb.net winform desktop application.
I only need to display a picture of an airplane at the lat and long of Cairo.

I managed to add a point and a circle.
However, I failed to add an image. The image always displays at lat 0 long 0.

Any help is much appreciated.

okay I managed to add the image at the correct X and Y
I needed to use

AxMap1.DegreesToProj(lon, lat, projX, projY)

then add the point with projX and projY using

shp.AddPoint(projX, projY)

I kept wrongly adding the point using pX and pY using

AxMap1.ProjToPixel(projX, projY, pX, pY)