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

    Encryption Problem

    Hellos, I'm trying to write a script to encrypt files (some text, some autocad some *.doc ect) prior to ftp'ing them to an outsourced firm we use. I've found the example below but it doesn't seem to be working. use Crypt::CBC; use FileHandle; use strict...
  2. DANZIG

    Clientside ADO Connection

    Hello, I'm trying to test a clientside ado connection to update a db table when the client loads a page. After it is working I would encode the clientside script to protect the db connection from prying eyes. I haven't messed with a dsn-less connection or ado connection in jscript I do them...
  3. DANZIG

    What am I missing?

    Hello, I borrowed an example from another post to try to do something for a page I'm working on but I seem to have something off. The desired function of this is to allow the user to select a begining IP range from listbox 1 and then remove that selection and the preceeding selections from...
  4. DANZIG

    IP Subnet Caclulations

    Hello, Has anybody written anything to calculate IP subnets / Valid Host Ranges? I've starting working on a project that I need the calculations it. I started creating a table based version but see that there will be some problems with it (IE invalid IPs with in the range will not be...
  5. DANZIG

    Need a Hand

    Hello I'm not a jscript person more of a vbscript and am trying to combine two functions to work for the same event. I'm sure somebody has something like this already and will probably see what I need to do instantly. HTML Code <html> <head> <script language="javascript"> function...
  6. DANZIG

    Auto complete not working

    Hello, Can somebody give me a hand on this auto complete? <html> <head> <script language=JavaScript> var arraydata1 = new Array(); var arraydata2 = new Array(); arraydata1[0] = 'a'; arraydata2[0] = 'b'; arraydata1[1] = 'aa'; arraydata2[1] = 'bb'; arraydata1[2] = 'aaa'; arraydata2[2]...
  7. DANZIG

    Text Area or no?

    Hellos, I'm looking to add a few pages to our internal IT site that document some of our processes system to system interfaces ect. The majority of these interfaces are all scripted as a part of the documentation of the process I'm wanting to include the files and source code involved in each...
  8. DANZIG

    script internal timer

    Hellos, I'm getting ready to write something to do a few simple taks on a local system and am needing to have an in script timer setup that can be instanced. I'm needing to say not the time in (miliseconds) it took from the command to the launch of the application, the time from the launch to...
  9. DANZIG

    Query Help

    Hellos, I'm trying to write a query to get results from 2 tables. Sites Idx SiteCode SiteLoc 1 SiteA Town1 2 SiteB Town2 3 SiteC Town3 4 SiteD Town4 and Rights Idx SiteCode UserID 1 SiteC User4 2 SiteA User2 3 SiteD User2 The return I need has 2 parts. 1...
  10. DANZIG

    Data manipulation with in tables

    Hello, I'm working with a table that I use a vbs script to populate and discovered I want to remove a peice of information from a particular field. I know how to do string manipulation in vbs but what is the sql methodology for doing something similar? IE a filed named uptime contains...
  11. DANZIG

    Equality/Comparison

    Can somebody see what is missing in the snippet below? InitLine = "17, some_text_string" InitArray = Split(InitLine,Chr(44)&Chr(32)) InitCount = InitArray(0) For ForIdx = 1 to 100 Idx=Idx+1 WScript.Echo "Idx = "&Idx&", InitCount = "&InitCount&"." If Idx >InitCount Then WScript.Echo "Idx...
  12. DANZIG

    Updating TD BG Color

    Hellos, I'm running a script that updates an sql sb every few seconds, I have an asp that runs a quesy and refreshes the web table based on the results. There are 10 fields in the result not all of them will have data abd they are populated left to right. I would like the empty <td...
  13. DANZIG

    Returning Field Names

    Hello, I'm trying to export field names fro tables to a notepad document to avoid having to type them over and over for various queries I'v got some of the code below but I'm missing something. Set oWshShell = WScript.CreateObject("WScript.Shell") oWshShell.Run "notepad", 9...
  14. DANZIG

    form functionality

    Hellos, I'm trying to set up an ip input field in a from and am close but not so close to how I want it to behave. What I'm trying to do is: 1. separate the ip segments in to fields. 2. auto focus between the fields based on the max length (3) of the current field. 3. if a person uses "."...
  15. DANZIG

    Selection box population/depopulation

    Hello, How can I handle the de-population of selection boxes? <script type="text/javascript"> function put() { var len = DevicesList.SelectedDevices.options.length; txt=DevicesList.AvailableDevices.options[DevicesList.AvailableDevices.selectedIndex].text...
  16. DANZIG

    ADODB.Recordset 800A0BB9 Error

    Hellos, Could some body look at the code below to see if they have seen this error before? I know the ADODB.Connection object is working becuase I use the same code on other pages also the ADODB.Recordset object is in use else where as well. Dim objConn Set...
  17. DANZIG

    document.getElementById() Question

    Hello, I am trying to display various pieces of data in a table. Some of the table rows contain older data and tend to make the page much larger than need be so I would like to give the users the option to display the older data or not using style=display: . I've tried using...
  18. DANZIG

    Query Help

    Hello, I was trying to find the best query to use on the table below. All of the results are in one table and the wold all have the same project number so where projectnum ='1' UserNo RptMo RptHr RptYr User1 06 1 2004 User3 05 6 2004 User2 08 3 2004 User1 06 3 2004 User1 03 12 2003 User1...
  19. DANZIG

    Need a hand

    Hellos, How could I modify the code below to open allow only one table to be open at a time? function table_actions(tbl) { if (document.getElementById(tbl).style.display != "") { document.getElementById(tbl).style.display = ""; } else {...
  20. DANZIG

    Sorting by ADO field values

    Hello, Is there any good way to sort by recordset field values? IE. the query returns only one record but you want to sort the output not by field name but by the fields value prior to handing it to asp to write in to the page. Thanks, Danzig

Part and Inventory Search

Back
Top