| Title: | OT: Dynamic menu for IE Mac |
| Date: | 05/12/04 (9 Posts) |
| Summary: | Looking for dynamic menus that work with IE on Mac? Find several recommendations here like Cool Menus, Milonic DHTML Menus, AllWebMenus, and HierMenus. A full code example is also provided. |
| Related: | Dynamic Menu for IE Mac |
| Title: | Next "X" Days But SKIP the Weekend... |
| Date: | 05/12/04 (7 Posts) |
| Summary: | How would you display an event list for today plus the next four days, skipping days that fall on a weekend? Here's the pseudo code: |
|
loop from now() to dateAdd("w",5,now()) as indexDay
if dayOfWeek(indexDay) NEQ 1 and dayOfWeek(indexDay) NEQ 7 display events else skip day end loop |
|
| Title: | CFID Hell... |
| Date: | 05/12/04 (9 Posts) |
| Summary: | Since CFID and CFTOKEN are used to identify a computer, not a session, use a session-scoped UUID as a unique session identifier. |
| Title: | Regex Q |
| Date: | 05/12/04 (6 Posts) |
| Summary: | What's the regular expression solution for converting the string FName LName <somebody@somewhere.com> into somebody@somewhere.com? |
|
REReplace(email, "^[^<]+<([^>]+)>.*$", "\1", "one")
|
|
| A step-by-step explanation is provided. | |