Search results

  1. C

    Outlook style bar menu

    Hello everyone, I'm building an application at work and i'm wondering if there's a module for creating an UI or an UI like MS Outlook. Can someone point me in the right direction? Thnx for your support
  2. C

    query issue

    Hi folks, by using this code i'll get in my query the answer 4 times....:confused: what am i doing wrong? Function GDT() As String Dim db As Database, Lrs As DAO.Recordset, LSQL As String, LT As String Set db = CurrentDb() Set Lrs = db.OpenRecordset(LSQL, dbOpenDynaset) LSQL = "select...
  3. C

    calculating in query depending of date

    Goodday all, I used to create sheets with excel but now i want to transfer everything to access. This is my problem: a table with: column Date (D) column Pressure Left (PL) column Pressure Right (PR) for example: D1 06-jul-09 PL1 250 PR1 0 D2 07-jul-09 PL2 221 PR2 0 In excel i can...
  4. C

    add primairy-key into txtfield

    Hello everyone, I have a table named tblGases, with a primairy-key and a 2 textfields. What i like to do is to let the primairy-key appears in the first textfield. Example: idGasID (Autonumber) txtGas (Text) (Default Value: "A-") txtLocation (Text) idGasID = 1......999 txtGas should...
  5. C

    adding field to a field in a table

    Hello everyone, I have a table named tblGases, with a primairy-key and a 2 textfields. What i like to do is to let the primairy-key appears in the first textfield. Example: idGasID (Autonumber) txtGas (Text) (Default Value: "A-") txtLocation (Text) idGasID = 1......999 txtGas should...
  6. C

    Calculating problem

    Hello everybody, I'm new here. I do have a little problem calculating in a query. I have a query with 4 coloms (colom 1 = Date, 2= Pressure Left, 3= Pressure Right, 4=Flow). Each day i enter the date, and the pressure. I want to calculate the Flow. Example 12-06-09 Left= 300, Right =...
Back
Top Bottom