Question COM Reference Error

splicer2012

New member
Joined
Nov 3, 2014
Messages
1
Programming Experience
1-3
I am working on changing drive names in some old code wrote back in 2006. It is in vb.net 2.0. I have the original code, opened it in visual studio, changed the code where i needed to and debugged it. When i debugged it i encountered a few solvable errors and one i am stuck on. The error is "Error 5 Could not resolve COM reference "0ba686c6-f7d3-101a-993e-0000c0ef6f5e" version 1.0. Object reference not set to an instance of an object. RSPC-MADD" RSPC-MADD is the program name. This program was written specifically by other employees in the past for this company. If anyone could point me in the right direction it would be greatly appreciated. If i can provide any further information please let me know.

Thanks,

Mike
 
It is possible COM library is not installed, or have a different "reference" now, you could try removing the project reference to it and add it again from COM tab in add reference dialog.
I am working on changing drive names in some old code
You can change "drive name" with DriveInfo.VolumeLabel.
 
Back
Top