I think your code should look something like this:
Dim srtQry1 As String, srtQry2 As String
strQry1 = "INSERT INTO Order_Line (OrderNo, ProductID, Qty, Price) " & _
"SELECT OrderNo, ProductID, Qty, Price " & _
"FROM Import_Order_Lines;"
strQry2 = "INSERT INTO Order...