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 strongm 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: JA3395
  • Content: Threads
  • Order by date
  1. JA3395

    I can't get onKeyPress or onKeyDown to work in Firefox

    I'm having real problems with Firefox and the onKeyPress / onKeyDown event handlers. Just for a change, both work fine in IE! <script language="Javascript"> function capLock(divID,e){ kc = e.keyCode; if (kc == 0) kc = e.charCode; if(kc >= 65 && kc <= 90) {...
  2. JA3395

    Calendar Control 2003

    Does anyone out there know what version of the Calendar Control is included with Office 2003? I've got 2007 and Calendar 12.0, but it doesn't seem to be compatible with 2003...
  3. JA3395

    Checkbox control in Word

    I have checkbox controls embedded (InlineShape) in a word document. Depending on values in these and other controls, sections of the document gets deleted. My problem is, is that once sections are deleted, then the controls embedded in those sections no longer exist, so I can't use the control...
  4. JA3395

    Javascript and FireFox / Chrome

    Has anyone meet this before I have this Javascript function that is supposed to change a value before submitting the form. The form name is dynamic, so is the value function SubmitForm(What,DoWhat) { var f=document.getElementById(What); f.Task.value = DoWhat; // <<<<<< FireFox fails on...
  5. JA3395

    Excel 2007, AVERAGEIFS Syntax problem in VBA

    Has anyone successfully used the WorksheetFunction AVERAGEIFS? I'm having real trouble figuring out the syntax for the function in VBA. strLowerDate = Format(dblRunDate + TimeSerial(0, 0, 1), "dd/mm/yyyy hh:mm:ss") strUpperDate = Format(dblRunDate + TimeSerial(23, 59, 59), "dd/mm/yyyy...
  6. JA3395

    Data Model - Data Source a Function?

    don't know whether this is even possible. I have a data set that is not possible to achieve using a native SELECT statement. I've written what I need into a FUNCTION (or PACKAGE function) that returns a record. How do I get the data row returned by the FUNCTION in the "Data Model" SELECT *...
  7. JA3395

    How to combine IN and LIKE

    I have a problem I can't resolve I have a parameter that can be either contain '%' or 'VALUE' or 'VALUE,VALUE,VALUE' I need to code the select statement to cater for all of these possibilities I currently have the following AND NVL(SGBSTDN_RATE_CODE, '%') IN -- (lv_rate_code_list)...
  8. JA3395

    Excel VBA creating Word 2003 - Run-time Error 5097

    Run-time error '5097' There is insufficient memory. Save the document now. 'OK' is the only option This error happens at Dim oDoc As Word.Document Set oDoc = oWord.Documents.Add(Template:=strTemplateSpec) Word fires up using the template and then this error pops up. All the Microsoft and...
  9. JA3395

    Outlook SecurityManager

    Has anyone out there ever succeeded in using OlSecurityManager to turn off the Outlook security warnings? I found the following suggestion Dim OlSecurityManager As Outlook.SecurityManager Dim oApp As Outlook.Application Set oApp = CreateObject("Outlook.Application")...
  10. JA3395

    Oracle Forms Problem

    Is there a specific Oracle Forms forum or do we use this one?
  11. JA3395

    Problem declaring and using a REF CURSOR

    I'm having a real problem using a REF CURSOR type Here's the DECLARE and the start of the BEGIN I've so far developed. DECLARE TYPE r1 IS RECORD ( szvcapc_pidm szvcapc.szvcapc_pidm%TYPE, szvcapc_term_code szvcapc.szvcapc_term_code%TYPE, szvcapc_request_no...
  12. JA3395

    Problem declaring and using a REF CURSOR

    I'm having a real problem using a REF CURSOR type Here's the DECLARE and the start of the BEGIN I've so far developed. DECLARE TYPE r1 IS RECORD ( szvcapc_pidm szvcapc.szvcapc_pidm%TYPE, szvcapc_term_code szvcapc.szvcapc_term_code%TYPE, szvcapc_request_no...
  13. JA3395

    How to Display values on MouseOver at RunTime

    I've been directed to ask this question in here. Question: How do I get the MouseOver to work at RunTime - I hover the mouse pointer over a value and ....... nothing. Is there an option that I need to switch on to get this working? - it's becoming a REAL pain to have to keep adding a Watch to...
  14. JA3395

    Display values on MouseOver

    Excel 2000 Visual Basic 6.3 This is not technically VBA. How do I get the MouseOver to work at RunTime - I hover the mouse pointer over a value and ....... nothing. Is there an option that I need to switch on to get this working? - it's becoming a REAL pain to have to keep adding a Watch to...
  15. JA3395

    Excel 2003 Vlookup problem

    HELP!! Const cMATNR = 1 'Set myRange = .Range(.Cells(cDataStartRow, cDataStartCol), Cells(GetLastRow(ws), GetLastCol(ws))) Set myRange = .Range("A2:AD1541") ' locate MATNR in range varValue = Application.WorksheetFunction.VLookup(MATNR, myRange, cMATNR, False) I get the error Unable to...
  16. JA3395

    Updateable query problem - not permissions!

    I'm having a problem updating a table using a query to select the correct number of records. When I used a second table to perform the INNER JOIN, the query ran and upated the table, but unfortunately it updated more records (50) than it should have done. UPDATE XREF_MATNR_TO_PART INNER...
  17. JA3395

    Create dropdown list in VBA

    Does anyone know if it is possible to generate a dynamic dropdown-list in a cell by calling a VBA function passing the contents of another cell Something along the lines of:- =GenerateList(C4) Function GenerateList(Byval strClass As String) As [DropDownList] Dim lbxDropDownList As...
  18. JA3395

    How do you set &quot;Allow Zero Length&quot; to Yes from SQL?

    I'm trying to use a Query to create a table so that when the fields change, as they are doing regularly right now, I can just modify the script and re-execute. I have a problem though. CREATE TABLE [Table_Name] (Field1 TEXT(18) NULL, (Field2 TEXT(255) NULL); Does not set the "Allow Zero...
  19. JA3395

    query name error on execute problem

    I'm trying to execute a query but it keeps coming up with:- 'qappLT_MM_Bulk_-_Basic_Data_from_MM' is not a valid name. Make sure that it does not include invalid characters or punctuation and that it is not too long I have other queries with the same naming convention and they run fine, for...
  20. JA3395

    JOIN and forcing UPPERCASE?

    I'm trying to perform an inner join on two text fields, the contents of the field are mixed case values. Is there any way I can perform the equivalent of INNER JOIN ON UPPER(csid_det.csid_part) = UPPER(qryPt_mstr.pt_part); which of course Access will not allow! An alternative would be to be...

Part and Inventory Search

Back
Top