Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: GPM4663
  • Content: Threads
  • Order by date
  1. GPM4663

    Left Join Query won't run on all PC's

    Hi Everyone, I have the following query containing a left join: SELECT LGDOCA.UNIQID, Trim([NARR1]) AS ItemComments FROM (LGDOCB INNER JOIN (LGDOCA INNER JOIN LGDOCE ON LGDOCA.UNIQID = LGDOCE.DOCID) ON LGDOCB.DOCID = LGDOCA.UNIQID) LEFT JOIN LGDOCF ON LGDOCA.UNIQID = LGDOCF.DOCID WHERE...
  2. GPM4663

    MsgBox appearing behind main form

    Hi Everyone, I have a main form and continuous subform with some check boxes on the subform. When the user ticks a check box I use the code below to display a msgbox if there is an issue. However the msgbox displays behind the main form and hence locks out the main form. The main form pop up...
  3. GPM4663

    Subform Update problem

    Hi Everyone, I have a data capture system for a factory floor which is used to track "Make to Order" jobs and "Make to Stock Jobs". The interface is made up of a main form called "frmMainInput1" and a subform called "subFormProcesses". "subFormProcesses" is unbound until the user enters in the...
  4. GPM4663

    Tab Control Print Form Problem

    Hi Everyone, I have a main form with a tab control in the detail and each page of the tab control holds a subform. I have a print button in the main form to print the screen should the user have a query. The button triggers the following code "DoCmd.RunCommand acCmdPrint" For some reason...
  5. GPM4663

    Remove LinkChildFields problem

    Hi Everyone I have a form with a subform which source object is dependant upon information the user enters. I have set the "Link Master Fields" property to the correct control in the main form and then I use the following code to display the subform Me.subformCard.SourceObject =...
  6. GPM4663

    Use Mouse to select records on continuous form

    Hi Everyone, I posted this on the forms forum but I think it might be better suited here. I would like to use the mousemove event to move to that record on a continuous form. The reason being so that the tooltip changes to display informatio about that particular record and not just the record...
  7. GPM4663

    Use mouse move to go to a record

    Hi Everyone, I would like to use the mouseover event to move to that record on a continuous form. The reason being so that the tooltip changes to display informatio about that particular record and not just the record that the cursor is in. Would anyone have any advice? Thanks in advance, GPM
  8. GPM4663

    Select text onfocus of field in Data Access Page

    Hi Everyone, I have what I think is a really simple problem on a DAP that I am developing. I want the cursor to select the existing text when the user tabs into a certain field so that they can just type over it instead of having to delete what is currently in there. I have tried to use the...
  9. GPM4663

    DAP field creates a new line on enter instead of moving to next field

    Hi Everyone, I've embarked on using a data access page for users to edit some information of a database. I have the page accepting input OK but when you hit enter the cursor doesn't move to the next tabbed field but tries to create a new line in the current field. If you hit the tab button...
  10. GPM4663

    Correct syntax for "Where/Having" to stop aggregate Error

    Hi Everyone, I have the following query: SELECT tblJobCardProcesses.jobCardRef FROM tblJobCardProcesses WHERE (((tblJobCardProcesses.workcentreStop) Is Null)) OR (((tblJobCardProcesses.workcentreStop) Is Not Null)) GROUP BY tblJobCardProcesses.jobCardRef HAVING (((Sum(CLng([stage])))=5)) OR...
  11. GPM4663

    Group form like report groups

    Hi Everyone, I have a report that I am trying to convert into a form. Since I can't group in a form I have a main form and a subform with each of the line records. I want to display the records the same way the report would, so in an ideal world I would set the main form to a continuous form...
  12. GPM4663

    Print x number of labels based on field value

    Hi Everyone, I have a report that I use to print labels for about 100 products. There are 6 labels per page but I need a different number of labels for each product. The label details and the number of labels per product are stored in a table which I have been using as a source of the report...
  13. GPM4663

    Run when actually printing not previewing

    Hi Everyone, I'm trying to get some code to run whenever a report is printed. The report is previewed first and then the user prints the report. I want to run a bit of code to confirm that it has physically been printed and not just previewed. However, when I put the code in the Detail_Print...
  14. GPM4663

    Pass Function to Query Criteria but need "OR"

    Hi Everyone, I'm using the code to get a variable that can be used in the criteria of a query. My problem is how its evaluated in the query i.e. I'm trying to build a criteria expression like ' "MCR" or "HL" ' but the query is seeing it as ' "MCR OR HL" ' . Is there some way to pull the "OR"...
  15. GPM4663

    Set all text boxes in subreport to tallest

    Dear all, I have a continuous subreport in a report that has 4 text boxes per record. I have each of the text boxes set to cangrow = yes and canshrink = yes. All boxes are memo fields and depending on the contect txtBox1 may be taller than txtbox2 or visa versa etc. I was hoping to be able to...
  16. GPM4663

    How to do Late Binding?

    Dear All, I understand the concept of late binding when dealing with references in MS Office but I'm not sure whether I'm doing it correctly. I've been using the following code in Excel to make an "email" button work correctly and different people have differnt office versions etc. Here's part...
  17. GPM4663

    filter form if no records on subform

    Hi Everyone, I've got stuck on something I'm sure is relatively easy. I want to filter a form on opening to display a record only if the record has values in its subform? I hope that makes sense? For example I only want to display a sales header if there are items on the sales line. I don't...
  18. GPM4663

    DTPicker - different users different problems

    Hi Everyone, I have a spreadsheet which uses DTpicker for people to select dates from a calender. On some peoples pc the control doesn't work and just comes up with an "X" even though they have they same version of Excel and same service packs. I've noticed that the people with the problems...
  19. GPM4663

    Change directory back to "My Documents" after save as

    Hi Everyone, I have a spreadsheet that many users use that saves and emails automatically when a button is click. I use the following to save a copy of the spreadsheet: ActiveWorkbook.SaveAs ("C:\FD " & strDate & " " & strDepot) But I've noticed that afterwards if i open a new spreadsheet and...
  20. GPM4663

    Can I combine Emailing Methods?

    Hi everyone, Normally if i was emailing a report I would use the following code to send a snapshot of it: ------------------------------------------------ DoCmd.SendObject acSendReport, "rptPurchaseOrder", acFormatSNP, strTo, strCC, , strSubject, strMessage...

Part and Inventory Search

Back
Top