Search results

  1. D

    ComboBox and TextBox combination

    I have a comboBox which has Degree types, when I drop down the comboBox and I select one, it shows in my TextBox What I want is the following: Right now, through the same TextBox I use I'm able to enter a new Degree Type into the database. But what I haven't been able to do is that I haven't...
  2. D

    Query Result into a TextBox

    I'm trying to get the following SQL Query result into a TextBox. This is my Query: SELECT ID from tblEmployee Where DateEntered IN (Select Max(dateEntered) from tblEmployee) ; I know that to get a single result into a textbox I would normally use DLookup, but I don't think DLOOKUP allows...
  3. D

    Adding Nested IF

    I'm trying to add a set of Nested IF statements, but it's not showing me the proper result. I have a table which shows the classes that each student has taken based on the term. So I change the letter grade they receive to a numeric value, once I get that, I need to add those numeric values...
  4. D

    How to run a query from a comboBox event?

    I would like to run a query where I have a comboBox that carries ID's, if I select an ID, then I want to be able to use that selected ID to perform a Select query which will show the results in a textbox.
  5. D

    Form Design Question

    Hey guys, I have an issue with a form that I'm trying to build. I'm a bit new at this so I'm not sure If what I need is possible. I have a table called student, it has the following fields: ID, Term, Term_GPA Example data: 2 200720 3.5 3 200720 3.0 2 200730 3.3 I...
Back
Top Bottom