Sub 录入凭证() ' ' 录入凭证 Macro ' 卢毅刚 记录的宏 2003-11-29 ' Sheets("录入凭证").Visible = True aa = Worksheets("录入凭证").Cells(4, 10) Sheets("录入凭证").Select ActiveSheet.Unprotect Password:=123 Application.Goto Reference:="fwa" Selection.Interior.ColorIndex = xlNone Selection.Font.ColorIndex = 0 Application.Goto Reference:="R5C11:R300C11" Selection.ClearContents ActiveSheet.Protect Password:=123 Range(Cells(aa, 2), Cells(aa, 2)).Select Worksheets("录入凭证").Cells(aa, 2) = Worksheets("录入凭证").Cells(4, 7) + 1 End Sub 上面作了加粗、倾斜、下划线的语句各是什么意思?向各位老师请教? |