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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MoleDirect

  1. MoleDirect

    Values dont survive functions???

    Thank you all.. I will add this to my code!! Much appreciated! :)
  2. MoleDirect

    Values dont survive functions???

    ok... here is an example.. I have a script that is something like this: call main function main a = 1 msgbox ("A = " & a) ' and this would show A = 1 call nextone function nextone msgbox ("A = " & a) ' now, this shows A = end function ' with A no longer having a value. is...
  3. MoleDirect

    VBScript adding entry to outlook not working

    think i found my problem... somewhere in the script, the values are getting lost... I will let you know what i find out...
  4. MoleDirect

    VBScript adding entry to outlook not working

    I tried it, but it still does not appear to be working... I am, however, setting whenwhen to equal the date and time variables like so: whenwhen = ("" & whenday & " " & whentime & "") dtMyFinalDate = CDate (whenwhen) I just need to get the whentime and whenday together somehow.
  5. MoleDirect

    VBScript adding entry to outlook not working

    Excellent call on the validation... However, I am getting an error with the cDate: Type mismatch: 'CDate' Code: 800A000D VB Runtime error Here is the new code, I also added functions out thew wazoo to control moving around in the script. Im a noob :] ' developed by Mike KOvacic ' Remedy...
  6. MoleDirect

    Drive mapping question

    Your method would cache the credentials the same as though it was being mapped manually. You are better off taking the logon script route, so if any users have trouble with the mapping,they can just reboot their machines and it would come back.
  7. MoleDirect

    VBScript adding entry to outlook not working

    Greetings... Im having trouble getting a vbscript to add a calendar item to outlook.. the variable "whenwhen" actually equals out to a date, but is made of other variables like the following: whenwhen = ("#" & whenday & " " & whentime & "#") when you look at the value, it comes out to this...
  8. MoleDirect

    Replace printer TCP/IP Prots

    Hi Mark.. I found the resource, and I found samples to do the following things: 1. Disconnect network drives 2. Map network drives 3. Map network drives based on a group membership 4. Disconnect network printers 5. Connect network printers 6. Set the default printer 7. Modify the registry 8...
  9. MoleDirect

    Flash movie opens in new window in IE8 with _self

    Well, changing the case did it! :) Thank you much!!!
  10. MoleDirect

    Flash movie opens in new window in IE8 with _self

    I will change the case and try again.. I am testing it online.
  11. MoleDirect

    Flash movie opens in new window in IE8 with _self

    I am really perplexed by this one.... I am using IE8, (if I could find the uninstaller, I would go back to 7) and I have a flash movie on my page that has links. The flash movie is my Nav bar, and when you click on a link, it opens in a new window, even though I have the target as _self. I have...
  12. MoleDirect

    Replace printer TCP/IP Prots

    The script may need some cleanup.. Im fairly new with VBScript, so I use functions alot as you can see.
  13. MoleDirect

    Replace printer TCP/IP Prots

    Thank you very much!! Excellent resource... I have a script to add if you like.. It is for VPN users, It runs the login script once a user has connected to the company network.. Make sure you change the IP at: strHost = "10.11.1.110" to your company intranet. I made this because we have...
  14. MoleDirect

    Replace printer TCP/IP Prots

    We are undergoing a complete IP change, and we have many users mapped to many different printers.. I am trying to make a script that looks for TCP/IP ports printers are attached to, and replace them with another IP based on an external file... Here is the logic I am working with: Use with CSV...
  15. MoleDirect

    Make IE7 or IE8 look like IE6

    Hello all. Simple question. I have multiple users that know the IE6 interface, and are comfortable with it, and truly don't want to change. I was wondering if there was a way to make IE7 or 8 look almost exactly like IE6. Mostly placement of toolbars, shut off tabs, have the google toolbar...

Part and Inventory Search

Back
Top