出现错误:无法解析postDelayed

时间:2016-03-02 15:33:58

标签: android

Runnable run = new Runnable() {
    @Override
    public void run() {
        Log.i("runnable has run","a second must have passed");
    }
};
handler.post(run);

当我编写此代码时,会出现此错误:

  

无法解析`postDelayed。

请告诉我如何删除它。

1 个答案:

答案 0 :(得分:1)

我想你想延迟使用这段代码。

Public Sub CopyRows()
    Dim x As Long, lastRow As Long, finalRow As Long

    With Worksheets("Koppeling data")
    ' Find the last row of data
        finalRow = .Cells(.Rows.Count, 4).End(xlUp).Row
        ' Loop through each row
        For x = 3 To 10 'For x = 3 To finalRow
            ' Decide if to copy based on column D
            If UCase(.Cells(x, 4).Value) <> "NO MATCH" Then
                FindingLastRow Worksheets("All sessions"), lastRow
                .Rows(x).Copy Destination:=Worksheets("All sessions").Range("A" & lastRow + 1)
            End If
        Next x
    End With
End Sub

Sub FindingLastRow(ws As Worksheet, ByRef lr As Long)
    With ws
        lr = .Cells(.Rows.Count, "A").End(xlUp).Row
    End With
End Sub