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!

Search results for query: *

  • Users: PGMR1998
  • Content: Threads
  • Order by date
  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

    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...
  3. 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.
  4. 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...
  5. 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...
  6. 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?
  7. 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
  8. 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?
  9. 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
  10. PGMR1998

    How to invoke a web page from within java

    Anyone knopw how I can invoke a web page on my web server from within a java program?
  11. PGMR1998

    view not showing all data

    i created a 3 column view. the first column is categorized and sorted. when i preview the view in notes, it looks great, but when i preview the view with my web browser, all of the category titles appear with a twisty, but none of them will expand to show the data below them. what am i doing...
  12. PGMR1998

    location.href

    i have a function that sends me to another page. problem is that i cannot get back when i hit my back button. here is my code: function getPDF() { url = &quot;00A2001&quot;; url = &quot;http://intranet/legal/opinions/&quot; + url + &quot;.pdf&quot;; document.write (&quot;<meta...
  13. PGMR1998

    how to delay a js command

    how do i delay a js command until the previous command has finished?
  14. PGMR1998

    page is garbage

    this code opens 2 ms word docs into a single browser window. the 2nd document shows first and looks ok, but when i cick the back button on the browser to see the first document, it looks like garbage. anyone no why? <!-- function submitforms() { var d1 = &quot;Test1.doc&quot;; var d2 =...
  15. PGMR1998

    opening multiple documents at one time

    i have a form where the user can select up to 3 choices. each choice is a seperate document to be opened. is there a way that js can open mutiple ms word and xcel documents with a single click of my submit button?

Part and Inventory Search

Back
Top