All Other Wrox BooksDo you have a question about a Wrox book that isn't listed anywhere on p2p.wrox.com or where the forum is locked? Here's a forum to post questions about any other Wrox book so that other readers or one of the authors can help you with your questions. IF YOU ARE LOOKING FOR CODE DO NOT ASK "Where can I find the code for this book?" That question is answered here.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the All Other Wrox Books section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other programmers’ questions, win occasional prizes given to our best members, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
Visual basic 2008 Programmers Reference by Rod Stephens...
Hello everyone,
I Have just joined the Wrox forums etc and require some information...
In Rod Stephens book - Visual Basic 2008 Programmers Reference, I am using his SATELLITE Class Library programs and although i can add Pictures and Strings to the Class file, I would be grateful if someone could direct me on How To Reference from the Dll file such as RichText Files...?
In other words, if I add these to the Resources in the DLL file, I cannot find any information on how to access these from the Dll file (unlike accessing the pictures and strings etc)- any help would be gratefully appreciated.
For example:
Dim resource_manager As ResourceManager
resource_manager = New ResourceManager( _
"SatelliteResourcesDll.Resources", _
satellite_assembly)
resource_manager = New ResourceManager( _
"SatelliteResourcesDll.Images", _
satellite_assembly)
Me.PictureBox1.BackgroundImage = CType( _
resource_manager.GetObject("HBPOwners"), Image)