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 p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
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)