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 Mike Lewis 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: *

  1. tboerner

    Using IE across a network

    I want to use the DSL connection thru the Windows 2000 machine. Do I still need to install the dial-up software?
  2. 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...
  3. tboerner

    Repair and Compact

    Thanks. We did go with this solution.
  4. tboerner

    Repair and Compact

    A point of clarification: I'd like to do this with Access 2000. I figured it out with Access 97. dbEngine.compactdatabase Oldfile, Newfile Does anyone know how to do this in Access 2000?
  5. tboerner

    Repair and Compact

    I want to Repair and Compact my Access database programmatically. Anybody got the code handy?
  6. 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?
  7. tboerner

    MacinTosh/JavaScript question

    Got it working with this. <HTML> <HEAD> <SCRIPT> function closeIt() { event.returnValue = &quot;Any string value here forces a dialog box to appear before closing the window.&quot;; } </SCRIPT> </HEAD> <BODY onbeforeunload=&quot;closeIt()&quot;>
  8. tboerner

    MacinTosh/JavaScript question

    Dave, I don't think the alert will work. The way it works (on the PC), a choice of continuing (or not) is given. Alerts don't give choices. Tim
  9. 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...
  10. tboerner

    MacIntosh/JavaScript question

    Correction: the code does fire on the Mac as well as on the PC. But, the Mac doesn't bring up a message box that the return statement does.
  11. 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...
  12. tboerner

    I have the following code: f

    Thanks. I didn't bother with MyItem. I ended up doing something like this, as you suggested. for (idx=0; idx < document.forms[&quot;Invoices&quot;].elements.length; ++idx) { if (document.forms[&quot;Invoices&quot;].elements[idx].type == &quot;checkbox&quot;) { // process...
  13. 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...
  14. 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...
  15. 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!?
  16. 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!?
  17. 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...
  18. tboerner

    querydef problem

    Astrid, Neither of those worked. Movelast isn't available for a querydef. 'StillExecuting' appears as a possible method when you type 'qryobjOrganization', but when you run it, it says 'Operation is not supported.' That looked like a good idea. I'm satisfied with my workaround. It has...
  19. tboerner

    querydef problem

    Astrid, I did try: Me.RecordSource = appAccess.CreateQueryDef(&quot;qryOrganization&quot;, strSQL).name It doesn't solve the problem. There still seems to be a delay between when the Query is ready for use and when it is being assigned to the recordsource. I did this and it works...
  20. tboerner

    querydef problem

    I did try what I just suggested. No help.

Part and Inventory Search

Back
Top