Search results

  1. J

    Using a query result on a form's text box

    This worked great. i just made the subform super small to show the one text box and hid everything else
  2. J

    Adding names to a table from a visitor log book for future use

    Hello, I have 3 tables, tblDailyLog DailyLogID | LogDate tblVisitorInfo VisitorID | VisitorName | CompanyName | TrainingDate tblVisitorLog LogID | VisitorName | TimeIn | Time Out I'm using 2 Forms [frmDailyLog] from [tblDailyLog] with a continuous subform [frmVisitorLog] I have entered...
  3. J

    Using a query result on a form's text box

    Hi, I'm using the following query to display total completion % for a project. SELECT qryProjectSubSubTaskTotalCount.ProjectSubTaskID, qryProjectSubSubTaskTotalCount.TotalTasks, qryPRojectSubSubTaskCompleteCount.CountOfActualCompletionDate, [CountOfActualCompletionDate]/[TotalTasks] AS...
  4. J

    Get Last group of record

    I don't but i will definitely research it.
  5. J

    Get Last group of record

    Bam, Solved.
  6. J

    Get Last group of record

    it's a lookup field using both UpdateID and version num
  7. J

    Get Last group of record

    Hi, I have 2 tables, tblUpdateVersions | UpdateID | StartDate| VersionNum | TblUpdateStatus | UpdateStatusID | VersionNum | UpdateDescription | I'm trying to run a query to show the latest group of records that all have the latest VersionNum from tblUpdateStatus When i use Last or Max...
  8. J

    Problem seeing data with multiple queries

    Perfect thanks.
  9. J

    Problem seeing data with multiple queries

    Hello, I have a PO form (frmOrder) from tblOrder with a field (ProjectID) from (tblProjectCoding). I have a query (qryProjectDetailForm) that pulls several fields from (tblProjectCoding) to show all my projects. I then have a secondary query (qryProjectPurchases) which shows all purchases...
  10. J

    Project Database Design

    Jdraw, thank you for your input.
  11. J

    Project Database Design

    Thanks Plog, this is what i had initially thought of but i wanted a second opinion
  12. J

    Project Database Design

    1. My company manufactures goods for the oilfield. We use numerous machines throughout the process. We also install new machines ourselves to further our capabilities. 2. My database is used for numerous reasons, Purchasing of new equipment [tblPurchasing Details of owned equipment...
  13. J

    Project Database Design

    This is a very basic layout from my main database. See attached.
  14. J

    Project Database Design

    hello, I have an existing database that i currently use to store detailed information on hundreds of machines, instruments and other equipment. This is stored in [tblEquipment] I am building a new project management database for installations of new equipment/machines in order to assist me in...
  15. J

    Problem with font changing using mouse move event

    I am using the following code to change numerous images/text/buttons on my home navigation screen from white to orange when they are highlighted and then returned to white when the mouse is moved back over the background that is behind/ separates the boxes. Private Sub ButMOC_Click()...
  16. J

    Line coding for report problem

    Hello, I am using the following code to generate vertical lines for my report but im having a slight overhang. Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer) Dim ctrl As Control Dim intLineMargin As Integer ' This is the spacing between the right edge of the ' control and...
  17. J

    Alternate color by record

    I tried this but it didn't work. Sometimes my records can be over 1 page long.
  18. J

    Header and footer problems on PO Report

    That worked thanks.
  19. J

    Alternate color by record

    Hello, On my report i am using alternating colors. Some of my records can have a lot of text in them where they carry over to another page. i notice that when a new page starts the same record picks up the alternating color on this new page. How would i keep each record color specific?
  20. J

    Header and footer problems on PO Report

    Hello, I am having 2 issues on my report that i cannot figure out. 1. Empty space appearing on footer of each page. I only want the footer on the last page. 2. Header appears on last page even with no details.
Back
Top Bottom