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 derfloh 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. Programmer1974

    optional parameters in XML/VB Script custom component

    Hello all! I have posted this question in the VB Script forumn, but there wasn't an answer there to my question. Perhaps there is an XML solution that you guys can help me with! Here is the question... I'm creating my own custom components (.wsc extension) and have included a method where I...
  2. Programmer1974

    making parameters optional in custom VB component

    Hello all! I thought about posting this in the XML forumn, but after browsing through there, I think I might have better luck trying here first... I'm creating my own custom components (.wsc extension) and have included a method where I want to make some of the parameters optional. Below is how...
  3. Programmer1974

    Variable scope with .wsf scripts

    Hello all! If I have the following script: <job id="Main"> <script language="VBScript"> OPTION EXPLICIT Dim intTest intTest = 1 MsgBox intTest </script> <script language="VBScript"> OPTION EXPLICIT MsgBox intTest </script> </Job> Is there a way to limit the scope of intTest so that...
  4. Programmer1974

    How can I retreive an e-mail using SMTP?

    Hello expert SMTP people! I've seen lots of threads on sending e-mails via SMTP, but I can't find any on retreiving e-mails. So, instead of using Lotus notes (or other) to view my incomming e-mails, how can I use straight vbscript to connect to the SMTP server and retreive my e-mails that way...
  5. Programmer1974

    browsing for a file

    Hello all! I'm writting an HTML document where part of the functionality lets the user browse for a folder, and in another place to browse for a file. After searching through many threads, I've found that the following code works for the folders: Set objFolder = objShell.BrowseForFolder(0...
  6. Programmer1974

    reading odbc entries in vbscript

    Greetings! I have a program that I'm trying to write where I need to allow the user to select an ODBC entry that is already defined. For instance, if I go to DataSources(ODBC) and I see "ODBC1", "ODBC2", and "ODBC3" as system DSNs, I want to show a list of these three options. How can this be...
  7. Programmer1974

    Workbooks.OpenText Help Needed

    I am working with Excel 97 and I want to be able to open a comma delimited text file and set the format for all rows to be "Text" verses "General". Below is the code that I am using to open the file, but I am not having much luck finding the code to set it to "Text". Any ideas??? Dim...
  8. Programmer1974

    restricting users from clearing internet history

    Hello all! I maintain some computers at my church and I'm trying to implement user/group security on one of the computers. I'm new at this, so I'm starting easy :). I want to be able to restrict users from clearing the internet history and deleting cookies. I have WIN 2000 on the computer...
  9. Programmer1974

    &quot;OR&quot; clause in an assignment

    I've seen this line of script in a few exampes here at teck tips, and I'm curious to what it's actually doing. Here is an example: newAce.AccessMask = ADS_RIGHT_GENERIC_ALL Or DS_RIGHT_GENERIC_READ Or ADS_RIGHT_GENERIC_EXECUTE Or ADS_RIGHT_GENERIC_WRITE Or ADS_RIGHT_DELETE You could also write...
  10. Programmer1974

    Windows Explorer System Tree

    The System Tree is not displaying in the left panel when clicking on the &quot;folders&quot; button at the top of Windows Explorer. I have gone through all the setting under folder options and do not see anything to restore this view. I have never seen this happen, and I am at a loss as to how...

Part and Inventory Search

Back
Top