Question I have an error when i run the program

Amanjeet

New member
Joined
Feb 23, 2012
Messages
1
Programming Experience
Beginner
Hi,
I have this application which gives me this error when i try to build and run the application.
A little understanding on this error will help me find the direction of looking an error.


"2012-02-21 16:32:45 , frmShipping:CheckCoverBarcode, 438, Public member 'CoverBarcodeIsValid' on type 'idbT0GAssist' not found., at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
at TearSeam.frmTearSeam.CheckCoverBarcode(String pCoverBarcode, eExistance pWorkstationToCheck) in C:\Development\T0G Airbag\Assist\02 Tear Seam\frmTearSeam.vb:line 3292
No Parameters"

Thank you,
 
Hey Amanjet if your willing to post your sorcery code and I am sure everyone will be willing to help. Do you have strict option enabbled? And have any idea when about the error began? Out of curiosity what are you working on?
 
Do you have strict option enabbled?
Late Binding means Option Strict is Off. Turn it On and compiler will be a great help for you.
line 3292
That's amazing. Refactoring and applying OOP programming practices may be due.
 
Back
Top