B
Bjørn Tore Hovda
Here is my code:
For Each tskT In ActiveProject.Tasks
If Mid$(tskT.Text18, 1, 3) = "del" Then
MsgBox ("sletter: " & tskT.Text17)
SelectRow Row:=tskT.ID, RowRelative:=False
EditDelete
End If
Next tskT
Her is my problem:
Hey , i got this problem at work. im trying to scan trew a column (text18)
and delete all tasks who contains the substring "del".
i think i got this if-sentence working. my problem is the selectrow row:=
tskt.ID and the rowrelative:= false thing. what is it?
and is there anybody who can show me a simple way to scan trew a column and
delete SEVERALE rows?
thanks
Bjørn Tore
For Each tskT In ActiveProject.Tasks
If Mid$(tskT.Text18, 1, 3) = "del" Then
MsgBox ("sletter: " & tskT.Text17)
SelectRow Row:=tskT.ID, RowRelative:=False
EditDelete
End If
Next tskT
Her is my problem:
Hey , i got this problem at work. im trying to scan trew a column (text18)
and delete all tasks who contains the substring "del".
i think i got this if-sentence working. my problem is the selectrow row:=
tskt.ID and the rowrelative:= false thing. what is it?
and is there anybody who can show me a simple way to scan trew a column and
delete SEVERALE rows?
thanks
Bjørn Tore