Share via

stubless.asm not found

Anonymous
2015-08-07T19:39:46+00:00

i am making a small dll for autocad 2014 using vb.net ... but when I run the code and  go through debug steps it gives stubless.asm missing ... and the form crashes. actually I am trying to get data from an excel file using this code

On Error GoTo errlabel

Dim xlApp As New Microsoft.Office.Interop.Excel.Application

Dim xlWorkBook As Excel.Workbook

Dim xlWorkSheet As Excel.Worksheet

Dim Values As Excel.Range

xlWorkBook = xlApp.Workbooks.Open("D:\abc.xls")

xlWorkSheet = xlWorkBook.Sheets(0)

Values = xlWorkSheet.Range("B2", "J2")

For i = 0 To Values.Cells.Count

RichTextBox1.Text = RichTextBox1.Text & Values.Cells(i).Text & vbCrLf

Next i

Exit Sub

errlabel:

MsgBox(Err.Description)

but when my I go through debug point on line

xlWorkBook = xlApp.Workbooks.Open("D:\abc.xls")

it gives stubless.asm not found.

what should I do... I try to find online solution but I cannot find proper understandable answer...

I try to repair my visual studio 13 and restarted system but no affect...

please help... much appreciated ...!!! thank you... !!!

Windows for home | Other | Performance and system failures

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2015-08-07T21:55:11+00:00

    Hi,

    For VB.net help check with the experts at these Microsoft Developer resources.

    And of course check with AutoCAD 2014 Support and their community forums.

    AutoCad

    http://usa.autodesk.com/autocad/

    AutoCad - Support

    http://usa.autodesk.com/adsk/servlet/ps/index?siteID=123112&id=2714854&linkID=9240617

    AutoCad - Communities (and Forums) <- excellent source of information

    http://usa.autodesk.com/adsk/servlet/index?id=7460177&siteID=123112

    MSDN - Developers

    http://msdn.microsoft.com/en-us/dn308572.aspx

    MSDN - Developers - Community

    http://msdn.microsoft.com/developer-communities-msdn

    MSDN - Forums

    http://social.msdn.microsoft.com/Forums/en/categories/

    MSDN - Where is the Forum For…?

    http://social.msdn.microsoft.com/Forums/en/whatforum/threads

    Hope this helps.


    Rob Brown - Microsoft MVP <- profile - Windows Experience : Bicycle - Mark Twain said it right.

    Was this answer helpful?

    0 comments No comments