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...
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?
I've got an image tag like this:
<img src="whatever.gif" alt="View Invoice">
The alt tag provides a tool tip like message over the icon. It doesn't work on the Mac.
Any ideas?
Got it working with this.
<HTML>
<HEAD>
<SCRIPT>
function closeIt()
{
event.returnValue = "Any string value here forces a dialog box to appear before closing the window.";
}
</SCRIPT>
</HEAD>
<BODY onbeforeunload="closeIt()">
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="javascript">
var submitted;
submitted = false;
function...
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="javascript">
var submitted;
submitted = false;
function window.onbeforeunload() {
if (submitted == false) {
return "If you leave, changes will...
Thanks. I didn't bother with MyItem. I ended up doing something like this, as you suggested.
for (idx=0; idx < document.forms["Invoices"].elements.length; ++idx) {
if (document.forms["Invoices"].elements[idx].type == "checkbox") {
// process...
I have the following code:
for (myItem in document.forms["Invoices"].elements) {
alert(myItem);
alert(myItem.type);
if (myItem.type == "checkbox") {
// never gets here
}
}
myItem.type is undefined for all the elements. But...
The following code gives me what I want for the PC, which is: "11/01/2001"
But on the MAC it returns: "Thursday,"
currentDate = new Date()
document.write(currentDate.toLocaleString().substring(0,10));
Anybody know how to make it return "11/01/2001" for both...
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!?
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!?
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...
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...
Astrid,
I did try:
Me.RecordSource = appAccess.CreateQueryDef("qryOrganization", 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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.