Search results

  1. S

    use if condition expression when true as result

    In many case using IF function in excel I must use if condition expression when true as value, example: if(condition >=0;condition;expression when false) if (5+3 > 0; 5+3; 0) is there a shorter way for use
  2. S

    now get recordset for new record in form

    Are new, empty record in form have recordset presentation, how to get recordset in form for empty row?
  3. S

    how to scan pdf document from scanner and attach it to attacment field

    I have hp scanner whose twain driver has the option to scanning in the pdf document. Microsoft WIA 2.0 have save scanned document only to graphical format. I want automated (on click any button control) to scan multipage document from glass source or ADF to pdf document and attach it to...
  4. S

    ms access 2013 before insert raise validation error

    Hello, I use before insert code procedure to insert default value for one, or more fields in row. It is normal to have these fields are disabled. This event occurs when you try to enter a value in any another field in a row. However , when I finish entering the field going to the event before...
  5. S

    run time error '6': overflow

    Folowing code returned run time error '6': overflow Dim MeDok As Recordset Set MeDok = CurrentDb.OpenRecordset("SELECT * FROM Dokumenta WHERE " & _ "[dDok] = #" & Format(Me.[ddok], "yyyy-MM-dd") & "# ", dbOpenDynaset) dDok is date field in table Dokumenta me.ddok is date field in form me...
  6. S

    Three-Level Navigation Form

    How to Creating a Three-Level Navigation Form, First and second level must be in horizontal orientation, third level desirable be to vertical orientation and dependent of level 2. :banghead:
  7. S

    How create navigation forms with multiple levels

    :banghead: I want create combination of navigation forms, navigation forms with two horizontal level and vertical level that link to navigation buttons in second level of horizontal navigation. Please help me!
  8. S

    how to update field sequential number in subform

    Hi, 1. Which event occurs when anything changes on subform (Delete row , add row , perform the sort, Especially when you add a row to be inserted in the current sorting between the rows) 2. I have column sequential number that need updating when occurs any event on subform 3. "On current" is...
Back
Top Bottom