First of all, this is the BlackBerry tutorial I've used for loading custom fonts
Second of all, I don't see a return code of 8 in any of the values that the API docs says FontManager.load() returns. SUCCESS is a value of 0, so you're not successfully calling load().
http://www.blackberry.com/developers/docs/7.0.0api/net/rim/device/api/ui/FontManager.html
Returns:
FontManager.SUCCESS if font loads successfully.
FontManager.FONTS_ARRAY_FULL if too many fonts loaded.
FontManager.MISSING_TYPEFACE_NAME if typeface name is invalid.
FontManager.DUPLICATE_NAME if font name is duplicate.
FontManager.DUPLICATE_DATA if font data is duplicate.
FontManager.NO_FONT_DATA if no font data is found.
FontManager.EXCEEDS_LIMIT if font data exceeds 60k in size.
FontManager.MISS_RESOURCE if font file cannot be found.
FontManager.FAILED_TO_LOAD_FILE if font data is invalid or font format is invalid.
When I ran in the debugger on OS 5.0 and 7.1, I saw that -8 was equal to FontManager.DUPLICATE_NAME, but didn't see any code equal to 8.
Also, did you generate this font file yourself (AGENCYB.TTF)? Because your code is asking for a font named MyFont in the AGENCYB.TTF file. I wouldn't expect a font to actually be named MyFont unless it was somebody writing a Hello World program (and homemade .ttf file).
If this is a custom font, provided by a 3rd-party font library, or bought from someone else, I would expect the font names to be something other than MyFont, which is what they have in the BlackBerry sample that you probably copied your code from.
So, double-check that, and let us know if it's still not working.
Update: since it looks like you also fail when you use the string "AGENCYB" in your code, I think the problem is that you're using the wrong font name. Even though the file is AGENCYB.TTF, I bet the font name inside that file is not AGENCYB. Is this the same file that you find in Windows under C:\Windows\fonts? If so, you can use Windows (7, at least) to look at the font file.
Just double-click the .ttf file in Windows Explorer, and it should give you a preview, that shows the proper font name. That name is the name you use in the two java calls, where the sample code has "MyFont". In this case, you see that the font name is probably "Agency FB". Try that.

Update 2: I also tried loading the Agency FB font from the AGENCYR.TTF file that can be found in C:\windows\Fonts\AGENCYR.TTF on a Windows 7 machine. This exact code worked for me on a 5.0 8900 simulator:
int result = FontManager.getInstance().load("AGENCYR.TTF", "Agency FB", FontManager.APPLICATION_FONT);
if (result == FontManager.SUCCESS)
{
try
{
FontFamily typeface = FontFamily.forName("Agency FB");
Font myFont = typeface.getFont(Font.PLAIN, 50);
helloWorld.setFont(myFont);
}
catch (ClassNotFoundException ex)
{
}
}

if (FontManager.getInstance().load("AGENCYB.TTF", "MyFont", FontManager.APPLICATION_FONT) == FontManager.SUCCESS)at the start of your Java? Please be careful when posting your code. It's difficult to help unless we know exactly what you're using. And please, don't use emptycatchblocks in code that's not working. If there's an exception thrown, you need to know what it is, and of course, then tell us. Thanks. – Nate Jan 15 at 7:53FontManager.loadreturning. If it isFontManager.SUCCESSthen the problem must be in the GUI code. – Mister Smith Jan 15 at 12:40