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 TouchToneTommy 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: lauraSatellite
  • Content: Threads
  • Order by date
  1. lauraSatellite

    PHPDev install on win 2k server

    Hey, Im trying to install phpdev423 on a windows 2000 server with no connection to the internet. I get as far as installing phpdev but when i go to run the batch file (for windows 2000, as there is none for windows 2000 server) i get a dos screen message saying apache1.3.27 win32 php4.2.3 is...
  2. lauraSatellite

    CreateObject("WScript.Shell") wont work on Windows 2000 Server

    Hi, I have a script that contains: set shell = CreateObject("WScript.Shell") currentDir = shell.CurrentDirectory I tested this script on a server at work, and it ran fine. I have just installed Windows 2000 server on my own computer, and am trying to get the same script to run on this server...
  3. lauraSatellite

    Active Directory Client Machines - Do they need specific OS?

    Hi, Im brand new to networking. I have a windows 2000 server which I need setup as Active Directory. The server will be connected to other client machines. I have been reading some "how to's" in this area, and am constantly coming accross references to windows 2000. Thats where my...
  4. lauraSatellite

    InternetExplorer.Application - dynamic ahref problem

    Hi, I have the following .vbs file: '=====================Get Current Folder Location Set sh = CreateObject("WScript.Shell") currentLocation = sh.CurrentDirectory Set objExplorer = WScript.CreateObject("InternetExplorer.Application") DisplayInterface '=====================Internet Explorer...
  5. lauraSatellite

    Create folder named according to date & time

    Hi, im altering a script that creates a specifically named folder: Sub CreateFolders(strPath) Dim objFso Dim arrFolders Dim strDrive Dim strFolder Set objFso = CreateObject("Scripting.FileSystemObject") ' Format path (remove leading and trailing spaces, and final backslash) strPath =...
  6. lauraSatellite

    Form validation producing an error

    hi, i have the following page: <?php session_start(); header("Cache-control: private"); // IE 6 Fix. ?> <html> <head> <title>Page 1</title> </head> <body> <p>Please select one of the following:</P> Options: <br><br> <form method="POST" action="page2.php"> <input type=radio name=option...
  7. lauraSatellite

    Running vbscript from server

    I have a script that im using to collect information on clients and/or servers on an active directory setup. when i run the script from a client machine it works fine, when i run from a server it doesnt work. any ideas?
  8. lauraSatellite

    Passing Variables further than one php page

    Hi, I am trying to pass a variable ($textfileURL) from one 1.php page, to 2.php, and then on to 3.php. While i know how to get the variable to the 2.php, i have been unable to place the value of this variable within a form, and onto 3.php. Within 3.php I have tried things like: <input...
  9. lauraSatellite

    Calling *.vbs file from html onClick event

    Hi, i have been trying to work out how to call a .vbs file from an onClick event on a html page. I have come accross many sites that show you how to write a html page which includes a vbscript, but none that shows you how to refer to a vbscript located outside of that html file. Say I had a...
  10. lauraSatellite

    How to generate IP addresses from a range

    Hi, i need to generate all ip addresses within a specified range. So given two values say 10.197.188.1 and 10.197.189.1 i need to generate all possible ip values in between. If anyone has any ideas on how to do this I would appreciate it if you could let me know?
  11. lauraSatellite

    Retreive a Servers RAM info

    I am relatively new to vbscript. I am trying to retrieve the RAM in mb for a server. I enter the server name in the code, and use the following code to retrieve the ram: GetServerInfo Array("servername"), "C:\SRVINFO.CSV", "," Sub GetServerInfo(aServers, sFileName, sDel) set oFSO =...
  12. lauraSatellite

    open form in datasheet view - how to?

    I have a form that i want displayed in datasheet view. I have: default view set to datasheet allow form view set to No allow pivot chart set to No allow pivot table set to No allow datasheet view set to Yes When i open the form from the forms section, it opens in datasheet view...
  13. lauraSatellite

    passing param to query from combo-box - how to?

    I have a form that is based on the following query: SELECT * FROM Address WHERE Area=[?]; Also on this form is a combo-box set up with the following values: North, South, East, West. These values correspond to the possible values stored in the 'Area' field of the Address table. When I change...
  14. lauraSatellite

    requery after OnChange

    I have a table called Name, with two fields: FName, SName. I have a form with a combo box that has the source Name.FName. On this form i also have a text box that i want to display SName. My table contains an entry of FName: 'John', SName: 'Doe'. Currently 'John' appears as a possible choice...
  15. lauraSatellite

    Call query after update

    I have a Primary Key drop down list which has a query as its source. Currently when i insert a new record, i have to close out of the form, and re-enter it to have an up-to-date drop down list. I need the drop down list to "refresh" or call its source query again after the update occurs. I have...

Part and Inventory Search

Back
Top