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. JohnnyBGoode

    How can I open a link in a new "tab" (IE7) ?

    The "window.open()" method will open a link in a new window. In IE7, how can I open a link within the same window, but in another tab? Also, how can I distinguish which browser version the user is on? Thank you in advance.
  2. JohnnyBGoode

    How to Dynamically Change the Font Size

    In a javascript event, is it possible to change all the font sizes on the page?
  3. JohnnyBGoode

    How do I see the entire value of a small drop-down list?

    I have a <SELECT> tag as follows: <select name="firstName" id="firstName" style="width=50px"> <option value="0">Alla</option> <option value="1">Alabama</option> <option value="2">Boris</option> <option value="3">Bella-Hermoza-Chicka</option> </select> The <SELECT> tag MUST be a small...
  4. JohnnyBGoode

    How do you sort an &lt;option&gt; list in JavaScript?

    Beauty! I looked at previous posts, but didn't search the FAQ. Kaht....that worked perfectly. Thx, bud.
  5. JohnnyBGoode

    How do you sort an &lt;option&gt; list in JavaScript?

    I currently have a select list: <select name="list"> <option value="a">A</option> <option value="b">B</option> <option value="c">C</option> </select> I add and remove items dynamically using the folowing: list.options.add(oOptionItem); list.options.remove(i); However, when I add and...
  6. JohnnyBGoode

    Adobe is auto-refreshing a page (causing it to load twice)...why?

    It IS a 3rd-party extension. I was just hoping someone else had run into this issue and has already found a solution. Thank you.
  7. JohnnyBGoode

    Adobe is auto-refreshing a page (causing it to load twice)...why?

    It is create using a .NET extention called DynamicPDF. It is written out to the page as a PDF.
  8. JohnnyBGoode

    Adobe is auto-refreshing a page (causing it to load twice)...why?

    I have a .NET application that dynamically creates a PDF. I know that Adobe is automatically refreshing the page because the constructor of the .NET page is called twice. This is causing a problem because the .NET app hits a log file. Most times this PDF is created (but not every time), there...
  9. JohnnyBGoode

    Adobe is auto-refreshing a page (causing it to load twice)...why?

    I have a .NET application that dynamically creates a PDF. I know that Adobe is automatically refreshing the page because the constructor of the .NET page is called twice. This is causing a problem because the .NET app hits a log file. Most times this PDF is created (but not every time), there...
  10. JohnnyBGoode

    Querystring help

    Alright, whatever. I've had this problem before. I just moved the function the the very bottom of the page, and it fixed the issue. The parameter was sent and received without any problems.
  11. JohnnyBGoode

    Querystring help

    The page will render all javascript before any logic is called. You must make sure to assign the value of pID BEFORE you create the function popupHA(). If your code looks like this (approx): <body> <script language="javascript" type="text/javascript"> <!-- function popupHA() {...
  12. JohnnyBGoode

    How can I save a PDF with the form fields filled out?

    Maybe you have the Professional version? Most people don't have that. But like I said above, if you are using Dynamic PDF, it allows your users (who may only have the Reader) to view and save PDF's containing pre-populated data.
  13. JohnnyBGoode

    form field mask

    You can create a textbox with a value of "mm/dd/yy". Then, "onFocus();", you can clear the value and allow the user to enter in the desired value. You can also add an onLoseFocus (I forget what the actual function is) that will check to see if the value is blank. If it is blank, you can...
  14. JohnnyBGoode

    How can I save a PDF with the form fields filled out?

    It's never good to request that your users download a new application to view your PDF's. I have been involved in converting all of our PDF's that contain form fields (ie. FDF's) into PDF's using Dynamic PDF 3.0. This application is a .NET component that enables the application to create...
  15. JohnnyBGoode

    Embedding a form into an Email (parameters not passed)

    I have a form embedded into an email. When I send this email, the recepient can enter in information and then submit it. Upon subission, it opens a page and displays the results. However, in MS Outlook 2003, NONE of the parameters are received on the "action" page (causing a pmajor problem)...
  16. JohnnyBGoode

    Unusual Compilation error

    I ran into this problem and it caused major delays. The resolution I found was to close the solution. Then go the the folder structure and manually delete the files inside the /bin/ folders. These folders contain a bunch of .dll's that will be re-create devery time you compile anyways. Delete...
  17. JohnnyBGoode

    Datagrid column format (only 10 leftmost characters)

    After you have done the DataBound(), you can loop through and replace the values of column X with the respective truncated values.
  18. JohnnyBGoode

    display empty datagrid

    Or instead...when the "Add Row" is done, you can check to see if there is only one row in the DG. If there is, then "update" it with the new values. If there is more than one row, then "add" your row. This way, when you start the DG will show up because there is a blank row. When you add one...
  19. JohnnyBGoode

    How can I save a PDF with the form fields filled out?

    I have Adobe Acrobat 6.0 Pro installed on my pc. I have created a bunch of form fields on a PDF and I can enter values and save different versions with different sets of values entered in (obviously with different file names). However, when someone else opens the PDF on their pc (they don't...

Part and Inventory Search

Back
Top