Click here to Skip to main content
15,905,028 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionUsing CrystalReports XI In VB Pin
ZulnurainAdil6-Feb-06 21:27
ZulnurainAdil6-Feb-06 21:27 
AnswerRe: Using CrystalReports XI In VB Pin
rifan7-Feb-06 9:50
rifan7-Feb-06 9:50 
QuestionRe: Using CrystalReports XI In VB Pin
ZulnurainAdil5-Mar-06 20:42
ZulnurainAdil5-Mar-06 20:42 
QuestionHow to set a form is private? Pin
cylix20006-Feb-06 21:18
cylix20006-Feb-06 21:18 
AnswerRe: How to set a form is private? Pin
Dave Kreskowiak7-Feb-06 1:24
mveDave Kreskowiak7-Feb-06 1:24 
General[Solved] Pin
cylix20007-Feb-06 14:01
cylix20007-Feb-06 14:01 
QuestionVB.NET class library for VBA calling Pin
cylix20006-Feb-06 21:05
cylix20006-Feb-06 21:05 
AnswerRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak7-Feb-06 1:21
mveDave Kreskowiak7-Feb-06 1:21 
(Assuming Visual Studio.NET 2003 here...) Part of your problem may be the fact that every time you compile your library your allowing the version umber to change. Open the library's AssemblyInfo.vb file. At the bottom, you'll see something like this:
<Assembly: AssemblyVersion("1.0.*")>

See the '*' in the version number? That's allowing the compiler to automatically increment the version number in your library.

When you reference a component, one of the things that is very important in the registration is the version. If you change the version of the component though, the reference is no longer valid, unless that version still exists.

Change that line in AssemblyInfo.vb to something like this:
<Assembly: AssemblyVersion("1.0.0.1")>

Change the version info by hand, if needed, during development. This will keep all builds of your component the same version number.


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

GeneralRe: VB.NET class library for VBA calling Pin
cylix20007-Feb-06 14:12
cylix20007-Feb-06 14:12 
GeneralRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak7-Feb-06 16:13
mveDave Kreskowiak7-Feb-06 16:13 
GeneralRe: VB.NET class library for VBA calling Pin
cylix20007-Feb-06 17:02
cylix20007-Feb-06 17:02 
GeneralRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak8-Feb-06 2:19
mveDave Kreskowiak8-Feb-06 2:19 
GeneralRe: VB.NET class library for VBA calling Pin
cylix20008-Feb-06 14:09
cylix20008-Feb-06 14:09 
GeneralRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak8-Feb-06 16:16
mveDave Kreskowiak8-Feb-06 16:16 
GeneralRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak8-Feb-06 16:19
mveDave Kreskowiak8-Feb-06 16:19 
GeneralRe: VB.NET class library for VBA calling Pin
cylix20008-Feb-06 14:22
cylix20008-Feb-06 14:22 
GeneralRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak8-Feb-06 16:13
mveDave Kreskowiak8-Feb-06 16:13 
GeneralRe: VB.NET class library for VBA calling Pin
cylix20009-Feb-06 14:40
cylix20009-Feb-06 14:40 
GeneralRe: VB.NET class library for VBA calling Pin
Dave Kreskowiak9-Feb-06 15:38
mveDave Kreskowiak9-Feb-06 15:38 
QuestionHow to provide Radio Button in Data Grid? Pin
Krishnaraj Barvathaya B6-Feb-06 17:58
Krishnaraj Barvathaya B6-Feb-06 17:58 
QuestionForm printing Pin
lchboris6-Feb-06 17:15
lchboris6-Feb-06 17:15 
QuestionHow to convert this to VB.NET Pin
bskirkman6-Feb-06 16:21
bskirkman6-Feb-06 16:21 
QuestionRe: How to convert this to VB.NET Pin
bskirkman6-Feb-06 16:32
bskirkman6-Feb-06 16:32 
AnswerRe: How to convert this to VB.NET Pin
J4amieC6-Feb-06 21:51
J4amieC6-Feb-06 21:51 
AnswerRe: How to convert this to VB.NET Pin
progload7-Feb-06 7:14
progload7-Feb-06 7:14 

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.