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!

Search results for query: *

  • Users: MoleDirect
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. MoleDirect

    how do i invoke the login script?

    Hello all.. I am looking to create a VBS file that can fire off a users log on script. I am looking to find out what process launches the windows start up script (to what is specified in Active directory) on their computer, because I want to call it from a script. Is anyone familiar with this...
  7. MoleDirect

    Startup Script Help..

    Hello all.. I am looking to create a VBS file that can fire off a users log on script. I am looking to find out what process launches the windows start up script (to what is specified in Active directory) on their computer, because I want to call it from a script. Is anyone familiar with this...
  8. MoleDirect

    Server 2003 Ent. prmoted to DC, cant kill ICS

    We are in a classroom running VMWare, doing some testing.. We have 2 machines, server1 and server2 server1, we enabled ICS to show how to use it to share the internet to server2, which was not connected to the network, just server1 on a private NIC. Later, in another chapter, we promoted...
  9. MoleDirect

    Computer account expiring in AD> change time? > server03

    I work on a network with around 30,000 computers, and alot of times, field people leave our network connected offices for extended periods of time. When they come back, they are no longer on the domain. It looks like if they are gone for a few months, their laptops fall off the domain. Does...
  10. MoleDirect

    BSOD on sleep restore. have answer, need method :)

    Hello all.. The laptops we use run a program called Screenagent.exe, this is a monitoring software that has to run on our machines as per company policy. The problem is, this program is causing a BSOD every time the computer comes back up from hibernation or sleep mode. If I kill this process...
  11. MoleDirect

    Outlook 2007 > wond show buttons in recieved emails

    We have a script that sends a user an email that has a button in it. In outlook 2003, you can see the button called Verify in the email... In outlook 2007, it only shows like this: [Verify] and its not even hyperlinked.. If you go to View in browserm you can see the button... Is there a way to...
  12. MoleDirect

    acctinfo.dll not adding to my AD MMC pugin

    http://www.microsoft.com/downloads/details.aspx?FamilyID=7AF2E69C-91F3-4E63-8629-B999ADDE0B9E&displaylang=en A plugin under ALTools.exe should allow me to add a new tab in the user properties called Additional information in AD, but when I follow the instruction, the tab never appears. I placed...
  13. MoleDirect

    'IF' statement not working right

    have a chat window much like MSN Messenger I made in flash, and I am trying to get it to be able to carry on a conversation with the user... Keep in mind that this script is attached to a button, user field is where the user types, and reply is where they see their reply. this chat is suposed...
  14. MoleDirect

    Having problems sending email from Projector (Flash MX)

    The FLA can be found at: http://cid-96130dac976eef2f.skydrive.live.com/self.aspx/Public/letters12.fla I am trying to have it send an email after a chat is finished using a blue button... to the right of the chat.. To use the program... it is full screen, use the little dot at the bottom of the...
  15. MoleDirect

    Printing out dynamic Text box in MX (6)

    Hello all. I'm just trying to print the contents of a dynamic text box... I want to bind it to a button, so a user can click a button, and upon release, it prints to the machines default printer without asking for anything else, only the contents of a dynamic text box.. is this possible? OR...
  16. MoleDirect

    simple Dynamictextbox question

    I am making a chat-like program, and I am using a multi line text box that will hold the chat dialog. every time I type in the box and hit submit, it erases the last answer, and p[laces a new one.. I am also hoping to have it place my text there too... Is this hard to do? ALSO... I want to use...
  17. MoleDirect

    Actionscript > Flash MX (6) > Making a chatbot

    Hi all. I am working on a small chatbot that will have conditioned responses depending on words a user types in.. So far, it is a failure.. Here is the code i have: on (release, keyPress "<Enter>") { if (_root.user.text=="Hi") { _root.reply.Text = "Hello"; _root.user.text = ""...
  18. MoleDirect

    Pass values from .vbs file to VisualBasic2008 EXE file`

    I am working with the registry and i was looking for a way to read a registry entry, and show the result on the program... At the moment, the .vbs method working for me is this... Set WshShell = WScript.CreateObject("WScript.Shell") WScript.Echo WshShell.RegRead("HKCU\Control...
  19. MoleDirect

    Working wit h the registry

    Hello all... I am working on a project that will have to access the local computers registry to get values, and report on them. And if need be, change them... Here is the code / theory I am working on.. [code] If [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]...

Part and Inventory Search

Back
Top