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 TouchToneTommy 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?

    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...
  5. 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...
  6. 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...
  7. 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)...
  8. 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...
  9. JohnnyBGoode

    How can I query a MS Access database in VBScript?

    Is it possible to read from an MS Access 2000 database from VBScript? I have created an Access Query ("TestQuery"), but how do I call that query? Is there a better way to read from an Access database? Below is how I would call a SQL stored proc from VBScript: Set oConn =...
  10. JohnnyBGoode

    Is there a way to convert a string to it's LowerCase alternative?

    If I have a string: str = 'ERROR'; How can I convert this string to 'error'?
  11. JohnnyBGoode

    How can you do mass-printing of FDF's

    If I have a large number of FDF's that have been created (based on a PDF form), how can I print ALL of these (eg. 100) in one step? The naming convention is a standard, as well as the folder that contains them all. Is there a one-step solution?
  12. JohnnyBGoode

    &quot;A failure occurred while attempting to start the compilation&quot;

    Please help me get rid of this problem. Sometimes, to fix it, i delete the /bin/ and /obj/ folders from all of the sub-projects. It doesn't work anymore. I can't compile, therefore I can do anything. PLEASE help me! The error is as follows: "A failure occurred while attempting to start the...
  13. JohnnyBGoode

    @OutputCache Directive Question

    The @OutputCache directive is a very useful thing and fragment caching is even more so, but I have one question. You can set the duration to a specific length of time (in seconds). Is it possible to somehow set the duration to a specific time (EST)? I would like to use the cached version of a...
  14. JohnnyBGoode

    Date comparison question.

    I have a date variable. First of all, it probably need to be formatted in some way before the comparison is done. How can I compare a date parameter (temp_date) to see if it is earlier or later than the current date?
  15. JohnnyBGoode

    How can I validate a string (length=1)?

    2 Parts: (1) I would like to make sure that a string (of length 1) is within the range a-z, A-Z. (1) I would like to make sure that a string (of length 1) is within the range 0-9. How can these be done? Are regular expressions the way to go here?
  16. JohnnyBGoode

    HTML File Object

    I would like to use a &quot;Browse&quot; type of object so that the user may choose a file by drilling through their file folders. I could not find a Web Form object for this use. I had to use the HTML object &quot;File Field&quot;. The problem with this is as follows. When you submit the page...
  17. JohnnyBGoode

    How do I Search a string for a value?

    I have a string &quot;MyFile.doc&quot;. In the end, I would like &quot;.doc&quot;. So, I would like to try to find the location of the &quot;.&quot;, and then take the rest of the string. How can this be done?
  18. JohnnyBGoode

    How do I return a Dataset from a Web Service to an ASP page???

    If I have this: str = oSOAP.PageToDisplay() it will return to value to me...no problem. But if I need a Dataset returned, this: str = oSOAP.FilesToDisplay() it gives me the following error: &quot;Wrong number of arguments or invalid property assignment: 'str'&quot; If I put: str =...
  19. JohnnyBGoode

    How do I dynamically create Web Form Buttons?

    I would like to dynamically create Web Form Buttons as well as create Button1_Click(){} functions for each one. Is this possible?
  20. JohnnyBGoode

    Formatting Numbers

    I have a string: x = '10000.00'; I would like this string formatted such to look like: &quot;10,000.00&quot;. What is the best way to do this?

Part and Inventory Search

Back
Top