Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB 2005 > Visual Basic 2005 Basics
|
Visual Basic 2005 Basics If you are new to Visual Basic programming with version 2005, this is the place to start your questions. For questions about the book: Beginning Visual Basic 2005 by Thearon Willis and Bryan Newsome, ISBN: 0-7645-7401-9 please, use this forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Visual Basic 2005 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 30th, 2006, 01:02 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 453
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via AIM to Ankur_Verma Send a message via MSN to Ankur_Verma
Default

Quote:
quote:With .NET---nothing is included (except private assemblies, and none of these would be included with the standard .NET framework--they would have to be downloaded or sent to me).
Taking AnkurLib.dll again. If you refer to it with ‘Copy Local’ property True, it will be copied to app directory of your application, which will make it a private assembly.

If you install AnkurLib.dll in GAC and refer to it with ‘Copy Local’ False it will not get copied to the app directory of you application, but will be loaded from the GAC, that makes it a shared assembly.

In either case you will have to have it sent to you or download it.


Quote:
quote:Things are referenced "just in time"?
Things are ‘loaded’ just in time. References to assemblies get added to the
application at design time. But implementation of classes like ‘Consultancy’ get
loaded just in time.

Regards
Ankur
 
Old August 30th, 2006, 01:03 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 453
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via AIM to Ankur_Verma Send a message via MSN to Ankur_Verma
Default

Quote:
quote:Lastly, with old C++, when you "#include" you always included the header (.h) file in your exe -- it depended upon dynamic or static binding?---If that is true--I how would I know which was the case. In my classes, I only ever typed #include (using classes such as Cstring or iostream or whatever).
CString being an MFC class resided in one of the MFC DLLs which get referenced in
your MFC projects by default. You can state in the projects settings, however, whether you want to bind dynamically or statically. Neither of the cases usually have any bearing on #include statement as it only adds class declaration info to the application and not the implementation. Implementation comes from the DLLs.


Regards
Ankur





Similar Threads
Thread Thread Starter Forum Replies Last Post
Namespaces and DLLs Akobold C# 0 March 18th, 2007 08:08 PM
Namespaces Amateur BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 1 November 27th, 2006 05:19 PM
namespaces anchal C# 1 July 3rd, 2006 02:53 PM
XML Namespaces billy_bob_the_3rd XML 1 January 31st, 2005 03:41 PM
NAMESPACES - WHAT ARE THEY? p_nut33 C# 2 July 31st, 2003 03:18 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.