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 SkipVought 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: haneen97
  • Order by date
  1. haneen97

    Error 438

    This is the page that I am trying to load. It was working through a server application that is developed in Delphi. I am trying to move it to the intranet to work as a web page. <%@ Language="JavaScript" %> <%try{ Response.Write ("<html>\r" + " <head>\r" + " <title>Active Patients by...
  2. haneen97

    Error 438

    I am trying to test a web site and got the error below. ******************************************************** Error 438: There is an internal problem with this report. An action is being taken which isn't supported. If you are receiving this error, it is often caused by missing or older...
  3. haneen97

    Microsoft JScript runtime (0x800A1391)

    It may be so. I have to study the process with my DBA and Network Amin and let you know. Mo
  4. haneen97

    Microsoft JScript runtime (0x800A1391)

    I don't think it is theh Cleanup () This is all what is in ClenaUp function CleanUp() { if (row != null){row.Close;}; if (Conn != null){Conn.Close;}; }; I will keep looking in the try clause. Mo
  5. haneen97

    Microsoft JScript runtime (0x800A1391)

    Sorry, Line 286 Statement: text.Close(); The fifth line from the bottom. Mo
  6. haneen97

    Microsoft JScript runtime (0x800A1391)

    Hi, I am migrating a web page that used to run through an application so it would run through another web page. I got an error (Microsoft JScript runtime (0x800A1391) 'text' is undefined) when I view the report page. The parameter page is coded like this: <%@LANGUAGE="VBSCRIPT"...
  7. haneen97

    Group summary is acting up

    HI, I am all set. I made separate running total fields and it worked. Thanks Mo
  8. haneen97

    Group summary is acting up

    Yes, I am suppressing some records. I am using the sum summary. The summary is not using a variable. I inserted the standard summary fields on all the groups. Mo
  9. haneen97

    Group summary is acting up

    Hi, I have a group summary that shows some weird numbers. For example the summary should be adding 1+2 = 3, it is showing 3200. Also, the same group summary is working fine the next page, I mean it adds correctly in one group but shows weird numbers in another. Can you please suggest areas...
  10. haneen97

    Update onClick

    Hi, thank you all for your help. I think I am close. I think I got the process built. But I think that the variables are not getting the data from the request object. E.g in the line below, the variable is not reading the value from the form. I put the variables in the query string and they...
  11. haneen97

    Update onClick

    DotNetGnat The link has great information but it does not demonstrate how you actually connect to the database server. The function sin that link are demonstrating JScript code only I think. Mo
  12. haneen97

    Update onClick

    No luck with that either. Mo
  13. haneen97

    Update onClick

    I changed the code around to do this. <input name="pUpdate" type="button" id="pUpdate" value="Update Record" onClick=" <% lId = trim(request.form("txtProdId")) lName = trim(request.form("txtName")) lCode = trim(request.form("txtCode")) lType = trim(CLng(request.form("lstType"))) lVolume =...
  14. haneen97

    Update onClick

    Hi, I am trying to trigger an update query on a click of a button. I tried few things but I hit a wall. This where I stand now. The button: <input name="pUpdate" type="button" id="pUpdate" value="Update" onClick="return pUpdate_Onclick()"> The function: Function pUpdate_OnClick() lId =...
  15. haneen97

    Two buttons on the screen.

    Hi, I have a page with few push buttons. The search opens a result page for the user to confirm the selection. But my problem is with the “Save” button. It supposed to take the changes from the boxes on the page and update the database. I have hard time getting it to save. I am using the...
  16. haneen97

    Can't see the error

    I am in, I am in. I think I have other problems but the page loads. Thank you thank you. Mo
  17. haneen97

    Can't see the error

    Every time I go to properities, I see the read only button checked on. I check it off and apply the changes but it does not save. I am still playing with it. Mo
  18. haneen97

    Can't see the error

    Still get the same error (Operation must use an updateable query) Mo
  19. haneen97

    Can't see the error

    Product is the table that I am updating. Do you think it has to do with the way I connect to the data base? This is the connection set up. Set MyConn = Server.CreateObject("ADODB.Connection") MyConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("db/RxSoft.mdb") & ";"...
  20. haneen97

    Can't see the error

    I tried that. I got an error (Operation must use an updateable query) on the MyConn.Execute(SqlStr) line. Any ideas? Thanks Mo

Part and Inventory Search

Back
Top