|
-
Jun 12th, 2002, 12:06 AM
#1
Build Error
When I open the main form of my app I get this erro in the task list, I cant figure out what it is
Identifier '.cctor' is not valid.
it says it's at line 0
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jun 12th, 2002, 12:46 AM
#2
Addicted Member
What code is in the Form_Load ??
-
Jun 12th, 2002, 01:09 AM
#3
nothing in there, it's not from the code I guess, becuase when I click on the error, it doesnt bring up the code window or anything. It's probably something elso
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jun 12th, 2002, 01:20 AM
#4
Addicted Member
dosn't make a lot of sense. I'm in teach myself mode with VB.NET (used VB2-6 since '92) but havn't had any sort of problems like this. does .cctor mean anything - have you done a search in code ??
-
Jun 12th, 2002, 01:27 AM
#5
-
Jun 12th, 2002, 08:32 AM
#6
hmm..are you sure it say .cctor? it should be .ctor.
.ctor is the Intermediate Language for the constructor definition.
My guess would be you fubared something up big time and its not compiling to IL correctly. Try starting a new project and moving your code into it.
-
Jun 12th, 2002, 08:38 AM
#7
for your education this is what the line of code looks like where that error is probably coming from
Code:
.custom instance void [mscorlib]System.STAThreadAttribute::.ctor() = ( 01 00 00 00 )
That is the address of the contructor in my Sub Main.
-
Jun 12th, 2002, 03:45 PM
#8
Originally posted by Cander
for your education this is what the line of code looks like where that error is probably coming from
Code:
.custom instance void [mscorlib]System.STAThreadAttribute::.ctor() = ( 01 00 00 00 )
That is the address of the contructor in my Sub Main.
hmm where did you get that line from? I searched all the code for that cctor thingie and I cant find it. Also I', sure that it says cctor cuz I copy/pasted the error
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jun 12th, 2002, 03:48 PM
#9
you wouldnt see that in your code. you would have to view it in the ildasm.exe
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|