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

    Enable/Disable Text Input not working in Internet Explorer 9

    My user is presented with data in a table format. If the checkbox on a row is checked then the Ship Qty becomes editable and vice versa. The following script works but NOT in IE9 to enable/disable the SHIP_QTY field. Is there another way to accomplish this? function toggleSelect(fieldName) {...
  2. cisco999

    pl/sql dynamic variable names

    No, Forms is not involved here. I was unable to bring up the examples using the link provided.
  3. cisco999

    pl/sql dynamic variable names

    In PL/SQL, how are dynamic variable names built? For example, a cursor has fields week_1_date, week_2_date and so forth along with week_1_qty, etc. In a FOR LOOP, the date would be checked, "week_"+i+"_date", if date is within a certain timeframe then the corresponding qty would be zeroed out...
  4. cisco999

    barcode font not displaying in html

    BillyRayPreachersSon - yes, running IE6 SP2 Foamcow - removing the semi-colon had no effect.
  5. cisco999

    barcode font not displaying in html

    The following html does not display the "BC C39 2 to 1 HD Wide" barcode truetype font even though it is installed on my pc and works fine using Crystal Reports. If the font is changed to "BC C39 2 to 1 Narrow", another truetype font, the barcode displays fine. I'm using IE6. Would appreciate...
  6. cisco999

    timestamp comparison

    My bad, I didn't notice the change of the colons to periods in your previous post. Thanks for your help Marc!
  7. cisco999

    timestamp comparison

    I'm using the WinSQL tool and apparently it displays timestamps differently than how they are actually stored. There can't be a space between the two 16's and the colons need to be dots so the correct format is '2007-10-16-16.07.50.060167' not '2007-10-16 16:07:50.060167'.
  8. cisco999

    timestamp comparison

    '2007-10-16 16:07:50.060167' is the format copied while browsing the data. Adding a "-" between the date and time resulted in the same error.
  9. cisco999

    timestamp comparison

    Should have been more clear. I know the format, it's the syntax to compare timestamps which eludes me. The SQL statement generates the following message. Error: SQL0181N The string representation of a datetime value is out of range. SQLSTATE=22007 (State:22007, Native Code: FFFFFF4B)
  10. cisco999

    timestamp comparison

    New to DB2. What is the correct DB2 SQL syntax for the following timestamp comparison? select * from ZX05A.PARSED_PRODUCT_DTL where parsed_product_id = 4 and start_tmestp = '2007-10-16 16:07:50.060167' start_tmestp has a data type of timestamp. Thanks very much!
  11. cisco999

    Suppress labels

    The user would have a selection mechanism, probably radio buttons to choose which of the 4 duplicate labels they need. This would populate parameter(s) to be passed to the report, along with the existing parameters used to select the data from Oracle. Based on this parameter, one or more...
  12. cisco999

    Suppress labels

    Using Crystal XI standard report to generate labels, 2 labels across with 2 labels down. Would like to suppress one or more labels on the sheet based on user selection. Could suppress each field based on the parameter but I was hoping to find a better way. Thanks in advance!
  13. cisco999

    null or not an object

    That was too easy! I was looking at it too long. Many thanks!
  14. cisco999

    null or not an object

    The following script generates a "null or not an object" on line 4. I've used this syntax before to retrieve a value from the page. I'm not seeing the problem. Thanks for the help! <HTML> <HEAD> <script language="JavaScript"> alert('Update successful for PO...
  15. cisco999

    Aligning text a top of cell

    I added style='vertical-align:top' directly to the HTML and I achieved the desired affect. Not sure why it didn't work in the CSS file.
  16. cisco999

    Aligning text a top of cell

    New to CSS. I have two table cells, the text of the first should line up with the top of the 2nd cell instead of the center. Is this possible? Following is the CCS code: .labelTop { HEIGHT: 20px; vertical-align: top; PADDING-LEFT: 5px; PADDING-RIGHT: 5px; WIDTH: 20%; text-indent: 3px...
  17. cisco999

    setting focus

    Thanks very much! That's makes more sense. My next issue is that this only seems to work on the initial page load. When the user proceeds to the next page and then comes back to the original page the focus is not set. Any thoughts?
  18. cisco999

    setting focus

    What does the 'prev()' do? The initial prev calls the original onload process but the '&& prev()' is unclear. //call the prior existing function if there was one prev && prev();
  19. cisco999

    setting focus

    This script sets the focus to the first input field on a form using the For-Loop but I would appreciate if someone could explain how this script works? I haven’t seen a script put together like this, is there a name for this technique? Thanks much! <script name="setFocus"...
  20. cisco999

    Unix if condition

    Thanks very much! The next if condition uses double brackets, [[ ]], what does that indicate? Do you have any websites that you would recommend for a beginner dealing with UNIX scripts?

Part and Inventory Search

Back
Top