Click here to Skip to main content
15,896,425 members

Comments by M.Edmison (Top 15 by date)

M.Edmison 30-Jan-13 9:24am View    
I see you have that corrected, but using a DateTime field type might be something to loog into as you can break your dates and times up a little easier. Just a thought.
M.Edmison 14-Jan-13 15:06pm View    
I would recomend from reading the above posts, to maybe have a scheduled task or something of the sort that looks to see if the process is not running then start it.

Meaning, sure they can close it but you can just open it back up again.

Depending on the need for this may or may not be useful. (repost for options to original question)
M.Edmison 14-Jan-13 14:50pm View    
Deleted
I would recomend from reading the above posts, to maybe have a scheduled task or something of the sort that looks to see if the process is not running then start it.

Meaning, sure they can close it but you can just open it back up again.

Depending on the need for this may or may not be useful.
M.Edmison 3-Jan-13 8:54am View    
No, I seem to be posting links incorrectly, try it now.
M.Edmison 31-Dec-12 12:37pm View    
Like Anteo4Ever said, variable set would probably be best bet to follow, but hear is how that works.

Your list starts at 0,
so the the "i=rowsToSkip" says it will start at 1, which excludes your first line that being 0.

So list of:
0 = wordA
1 = Letter2
2 = ItemC

It will start on line 1 which is "Letter2" which can be done different with while loops which we won't get into.