Search results

  1. A

    sum array multiplication between columns

    Hello, I have imported some numerical values into a 2x2 array with dimensions (n-1) rows and 5 columns, where n is an integer > 2. What I am trying to do is multiply all elements from two columns of the array, say column 4 and column 2 and sum the result. My code works, but (naturally you may...
  2. A

    Open form using Input box value

    Hello. I have a form in my db (call it MAIN) containing various fields from table tbl_main. What I want to do, is to create a button on my switchboard in order for the user to open the form in read only mode, based on a value for “net no” that he/she will give as an input. This value...
  3. A

    Select multi entries in a combobox list

    Hello all. I was wondering if there is a way to include more than one entries from the list of a combobox with a single command. For example, writing the following using the itemdata() property could be a solution: If Dis_perc_combo.Value = [Dis_perc_combo].ItemData(0) Or _...
  4. A

    dcount from inputbox

    Hello, I have the following code which always returns 0 (zero) value for check variable, although the value entered in the input box exists in the table (tbl_items): Dim ask As String Dim check As Double ask = InputBox("Please Enter a valid code", "CODE REQUIRED") check = DCount("[CODE]"...
  5. A

    user Role

    First of all, let me congratulate you for the excellent work you have been doing through this forum and apologize if my question may sound trivial to some, or has been answered before. What I am trying to do is to assign roles to the users of my db and programmatically allow them (according to...
Top Bottom