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: Arob
  • Content: Threads
  • Order by date
  1. Arob

    Most recent date

    I have a table which contains records of customers. Customers can and will have more than one record in the table. Each record also contains a short date mm/dd/yy of when services are conducted for this customer. I am trying to write a query which would only give me the record for the most...
  2. Arob

    Select Query and Null Value

    I have a very simple select query which a user types in a record number, the query searches the database and if the record number exists, it pulls up a form that has data pertaining to this record number. However my problem is if there is no record number in the database, I would like a...
  3. Arob

    Opening a mail merge document from access form

    I am trying to open a mail merge document using the below code. It opens the word document, but it is no longer a mail merge document. Can anyone assist me with what I would need to change in order for the mail merge to work? Private Sub OpenWord(FileName As String) Dim WordObj As...
  4. Arob

    FMS Total Access Memo

    I am using a product from FMS called Total Access Memo. The product allows you develop report material in word and insert into an access report, via active x control. However the problem that arises is access is that occasionally, text can be "cut off" at the bottom of the report. I was just...
  5. Arob

    Display 0 when counting yes/no field

    I have the below query which counts the number of true values in the exclude location field in the orignal list table. However, how can you get the query to display zero value for a yes/no field? SELECT Count([Original List].Excludelocation) AS CountOfExcludelocation FROM [Original List] WHERE...
  6. Arob

    Existing Records

    I have seen several posts on finding duplicate records where If DCount([productid], "order details", "[orderid] = '" & Me![productid] & "'") > 0 Then MsgBox "Product number aleady exists" However I have two fields, product ID and Order ID. There can be...
  7. Arob

    MSG box for duplicate records

    Have looked under validating data in the help and have had no success with my problem. I want to have a message box appear after a duplicate value is entered into a particular form feild. Basically I would like use an IF statement which if the ID number entered is a duplicate then display the...
  8. Arob

    Division Problem

    I have a bound form for which I am trying to conduct caluculations that will be stored in the table. I want the calculations to be two decimal places. All the form fields sizes are set to double. All calculations work but the final overall total. This calculation always rounds the number up or...
  9. Arob

    Import or Exporting Data

    Currently I am receiving a text file export from one Acess database which I import into another Access database. The process I use is transfer text method. However, the data being imported/exported contains some Ole objects. Because of the transfer text method, these feilds are left blank. Is...
  10. Arob

    I have a simple query which looks a

    I have a simple query which looks at one particular date field within my table and gives me any records whose dates in this field are within 60 days of the current date. I am using access 97 with windows 2000. I copy the database over to a laptop which has just been converted to windows 2000...
  11. Arob

    Windows 98 and 2000 incompatibility

    I have an access database that was developed using windows 2000. However some of the end users are still operating under windows 98. When I try to run the query, SELECT tblchurchsuggestions.* FROM tblchurchsuggestions WHERE (((tblchurchsuggestions.lastupdate)>Date()-60)); within windows 98 I...
  12. Arob

    Run time error 2501

    I have a simple command button to open a form. Below is the code Private Sub property_Click() DoCmd.OpenForm "frmhospitalpropertyedit1" End Sub However when clicking on the button, I receive this error. Run-time error '2501' The OpenForm action was cancelled You used a method of the...
  13. Arob

    I have a continuous form with feild

    I have a continuous form with feild [date needed]. I want to change the backcolor of this field if the system date is greater than the date needed feild. Below is the code I have placed on the Form_current event procedure. Private Sub Form_Current() If [DateNeeded] < VBA.Date Then...
  14. Arob

    I just had my computer crash on me,

    I just had my computer crash on me, I was using WinNT and now they have me on Win2k. This worked fine before, but now it doesn't. DoCmd.TransferText acExportDelim, &quot;Qrytablchurchsuggappend Export Specification&quot;, &quot;qrytablchurchsuggappend&quot...
  15. Arob

    Main form has no entry fields

    I have a form that contains a subform. The main form has only one field. It is a data enty filled, but is automatically filled by a set default value. The problem I am having is the main form does not save this as a record unless I place another text field in the main form and actually type...
  16. Arob

    Count Query

    I have a query for which i am counting the number of records which meet the criteria I have entered. How do I get the query to return a 0 if no records are found instead of simply showing no records. Thanks
  17. Arob

    Saving an Access 97 Report as a PDF File

    I am trying to save a report as a PDF File instead of a RTF File and am having some difficulties with the code. Below is my code for saving and Emailing the Report as an RTF. I have not been able to change the RTF settings to PDF and have any luck. Just wandering if anyone has a solution...
  18. Arob

    Will crystal reports work

    I have developed a database in access 97 which several tables are combined to complete a report. However the problem I have found in access is that the report is two large. Meaning I run out of room and cannot change the height property to more than 22. The question I would like to know is...
  19. Arob

    Changing height property in detail section of a form

    I am trying to develop a data input form in access an have encounterd a problem with the height property maximum being 22. Does anyone know of ways around this to either make the form longer or some other alternative. Thanks.
  20. Arob

    Adding an E-mail attachment

    I have some code where the end user can automatically send out a report through MS outlook, by clicking a command button. However I was wandering, if instead of automatically sending the E-mail, can you get the code to open outlook if the user needs to send any additional attachments. Below is...

Part and Inventory Search

Back
Top