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

    Using IE across a network

    I have a Windows 2000 machine and a Windows 95 machine networked with a Linksys hub (ethernet). I can ping both machines from each other. The Windows 2000 machine is connected to a DSL line, and it runs IE 6.06. What do I need to do to get IE working on the Windows 95 machine? Is there...
  2. tboerner

    Repair and Compact

    I want to Repair and Compact my Access database programmatically. Anybody got the code handy?
  3. tboerner

    alt tag problem with JavaScript on Mac

    I've got an image tag like this: <img src=&quot;whatever.gif&quot; alt=&quot;View Invoice&quot;> The alt tag provides a tool tip like message over the icon. It doesn't work on the Mac. Any ideas?
  4. tboerner

    MacinTosh/JavaScript question

    The following code brings up a message box on my PC (MS IE 5.0), but doesn't function for the Mac. Any ideas on what I can do? The code does fire on the Mac, but return statement doesn't do anything. <SCRIPT LANGUAGE=&quot;javascript&quot;> var submitted; submitted = false; function...
  5. tboerner

    MacIntosh/JavaScript question

    The following code fires for my PC (MS IE 5.0), but doesn't function for the Mac. Any ideas on what I can do? <SCRIPT LANGUAGE=&quot;javascript&quot;> var submitted; submitted = false; function window.onbeforeunload() { if (submitted == false) { return &quot;If you leave, changes will...
  6. tboerner

    I have the following code: f

    I have the following code: for (myItem in document.forms[&quot;Invoices&quot;].elements) { alert(myItem); alert(myItem.type); if (myItem.type == &quot;checkbox&quot;) { // never gets here } } myItem.type is undefined for all the elements. But...
  7. tboerner

    Date problem

    The following code gives me what I want for the PC, which is: &quot;11/01/2001&quot; But on the MAC it returns: &quot;Thursday,&quot; currentDate = new Date() document.write(currentDate.toLocaleString().substring(0,10)); Anybody know how to make it return &quot;11/01/2001&quot; for both...
  8. tboerner

    MAC IE problem

    IE for the MAC doesn't support VB Script. I'm looking for a quick solution to run some web pages that use VB Script. Is it feasible to run Virtual PC 4.0: MacOS8.5 on the Mac and then IE for Windows inside that? My alternative is to convert the VBScript to JavaScript!?
  9. tboerner

    MAC IE problem

    IE for the MAC doesn't support VB Script. I'm looking for a quick solution to run some web pages that use VB Script. Is it feasible to run Virtual PC 4.0: MacOS8.5 on the Mac and then IE for Windows inside that? My alternative is to convert the VBScript to JavaScript!?
  10. tboerner

    MAC IE problem

    Not exactly a JavaScript question. IE for the MAC doesn't support VB Script. I'm looking for a quick solution to run some web pages that use VB Script. Is it feasible to run Virtual PC 4.0: MacOS8.5 on the Mac and then IE for Windows inside that? My alternative is to convert the VBScript to...
  11. tboerner

    querydef problem

    In the following code, I'm getting some inconsistent behavior. Sometimes, the Me.RecordSource says the qryOrganization is not found. This only happens sometimes. It appears to be a timing issue. I put in a loop between the 2 lines of code, that does nothing. This alleviates the problem, but...
  12. tboerner

    Access Querydef problem

    In the following code, I'm getting some inconsistent behavior. Sometimes, the Me.RecordSource says the qryOrganization is not found. This only happens sometimes. It appears to be a timing issue. I put in a loop between the 2 lines of code, that does nothing. This alleviates the problem, but...

Part and Inventory Search

Back
Top