Search results

  1. M

    Question Do not Save Record when I Toggle or change form

    Lets say you have TextBox1 and TextBox2. Create Close form button and disable close button near minimize and maximize buttons. By default expression builder add two lines to your form close button: OnError Goto Next Close Prompt You'd want to insert one line between these two... Now on...
  2. M

    Select Combo Box Item by index

    Sorry I was off for so long. You're lucky I haven't posted all code from that one form. It's just one event :) Anyway I found a solution. If anyone else will try to add few records through one comboBox, or select Combo Box Item By it's Index then this post might help: So basicaly after you...
  3. M

    Msg Box Help

    In Condition field you can try to enter your true statement without IFF. It's not neccesarry. I did like this in condition fields and it worked: IsNull([Forms]![Įvedimas asmens]![darb_id])=True And [Forms]![Įvedimas asmens]![darb_id].[Visible]=True And IsNull([Forms]![Įvedimas...
  4. M

    Select Combo Box Item by index

    Here is my code. Since I'm doing all errors in my language, so Not in list error gives me quite a headache. Just don't mind all error message box text. I'm not posting functions because all the do is checking data integrity and modifies text(i.e. uppercase letters after each space in text line...
  5. M

    Select Combo Box Item by index

    This is not original problem. My original problem is that my combo box(Combo) is related to a table where are 3 fields of whose two are related to other two tables. Anyway I update two last and then I successfully update the first windows as well through VB code. Now keep in mind that I do...
Back
Top Bottom