I am having a problem to run an Access application that is developed in a Japanese Office 2000 environment.
The error message that I got is as follow
A problem occured while Microsoft Access was communicating with OLE server or Active X control.
I'm on an English Office 2000 environment...
I did a research on MSDN and found the following:
I can do a copy and paste from my PC to a virtual folder like FTP server using the Shell.
Private Sub btnCopyHere_Click()
Dim objShell As Shell
Dim objFolder As Folder
Set objShell = New Shell
Set objFolder =...
I'd like to export a file from Access Database to a FTP server. Could anyone point me to a direction of how to do this?
I heard that one way to do this is to creat a bat file by Access and run the bat file for transfer. I'm not familiar with bat file. Any direction is appreciated. Or any other...
Yes, it's the case.I was trying to automate a process that I need to know the url in a frame of that web application six months ago.
Thanks for your tips. I guess it's just not the way to go.
Thanks for everyone suggestion though my initial post dated back in July 02.
Jeff, I tried your suggestion. I'm getting the following error message.
Permission Denied in line 5 below.
<html>
<script language=Javascript>
var newWin;
function getTheURL() {...
Yes, you can achieve that by changing it to button input type and remove onSubmit="validateForm(); from <form method="POST" action="myOtherPage.asp" name="frmUserInfo" onSubmit="validateForm();">
Instead you need to add onClick=validateForm(); into...
I don't see any looping of recordset in your script. It means the data value of jstring is always a constant. May be you should post a bit more of your script here.
Kenjoswe, I think you may be better off to output your recordset in an EXCEL file rather than csv file. You won't have problem with the comma.
All you need is this line
<%response.contenttype="application/vnd.ms-excel"%>
And output the recordset in a html table tags as usual.
Just forgot to mention that you need to increase the recordrange by 1 if any link on the whatever.asp file so that the browser can see the next 15 records.
One way to do this is to change the For...To.... range from constants to a variables. You don't need to change any other codes in your file.
ie. FOR intROW_COUNTER = 0 TO intNUM_ROW
FOR intROW_COUNTER = A TO B
Let's say you want to display 15 records each time. You can add a parameter in the...
The only thing that I can tell you is that you'll probably hear from MS, or any other IT firms, that they will claim they have another programming language that you should learn after a year or two learning of ASP.NET
For ORACLE connection by ASP,
set dbconn = server.CreateObject("ADODB.Connection")
dbconn.Open "Provider=MSDAORA.1;Data Source=sun1.xxxxxxx.com;User
Id=xxxxxt;PASSWORD=xxxxxxx;"
Why don't you use the FormatCurrency function. Please check here for function specific. http://www.4guysfromrolla.com/webtech/code/FormatCurrency.shtml
twcman
I also agree with what you said and tried to see if it works. The outcome is negative. This is driving me nuts as it should be an easy task.
The browser keeps telling me that newWin is undefined.
And I think I did define it in line
var newWin=window.open(url,"InWin");
Do I need...
There are many ways that you can do this. One of them is to open another window with your Perl action file with all parameters of forms field in the url.
onClick=openWin() {
a=escape(document.formname.fieldname1.value);
b=escape(document.formname.fieldname2.value)...
Star way
Thansk for your reply.I tried to just reading the url of the opening browser. It means it should read the same url of the opening browser. I got the same error.
I'm not sure if it's the Frames issue.
This doens't work either
function getTheURL() {...
I want to read the URL of the frame in another browser opened from my page. The read URL will then display in the text field of the opener browser's form.
I thought something like this will work but no luck.
function getTheURL() {...
I have a form that allows users to select more than one item from a list box.
The data values of the list box are linked to a table.
I'd like to know if I can display on the form for items selected by the user before Given that those information are stored in a table.
I don't want the user to...
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.