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 wOOdy-Soft 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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"...
  3. 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...
  4. 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 =...
  5. 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...
  6. haneen97

    Can't see the error

    Hi, I am getting an error on this line SqlStr = "UPDATE Product SET Product_Name ='" & lName & "' WHERE Product_Id =" & lId & ";" response.Write(SqlStr) MyConn.Execute(SqlStr) Message says "Expected ';'". I can't see the line missing the semi colon. Thanks for your help. Mo
  7. haneen97

    Creating a file by running a report

    Hi, I would like to create a text file of the report after it is opened. I tried to save as text but the user does not want all the headers and footers. They use the text file for an input to another system. Is there a way that I can create a process that is triggered by the report to save...
  8. haneen97

    Group not sorting correctly

    Hi, CR 8.5 I have a report that is grouping two levels of data. It looks like the data is not sorting. I get the top group repeated which means it is showing each time the sub group is changing. I am looking to get the main group once with all the attached sub groups. I have my group set up...
  9. haneen97

    Sub reprot problem again

    Hi, I have a sub report that is expecting a date range from the main report. The sub report seems to be only querying data for the last date in that range. The parameter field is set to range on both the main and the sub reprots. Please help. Thanks Mo
  10. haneen97

    Few questions about cross tab.

    Hi, CR 8.5 I have a cross tab report that looks like this: --------------------April 05-----February 05-----March05-----January 05 “All the nulls” -----100 ------------400------------250-----------150 Category A-----------6---------------4--------------8--------------7 Category...
  11. haneen97

    Sub reports parameters

    Hi, I have a main report that does not display any information and a few sub reports placed on it. The only function of the main report is to hold the sub reports together and have one date prompt for the sub reports. It looks like the sub reports are not recognizing the date parameters passed...
  12. haneen97

    Summing group counts

    Hi, I am trying to summ the group counts using the formula below. I am getting a syntax error on the forth line. Can anyone spot it? Also is this a valid approach? numbervar Payor_Tot := 0; stringvar Payor := {ctc_ins_dnl_rsn_lu.NAME}; if Payor = {ctc_ins_dnl_rsn_lu.NAME} then...
  13. haneen97

    Forcing an Id to the drop down list.

    Hi, I have the dropdown box below. The array loads the list for possible selections. But, as the user views existing products, I would like to view the saved product type. Right now it is stock on the first type in the list. I tried to use that value='<%=PType%>', which it has the saved...
  14. haneen97

    Another type mismatch error

    Hi, I am getting type mismatch error on the last line in the code below. I think it is resulting fromt the table field (Product_Id) is an autonumber. Can you please help? Dim PId . . . Set RS = MyConn.execute("SELECT * FROM Product where format(Product_Id) = '%" & ProdFound &"%'") PId =...
  15. haneen97

    Getting a value from a variable in the VB Script area

    Hi, document.getElementById('txtBalance').value = <%=Balance%>; I thought I could use the above line to copy a currency value fromt he VBScript variables area to that field while executing the JScript function. Any idea? Thanks Mo
  16. haneen97

    Object Required error

    Hi I have these JS functions: If the CalculateVlaues() function is triggered, I get an Object required error on the closed prent on top of the function name. Aand if the Reset() function is called I get the same error on the close prent on top of function name too. I verified the variables...
  17. haneen97

    Do not want the submit button to refresh the page.

    Hi, This is the form and the included objects. All I want to do is allow the submit buttons on the buttom to trigger the two methods after clicking or submitting. I don't want it to refresh the page so to not lose the values in the text boxes and drop downs. <td width="20%"><form action=""...
  18. haneen97

    Calculate without reload

    Hi, I am trying to calculate few fields. I used the submit button but it reloads the entire page and I loose all the data on the page. Can someone please suggest a better way of doing that? Thanks Mo
  19. haneen97

    The onChange does not work the second time.

    Hi, I have two functions, one is called on the onChange and the other is called on the onFocus. The onChange function is not called the second time the cursor leaves the text box. For example, if the user wants to go back and change the value in the triggering text box, the change does not...
  20. haneen97

    Don't know why this function is not working

    It was working fine until I added the alert code. I can't seem to see anything that would stop it from running. Can you please take a look? I get an error on the status bar on the bottom of the page that says "error with page". function ItemTotal(which,txtValue) { var...

Part and Inventory Search

Back
Top