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

    MapEdit

    A couple decades too late and architecturally obsolete. -Geates
  2. Geates

    Access to QLB variables.

    Is there a way to access variables in a QuickLibrary? Maybe with CALL ABSOLUTE?
  3. Geates

    Why are static variables not printed

    this: class Test { public $A; public $B; public static $C; } $test = new Test(); print_r($test); var_dump($test); yields: Test Object ( [A] => [B] => ) object(Test)#1 (2) { ["A"]=> NULL ["B"]=> NULL } Where is the static var C?
  4. Geates

    Static variables and functions

    I'm hesitant about using static variables and functions in classes. It seems as though they are becoming commonplace for simplicity sake - but there are always two sides to a coin. What is your argument and why? -Geates
  5. Geates

    Count occurrences with regex

    Currently, I am using a foreach() loop to count the occurrences of numbers in a string...and to count uppercase letters...and to count lowercase letter...and to count special chars. I feel like there is a "simpler" to do it with regex. Is there? $n = 0; $string_as_array =...
  6. Geates

    What am I missing? (jQuery DOM traversal)

    I'm trying to traverse a DOM object. Furthermore, this DOM object is the result of $.parseHTML(). My code makes sense but it's not working so I must not be considering something. Any help would be greatly appreciated? var str = "<div id='one'><div id='header'><b>hello</b></div><img...
  7. Geates

    Can't figure out what this value represents...

    I have some code that returns the a date of the last SCCM heartbeat on a machine. It contains a value that I can not decypher. I was hoping someone might be able to tell me what it is. What is 157258080? sys_data.lastlogon0 is the number of nanoseconds since Jan, 1, 1900 (I think)...
  8. Geates

    Auto Row Wrap

    I want to create a table that "auto wraps" - a table that reaches a certain limit causing the next row to overwrite the first. How would one configure such a table? -Geates http://ns7.webmasters.com/caspdoc/html/vbscript_language_reference.htm
  9. Geates

    Move data from one table to another

    I have a database that has been collecting data for several years. Only the past 90 days is used daily, the rest can be archived. I would like to do so by moving it into another table. I have written a query that returns rows older than 90 days: SELECT table.A, table.B, table.C, table.D...
  10. Geates

    Render XML file in DIV

    I wrote a vbs script to parse and filter large log files into xml. The xml document is then opened and rendered in a browser. There are several manual steps involved in this process and I'd like to bring the steps together and do the parse, filter, and xml render in an HTA. The problem I'm...
  11. Geates

    objFSO.OpenTextFile won't accept 4 arguments !?

    set objFSO = CreateObject("Scripting.FileSystemObject") 'Generates an "Invalid procedure call or argument" error set objStream = objFSO.OpenTextFile("C:\file.txt", 1, true, 1) 'Does not generate an error set objStream = objFSO.OpenTextFile("C:\file.txt", 1, 1) What gives? -Geates...
  12. Geates

    Sendkeys and Citrix

    I'm trying to automate a process through a Citrix connection. The .AppActivate works fine and the .sendkeys works with letters, numbers, and symbols, but not control keystrokes like enter or tab ({ENTER}, {TAB}). It could be as simple as "Citrix doesn't observe control keystrokes issued by...
  13. Geates

    Windows 7 for refurbished PCs

    So I have an old HP dv4 from 2008. The hdd malfunctions so I bought a replacement. I was going to use the recovery CDs to put the OS (Vista 64) back on the computer but noticed the PK on the COA had worn off ... completely. It seems like my only legitimate option would be to install a retail...
  14. Geates

    Add text to a word document

    I have a document that outlines the version history of our logon script. Every so often, I tweak our logon script and I record the changes in a few locations. I would like to automate updating our document. About half way down the document is where the version history is recorded in a...
  15. Geates

    input values are truncated

    I provided a solution for a VBS thread regarding fraction simplification - thread329-1697266. The solution accepts two values and simplies them as if they were the nominator and the denominator; works beautifully when run as a VBS. However, when implemented into an HTML, the values are read...
  16. Geates

    why does .remove() take away 2 item

    While troubleshooting thread216-1697987, I ran into something I do not understand. Can anyone explain to me why the .remove() is not necessary? If it's uncommented, the function removes 2 items from the source select <!DOCTYPE html> <html> <HEAD> <title>Mulitiple swap on click</title>...
  17. Geates

    strip escaped chars

    is there a vbs function or a combination of functions that would remove all special chars from a string; leaving just literals. What about a regex solution? before: "\t20 dwarfs took turns doing\n handstands on the carpet\r" after: "20 dwarfs took turns doing handstands on the carpet" This...
  18. Geates

    jQuery ajax not returning timely

    I am creating a modal website that uses jQuery ajax calls to retieve HTML and load a modal. When running the site locally, the ajax command executes completely and returns results. However, once it is uploaded to the server, the modal does not get filled. I've considered it being because the...
  19. Geates

    New FAQ: Creating dynamic draggable windows (faq216-7570)

    I spent a while trying to figure this out. This is a fundamental example of what I came up with. It may be useful. I welcome any CONSTRUCTIVE comments :) -Geates "I hope I can chill and see the change - stop the bleed inside and feel again. Cut the chain of lies you've been feeding my...
  20. Geates

    Relative formula in Excel when inserting new rows

    I have a table that has 4 columns: Start Time (A), End Time (B), Regular (C), and Overtime (D). I want columns C and D to be automatically populated based on what is entered in A and B. Here's the formula I have in cell C (assume row 1) C1 = (hour(B1) + (minute(B1) / 60)) - (hour(A1) +...

Part and Inventory Search

Back
Top