User Profile

Collapse

Profile Sidebar

Collapse
wlc04
wlc04
Last Activity: Sep 2 '06, 12:33 AM
Joined: May 2 '06
Location: Winter Haven, FL
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • wlc04
    replied to Forms With M:M relationship
    What do you mean by intersection table?
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to Extract Text in MS Access 2000
    Do you need to know the length of the string or the actual text?...
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to MS Access Packaging Updates
    The package wizard is part of the developer extensions for access 2003. Let's you package and mdb or mde as a standalone application (you can package the runtime version of 2003, so the user doesn't even have to have access installed)
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to report record source
    Thanks Ronald, but I got it figured out.
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to MS Access Report Record Source
    Thanks, but I figured it out. :)
    See more | Go to post

    Leave a comment:


  • wlc04
    started a topic report record source

    report record source

    I would like to be able to set the record source of a report programatically , but I am not having much luck. I have 2 queries which could be the source depending on other parameters in the program, so depending on these parameters I want to change the record source.

    Any ideas?
    See more | Go to post

  • wlc04
    started a topic report record source

    report record source

    I would like to be able to set the record source of a report programatically , but I am not having much luck. I have 2 queries which could be the source depending on other parameters in the program, so depending on these parameters I want to change the record source.

    Any ideas?
    See more | Go to post

  • wlc04
    started a topic MS Access Report Record Source

    MS Access Report Record Source

    I would like to be able to set the record source of a report programatically , but I am not having much luck. I have 2 queries which could be the source depending on other parameters in the program, so depending on these parameters I want to change the record source.

    Any ideas?
    See more | Go to post

  • wlc04
    replied to Access Export
    If you manually export the data to a text file you are prompted for several parameters.
    When you reach the last parameter (you will specify the export path) choose the Advanced button and then choose Save As and it will give you a default specification name (you can rename whatever you want). This specification is saved and can be used in macros and modules so that access knows how you want the file to look when it's exported.
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to conversion : access 97 to access 2k or xp
    Using the updated version of access open the 97 version. Upon initial opening it will ask you if you want to open or convert it. Chose to convert it. Once the conversion is complete you should be fully functional.
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to Opening a Form based on a cmboBox
    Private Sub btn_SearchTopic _Click()
    On Error GoTo Err_btn_SearchT opic_Click
    Dim Criteria As String
    Dim MyRS As DAO.Recordset

    ' Find the record that matches the control
    'load form2 to use its recordset, but don't show it
    'DoCmd.OpenTabl e ("[Topic Information]")
    DoCmd.OpenForm "Topic Information"
    Forms![View All Topics].SetFocus
    Forms![Topic Information].Visible
    ...
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to How do I open a form without showing it?
    Do you have another form that you are calling it from?

    docmd.openform "Edit Topic Information"
    mainform.setfoc us
    Forms![Edit Topic Information].Form.Visible = False

    Another option is make the form you don't want to see a subform of your main form and just set it's visible property to false.
    See more | Go to post

    Leave a comment:


  • When you export tables export specifications are created so that access knows how to handle the fields and what parameters you wish to use for delimeters, etc. How many table options do you have? You may need to create export specifications for each table. At this point there are different options to you have to for the user so they know what to choose from. Let me know how many tables you have and more specifically how you want to present this...
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to Access Exporting help
    You could try to export it to a delimited text file and use some vb code from excel to move the data into a "horizontal presentation".
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to Access Export
    Do you have an export specification built?
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to Access Query question - HELP!
    You could build other queries off of the first one where you have established the date range. In the second query don't add the date field and then use the group by option to narrow down the individual ids and types. You could build a third to get an actual count if that is what you want.

    Another option is to build a report off of the main query and then use the grouping feature to seperate the individual ids/types with the date...
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to building a distribution package
    When you get to screen 4 you can add additional files to be packaged. Click add and find the files you want.

    NOTE: I don't know if there's a limit to the number that can be added.
    See more | Go to post

    Leave a comment:


  • wlc04
    replied to IIf issue
    Are you using these calculations in a report like you stated in your original post?

    If so, then you could have a header/footer for the section which lists the detail data for each shift, then put the calculation in the footer (without the identifier (iif([shift])="1" or "2" or "3"). At this point the calculation will be done for each section of the report.
    See more | Go to post

    Leave a comment:


  • OOPS!! Sorry about missing the sum, but I'm glad you figured it out. :o
    See more | Go to post

    Leave a comment:


  • Try this:

    =sum(([QtyProduced]/([runtime]+[downtime]*[Piecesnum]))
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...