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

    click text passit to another page

    I have a table that a recordset populates when I run my query. I want to click a value from the cell in a table. Then pass the value I click to another page. Can this be done. If so, does anyone have a sample code or an example
  2. lintow

    connection refused

    I have a link that links to another web server page. If the web server that I'm trying to link to is down then I would like to show a page that tells the client the server is down for maintenence. Can this be down
  3. lintow

    redirect

    I have a link that goes to another webserver or page. I want to create a redirect if I cannot get to that server from my link. If there is not connection to the page (server) then display my custome page. Or redirect it to my custome page if the page cannot be displayed can this be done? any...
  4. lintow

    Open File - Security Warning

    When I run my script I call the xcacls.exe program. this sets permissions on files that I create. When the program is ran, I always get: The publisher could not be verified! Are you sure you want to run this sofware! and of course I want to run it. But I want this to happen automatic without...
  5. lintow

    counter

    I would like to setup a counter on my website I want to display the number of people that have accessed my website. Is there a way to do this? Thanks in advance
  6. lintow

    folder permissions

    I have a folder that I want to set permissions to. here is the code to create the folder how do I set the permissions. so the user: (lintow12) has right to it? Set wn = WScript.CreateObject("WScript.Network") Set fs = CreateObject("Scripting.FileSystemObject") Set ws =...
  7. lintow

    create a home directory for each user

    Is there a way to set each users home directory when running this script Const ForReading = 1 Set objShell = WScript.CreateObject ("WScript.Shell") Set objFSO = CreateObject ("Scripting.FileSystemObject") Set fileObject = objFSO.OpenTextFile("C:\VB\File.txt", ForReading) Do While Not...
  8. lintow

    modify a file

    I have a file with usernames in it. File name is users.txt example: lintow djones aharper mjordan I would like to format this like the example here for every username. I guess it would loop through and format it any help would be appreciated DN: CN=test3,OU=test,DC=ces,DC=edu changetype...
  9. lintow

    LDAP

    I'm trying to export users from the LDAP. these users are in a group called: Test. need help on the syntax. here is the info filename: TEST.ldf domain: CES.EDU servername: GIANT based on this info, what would be the syntax to run this
  10. lintow

    insert users into LDAP

    I have a file with 30 users and passwords in it. this file can be any format, right now I have it as a text file. Each user has a password with the username. I want to programmaticaly insert these users into our LDAP. Is there a way to do this using VBScript? any help would appreciated
  11. lintow

    SUM Function formatted

    I have this sql script select upper(spriden_first_name)||' '||substr(upper(spriden_mi),1,1),26,' ')|| lpad(xpersre_curr_gross*100,9,0)||lpad(xpersre_employee_contr*100,7,0)|| decode(xpersre_payroll_id,'MN',4,7)||MIN(xpersre_beg_date)||MAX(xpersre_end_date) from spriden,xpers where...
  12. lintow

    calculate

    I have a problem calculating values within my table I have 3 fields and 10 records the first field is the SSN and the second is name and third is a number value. The table has duplicate SSN with number values I want to calculate the value fields from the duplicate SSN to get a total on that...
  13. lintow

    check to see if the daemon is up

    I have a daemon that I have to start when it is shut down. So I would like to check to see if the daemon is up and running. If its running then stop the script. If its not running then start the daemon. This is what I want to do. As of right now I have some of it setup. But I need to check if...
  14. lintow

    permissions denied

    I have setup SSL on my AIX machine for Apache. Now I trying to start the apache server and I getting errors doing it. I was told to start the SSL as being logged on as root. So here is the error I'm getting # /u01/oracle/102/Apache/Apache/bin apachectl startssl ksh...
  15. lintow

    9i IAS install

    I installed 9I IAS 1.0.2.2.2 on a AIX unix machine. Once the install was finished, this URL was created http://lennox:7777 So I went to the browser and typed http://lennox:7777 this works great. also I set the formsweb.cfg file. I made the changes so that it points to my serverhost and the...
  16. lintow

    unload form after 5 seconds

    Does anyone know how to unload a form after running five seconds? any help would be appreciated
  17. lintow

    Install OAS on AIX 5.1

    Which version of OAS should be installed on AIX 5.1
  18. lintow

    database hyper link

    I created a table in Access and I have one field that is a hyper link to excel files. now I'm in Dreamweaver. I create a record set and I want to search a person that has a excel file The the results would be: ID....Name.......Excel Link Then I want to click the link result and download...
  19. lintow

    search find link to a value

    I have a datbase that has 4 fields firstname, lastname, ID and link I want to search a person and get results of there links in that database. The field (link) has a value that points to an excel file. So when I search that person I get a value that should point to an excel file. And I...
  20. lintow

    copy files

    I want to create a script to copy files from on directory to another. Question is: I have a file or files that start with phpdird_111 and phpdird_122 and so on.. I could have 20 to 30 files like this with the begining name (phpdird_and any number) So I want to copy all the file that start...

Part and Inventory Search

Back
Top