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 Mike Lewis 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. pkirkley

    Report page breaking

    I am creating a report the is breaking on location with the newpage option. What I need is to have it not duplex print. I need 1 control location per physical page. Anyone know how to do this? Here is the layout of my report: REPORT REPORT1 PAGESIZE 075 LINESIZE 132 SPACE 1 SPREAD SEQUENCE...
  2. pkirkley

    Select distinct problem

    I am doing the following select statement against a view- SELECT distinct(req_number), formatted_req_number, post_title, division3, division2, salary_grade, source_posting_date_end FROM posting where source_posting_date_begin <= '5-Feb-2003' order by division2, division3, post_title In the DB...
  3. pkirkley

    Page not being seen as an .asp via browser

    I am trying to connect to a Oracle database using this code. When I go to this page it only displays the HTML in the browser but when I view source I can see all of the asp code. It appears to never do the database connect and sql statement. Any ideas why this does not work? Thanks Paul...
  4. pkirkley

    Error Handling when deleting a worksheet

    I am attempting to delete a sheet from a workbook using this code: Sub deleteSheet(oldSheet) ' Deletes the work space sheet Sheets(oldSheet).Select ActiveWindow.SelectedSheets.Delete End If End Sub This works great if the sheet exists but if it is not there...
  5. pkirkley

    Error Handling when deleting a worksheet

    I am atttempting to delete a sheet from a workbook using this code: Sub deleteSheet(oldSheet) ' Deletes the work space sheet Sheets(oldSheet).Select ActiveWindow.SelectedSheets.Delete End If End Sub This works great if the sheet exists but if it is not there...
  6. pkirkley

    VBA in Excel Macro - Counting Rows w/in Sheet

    That is a part of what I am trying to do. Thanks!
  7. pkirkley

    VBA in Excel Macro - Counting Rows w/in Sheet

    I need to count the number of records that my sheet has in it and then populate a trailer record after the last valid record in the sheet. The issue I have is that the sheet is in a workbook that contains many sheets. I can perform a DO loop looking for a ISNULL condition to accumulate my row...
  8. pkirkley

    JS using Form - Help

    I am trying to use JS to set a global variable and then assign that variable to an <input type=&quot;hidden&quot; name=&quot;variable_name&quot;> but I am not getting the value of the variable to the server. I get nothing and if I try to set a value <input type=&quot;hidden&quot...
  9. pkirkley

    Processing an array through a OnMouseOver event?

    TechnicalAnalysis, Yes I get the first image every time. It seems that the index is always getting reset to '0' even though the var is outside to function nextPic(). Any thoughts? Paul
  10. pkirkley

    string to integer?

    Try parseInt() parseInt(s) parseInt(s, radix) arguments: s = The String to be passed. radix = An optional integer argument that represents the radix (i.e., base) of the number to be passed. For more information refer to &quot;Javascript - The Definitive Guide&quot; page 643 in the 3rd edition.
  11. pkirkley

    Processing an array through a OnMouseOver event?

    I am trying to process through an array of images but my index isn't working the way I thought it would. Here is the code: <script language=&quot;JavaScript&quot;> var image_names = new...

Part and Inventory Search

Back
Top