Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. smurfhell

    Objects/variables

    Awesome! The array reference is used to populate the popup menu. With your code in place, it would look like this: function dropdownmenu(obj, e, menucontents, menuwidth){ var divId = obj.parentNode.id; var arrayRef = window[divId]; if (window.event) event.cancelBubble=true else...
  2. smurfhell

    Objects/variables

    To make things easier, I will upload the full code I am using. When something is passed to the dropdownmenu (obj, e, menucontents, menuwidth) function in the menucontents position, it refences the array defined in the head of my webpage i.e. <head> <script> var printer3=new Array()...
  3. smurfhell

    Objects/variables

    So far I've tried: Remove "menucontents" from the function and substitute populatemenu(menucontents) with populatemenu(obj.parentNode.id) Add newmenu=obj.parentNode.id; populatemenu(newmenu) I might've tried a few other configurations, but I keep getting errors on the page (Object doesn't...
  4. smurfhell

    Objects/variables

    That helps and gets me a bit closer. Thank you. Here is the dropdown function: function dropdownmenu(obj, e, menucontents, menuwidth){ if (window.event) event.cancelBubble=true else if (e.stopPropagation) e.stopPropagation() clearhidemenu() dropmenuobj=document.getElementById...
  5. smurfhell

    Objects/variables

    I have a printer map page with layers (div) that are associated to specific printers. For example: <div style="position: absolute; left: 300px; top: 86px; width: 34px; height: 25px; z-index: 1; background-color:#FFFFFF" id="c5180"> <img border=0 src="images/printer.gif"...
  6. smurfhell

    Simple VLAN on HP 2824

    So say that my SAN is 172.16.2.X, my server is 172.16.3.X, and my client is 172.16.4.X. In the OS, do I set the gateway to be 172.16.X.1 depending on which subnet the device is in? Do I have to set static routes between server-SAN and server-client?
  7. smurfhell

    Simple VLAN on HP 2824

    Thanks for the link, I'll read through the whole thing after I post this. I've seen similar information in other HP manuals (I've downloaded 4 different manuals for this device now) I guess my main question is on what addresses/subnets to use. I'm currently using 172.16.0.0/16 for my entire...
  8. smurfhell

    Simple VLAN on HP 2824

    From what I've read, the HP 2824 is a layer 3 switch capable of IP routing. I'm just not sure what commands I need to run to get the switch to route to the VLANs correctly. I'm also not sure if I have to change settings on my clients to match the gateway of the VLAN.
  9. smurfhell

    Simple VLAN on HP 2824

    I've read through the manuals, numerous Google results, and plenty of these forums, but I still can't figure out what I'm doing. I have a 2824 that I want to have 2 VLANs. VLAN1 = the default VLAN VLAN2 = SAN VLAN Let's say that VLAN1 will be ports 1-20 and VLAN2 will be 21-24. Ports 19-20...
  10. smurfhell

    Simple VLAN on a 2824

    I've read through the manuals, numerous Google results, and plenty of these forums, but I still can't figure out what I'm doing. I have a 2824 that I want to have 2 VLANs. VLAN1 = the default VLAN VLAN2 = SAN VLAN Let's say that VLAN1 will be ports 1-20 and VLAN2 will be 21-24. Ports 19-20...
  11. smurfhell

    Find difference in array

    I'm not looking for a specific answer, but rather, just some clues to get me in the right direction. I have a single dimension array like myarray="1,1,1,0,1,1,1" or myarray="0,1,1,1,1,1,1,1" or even myarray="1,1,1,1,1,1,1". I am looking for a way to search myarray for any different numbers. In...
  12. smurfhell

    Detect if item is flagged in Outlook

    Nevermind, I think I've gotten it figured out. I will update this post once I finish rearranging my code.
  13. smurfhell

    Detect if item is flagged in Outlook

    I have a macro that automatically files emails according to their subject. However, if the folder it searches to save in does not exist it flags the message - green for missing job, orange for missing email folder, i.e. jobs\1234\email is the path for the message to be saved in. If email is...
  14. smurfhell

    InStr contains multiple matches

    Wow, thanks for both suggestions. I do have trim hidden somewhere in my actual macro, I just left it out when I pasted. (I also have a fancy feature in between that writes the subjects, job number, etc. to an html log file) I'll see about implementing these and let you know if I run into any...
  15. smurfhell

    InStr contains multiple matches

    I have written an Outlook macro to help our project/email filing admin. It scans her inbox for all message subjects containing the text "BCE #" followed by a 4 or 5 digit number ie "New Project BCE #4311" and then saves them on the network under that job number. However, some people are sending...
  16. smurfhell

    Sending a message that isn't forwarded by server

    We solved this problem by signing up for a free email certificate from Comodo. The 3 other principals also got installed free certificates. When they want to send something confidential, they encrypt the message. No record of the message shows up on the assistants computer.
  17. smurfhell

    Sending a message that isn't forwarded by server

    I have a user that receives a lot of email each day, but, since he doesn't go through it all, we have his account set to forward copies to his assistant.(Exchange General>Delivery Options>Forward To: & Send to forwarding address and mailbox) This user needs to receive some confidential...
  18. smurfhell

    Compress multiple if statements

    That did the trick, thanks!
  19. smurfhell

    Compress multiple if statements

    Is there a better way to write this out? strlength = Len(item.BillingInformation) If strlength = 5 Then job2 = Left(item.BillingInformation, 2) If job2 = 12 Then sjob = "p:\12000s\" & item.BillingInformation MsgBox (sjob) Else If job2 = 11...
  20. smurfhell

    Do Loop needs some work

    Your second suggestion did it. Thanks for the help!

Part and Inventory Search

Back
Top