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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by TechnicalAnalysis

  1. TechnicalAnalysis

    OLE Server or Active X Control

    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...
  2. TechnicalAnalysis

    Exporting a file to FTP server

    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 =...
  3. TechnicalAnalysis

    Exporting a file to FTP server

    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...
  4. TechnicalAnalysis

    Read the URL of the Frame from another window

    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.
  5. TechnicalAnalysis

    Read the URL of the Frame from another window

    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() {...
  6. TechnicalAnalysis

    Form Validation Without Alert Box or Refresh?

    Yes, you can achieve that by changing it to button input type and remove onSubmit=&quot;validateForm(); from <form method=&quot;POST&quot; action=&quot;myOtherPage.asp&quot; name=&quot;frmUserInfo&quot; onSubmit=&quot;validateForm();&quot;> Instead you need to add onClick=validateForm(); into...
  7. TechnicalAnalysis

    Anchor array?

    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.
  8. TechnicalAnalysis

    Submit Check Problem

    Shouldn't you put return true; instead of return false; after alert('All Okay');
  9. TechnicalAnalysis

    How to stop state no record return on Recordset

    I'd recommend using a SELECT COUNT statement on the table of the database to see if it returns 0 or >0.
  10. TechnicalAnalysis

    Output directly to Excel..?

    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=&quot;application/vnd.ms-excel&quot;%> And output the recordset in a html table tags as usual.
  11. TechnicalAnalysis

    Paging on Array/GetRow Method

    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.
  12. TechnicalAnalysis

    Paging on Array/GetRow Method

    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...
  13. TechnicalAnalysis

    ASP VS ASP.NET

    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
  14. TechnicalAnalysis

    ODBC error running Oracle 7.3 stored procedures

    For ORACLE connection by ASP, set dbconn = server.CreateObject(&quot;ADODB.Connection&quot;) dbconn.Open &quot;Provider=MSDAORA.1;Data Source=sun1.xxxxxxx.com;User Id=xxxxxt;PASSWORD=xxxxxxx;&quot;
  15. TechnicalAnalysis

    How can I get numbers to be displayed as currency?

    Why don't you use the FormatCurrency function. Please check here for function specific. http://www.4guysfromrolla.com/webtech/code/FormatCurrency.shtml

Part and Inventory Search

Back
Top