Click here to Skip to main content
15,922,533 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Multiple Bitmaps Pin
Aaron Eldreth29-Jul-04 17:10
Aaron Eldreth29-Jul-04 17:10 
GeneralRe: Multiple Bitmaps Pin
maykut209929-Jul-04 17:21
maykut209929-Jul-04 17:21 
Generalquestions in vb.net Pin
ahmad_yossef26-Jul-04 0:35
ahmad_yossef26-Jul-04 0:35 
GeneralRe: questions in vb.net Pin
Dave Kreskowiak27-Jul-04 3:06
mveDave Kreskowiak27-Jul-04 3:06 
GeneralXML Serialization of a Recursive Custom Collection Pin
Michael R. Rich25-Jul-04 19:20
Michael R. Rich25-Jul-04 19:20 
GeneralClass Library references Pin
beowulfagate25-Jul-04 18:29
beowulfagate25-Jul-04 18:29 
GeneralRe: Class Library references Pin
sukesh.g25-Jul-04 20:24
sukesh.g25-Jul-04 20:24 
GeneralRe: Class Library references Pin
Dave Kreskowiak26-Jul-04 6:36
mveDave Kreskowiak26-Jul-04 6:36 
The problem is probably because you are using automatic versioning in your Class library project. Open the Assembly.vb file and change the Assembly Version attribute from "1.*.*" (auto-increment versioning) to "1.0.0.0" or whatever you want for a version number. Then, all your other projects that reference this assembly will reference the same version of the assembly.

In other words, your projects are referencing your Class assembly. When that reference is created, is it created with the version number of the last time you compiled the Class into an assembly. The '*'s in the Assembly version attribute of your Class project denote numbers where the compiler will automatically increment the version number. When your other projects that reference this assembly are run, they load the Class assembly with the same version that was used when the reference was created. If your app references your Class with the Class's version at 1.0.2039, then the app will always expect version 1.0.2039 to be there.

Now, if you set a reference to the Class assembly, you'll run into the problem that your having now. If you create the reference to the Class project, the versioning problem will go away, but you'll still have to change the Assembly version of your Class project to a static number. Otherwise, when you compile your Class assembly, you'll have to recompile all the projects that reference it to.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: Class Library references Pin
beowulfagate26-Jul-04 17:48
beowulfagate26-Jul-04 17:48 
GeneralVB 6 autoupdating combo Pin
axel_wing25-Jul-04 3:01
axel_wing25-Jul-04 3:01 
GeneralRe: VB 6 autoupdating combo Pin
Roger Wright25-Jul-04 4:59
professionalRoger Wright25-Jul-04 4:59 
GeneralRe: VB 6 autoupdating combo Pin
axel_wing25-Jul-04 5:13
axel_wing25-Jul-04 5:13 
GeneralApplication Task Bar Pin
Michael R. Rich24-Jul-04 20:14
Michael R. Rich24-Jul-04 20:14 
GeneralRe: Application Task Bar Pin
progload25-Jul-04 6:07
progload25-Jul-04 6:07 
GeneralRe: Application Task Bar Pin
Michael R. Rich25-Jul-04 12:55
Michael R. Rich25-Jul-04 12:55 
GeneralOutOfMemoryException Pin
gthompson200524-Jul-04 16:57
gthompson200524-Jul-04 16:57 
GeneralRe: OutOfMemoryException Pin
Dave Kreskowiak25-Jul-04 2:07
mveDave Kreskowiak25-Jul-04 2:07 
GeneralRe: OutOfMemoryException Pin
gthompson200525-Jul-04 4:17
gthompson200525-Jul-04 4:17 
GeneralRe: OutOfMemoryException Pin
Dave Kreskowiak25-Jul-04 5:31
mveDave Kreskowiak25-Jul-04 5:31 
GeneralRe: OutOfMemoryException Pin
gthompson200525-Jul-04 6:17
gthompson200525-Jul-04 6:17 
GeneralSAVE DATA program in VB.NET Pin
Ahmad Rifai Yusuf24-Jul-04 15:44
Ahmad Rifai Yusuf24-Jul-04 15:44 
GeneralRe: SAVE DATA program in VB.NET Pin
Dave Kreskowiak25-Jul-04 2:09
mveDave Kreskowiak25-Jul-04 2:09 
GeneralRe: SAVE DATA program in VB.NET Pin
HiltonG27-Jul-04 1:11
HiltonG27-Jul-04 1:11 
GeneralSAVE DATA program in VB.NET Pin
Ahmad Rifai Yusuf24-Jul-04 15:24
Ahmad Rifai Yusuf24-Jul-04 15:24 
General.net framework Pin
fo0lish24-Jul-04 6:19
fo0lish24-Jul-04 6:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.