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: *

  1. PGMR1998

    Application Buttons Stopped Working

    I have a VB application that uses ActiveX Controls. Today the buttons on one of my workstations within the application would not work. However, the same fuctions provided by the buttons are available from the pull-down menu within the same application. The fuctions all worked from the menu, but...
  2. PGMR1998

    "confirm" statement not working

    Thanks for all your assistance. I have found the solution: The "confirm" method does not work with pdf forms. When using pdf forms, you must use either the App.response or App.alert methods. Example: var result = app.alert({ cMsg: "Have you sent in your payments? This must be done before...
  3. PGMR1998

    "confirm" statement not working

    I am using IE 7 The code is inside a pdf snippet. However, I placed the code in a new html doc and tried that new doc. But, the new doc does not work either and it is in an html doc with no other code. I suspect that confirm does not work in all environments... I will now try the error console...
  4. PGMR1998

    "confirm" statement not working

    My apologies! The code does nothing when it gets to the confirm. The first alert stmt comes up and after that all goes dead. No errors or anything. This stmt works well: app.alert("Lets get started"); But, after that - Nothing, not even an error...
  5. PGMR1998

    "confirm" statement not working

    I cannot get the confirm to work. does anyone know why my confirm stmt will not work? Her is my code: app.alert("Lets get started"); var answer = confirm ("Are you having fun?"); if (answer) app.alert ("Woo Hoo! So am I.") else app.alert ("Darn. Well, keep trying then."); if ( confirm("You...
  6. PGMR1998

    How to launch SaveAs Dialog Box

    How can i launch the windows SaveAs dialog box using javascript so that the document in my window can be saved? The document i am speaking of is a fill-out pdf form.
  7. PGMR1998

    Limit Size of Calculated Field

    That worked! Thanks! Here is what I had to do to change the field from a PACKED 31 into a decimal 10.2 defined field: CAST( sum(field name) AS decimal(10,2))
  8. PGMR1998

    Limit Size of Calculated Field

    I am creating a file from SQL code,and I am creating a new field in the file using the sum parameter. But the sum field size after I run the code is much larger than I need or want. How can I set its field size? The resulting field is too large, about size of packed 30. I need only PACKED 10. I...
  9. PGMR1998

    Formatting text fields in Crystal Reports

    You are correct, it was not numeric. I created a numeric formula field using the existing field, then it all came alive. Thanks for your assistance!
  10. PGMR1998

    Formatting text fields in Crystal Reports

    When I right click on the object, then select format, there is no option to custimize. Do I have an old version? I am on 10.0
  11. PGMR1998

    Formatting text fields in Crystal Reports

    Hi, I am new to Crystal Reports and I have just completed a report, but it has 3 text fields that contain numeric decimal data. The fields all print fine, but we want them to have 3 decimal places. As of now they look like this: 13 7.12345 18.2 ect Can anyone give me a hint as to what I could...
  12. PGMR1998

    How to branch to a page within a doc

    Is there a way that I can branch to a particular page within a web(pdf) fill-out form using javascript?
  13. PGMR1998

    Force a Null return

    i want the return column PrjMgr to contain all nulls.
  14. PGMR1998

    Force a Null return

    How do i make the field PrjMgr return null values? select AgencyId ,ControlNumber ,ISNULL(LLA_AUDITS.PrjMgr,Projects.PrjMgr) as PrjMgr
  15. PGMR1998

    How To Pull A Web page Content into My Page?

    That did not answer the question. Perhaps I am not phrasing the question correctly. Something like document.location=myURL should work, but I'm not sure of the correct syntax.
  16. PGMR1998

    How To Pull A Web page Content into My Page?

    I am confused. What is the javascript code to reference naother document so that it will show in my window?
  17. PGMR1998

    How To Pull A Web page Content into My Page?

    Hi, I have a web page that will need to also use the content from a web page on another server. How can I use javascript to pull the content of that url into my page?
  18. PGMR1998

    onClick event to call Java

    server-side(livewire) javascript scripting is not supported in my release of sun-one web server. Is there something else I could use?
  19. PGMR1998

    onClick event to call Java

    i am trying to count the number of times a certain link is clicked on this page. Since javascript cannot do database updates, i need a way to call another program that adds 1 to a numeric item in a database. How might this be done?
  20. PGMR1998

    onClick event to call Java

    I want to create a link on a web page such that when clicked, it will invoke a java program and also go to the desired web page. How do I refine my code? <A HREF="http://www.mypage.htm" onClick=JavaProgram to exec;>To My Page</A

Part and Inventory Search

Back
Top