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 Mike Lewis 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: *

  1. jjmclell

    Batch printing individual form records

    Hi there, I'm using MS Access 2007 and I'm looking for a way to batch print each individual record of a filtered form recordset to pdf. I'd like to be prompted at the start of each print job to select the file location. It has been ages since I've worked in VBA and I do not even know where to...
  2. jjmclell

    Building a report from a junction table.

    Alright, I figured out how to do it using sub-reports and grouping in the record source queries. And yes, the above diagrams were for demo purposes only. Thanks. -jjmclell
  3. jjmclell

    Building a report from a junction table.

    I'm creating a database in MS Access that has 3 many-to-many table relationships in it. The database is for organizational projects - each project can have many partners involved and can meet the intent of multiple policies, and every combination of this relationship. I was thinking of...
  4. jjmclell

    % Complete jumps to 100%

    Hi Julie, Part of the problem with the project schedule is that it was created by people with no real training in MS Project, and one of the 'project managers' who has been updating the project file from time to time originally entered all of his tasks using Manual Scheduling, without...
  5. jjmclell

    % Complete jumps to 100%

    Hi everyone, We have a task in a schedule that was entered as a fixed-duration task. There are no resources assigned to the task, the task has no predecessors, and no tasks rely on this task as a predecessor. The duration of the task was set to 25 days. When we went to update the % Complete...
  6. jjmclell

    Gantt chart bar colours

    Hi there, Is there a way I can change the colours of the bars on a Gantt chart? I opted to use the %Complete option and the default colours are a light blue for incomplete and a dark blue for complete...it's hard to differentiate. Thx, jjmclell
  7. jjmclell

    arrays or queries??

    Hi there, I have a bunch of data in Access and I'm writing a program that will use that data. What I'm wondering is which is the best way to go... Should I build my application in Access VBA and use queries to retrieve the data from the tables whenever I need it, or should I populate arrays...
  8. jjmclell

    Bar chart becomes corrupted

    Hi there, I'm having a problem with a bar chart (MS Graph 8.0) in one of my forms. I have a number of events written that programmatically change properties of the chart - some work on the actual chart application such as changing the title of the chart, while other events just change some of...
  9. jjmclell

    Cannot find list property

    Ok, I just had a bit of a revelation. My problem is that my control is an MS Access control, not an MS Forms control. I had assumed that if I had a control in a form, it must be an MS Forms 2.0 object, which (in the case of a listbox) has the list property. But it's a native MS Access...
  10. jjmclell

    Cannot find list property

    I think I know what you're saying genomon. When I type "listbox1.", the list of methods and properties for autocomplete definitely doesn't include the "list" property. However, the MS Forms 2.0 object library, which I have checked off in my references, describes the List Property of the...
  11. jjmclell

    Cannot find list property

    Hi there, I'm trying to use the list property of a listbox in Access and VBA won't recognize the property. temp = Me!lst_Items.List(0, 0) I get this error when trying to execute the above code: 'Object doesn't support this property or method.' Any ideas? jjmclell
  12. jjmclell

    Value property not updating after list box selection change

    Cool, thanks for the help everyone!! jjmclell
  13. jjmclell

    Value property not updating after list box selection change

    Ok, it seems I've figured it out. Instead of using Form1.listofItems.Selected(next) and then trying to return Form1.listofItems.value I used: Form1.listofItems.Itemdata(next) I swear I've found a bug though b/c the value property of a list box is supposed to return the bound column value...
  14. jjmclell

    Value property not updating after list box selection change

    ItemsSelected is the collection of selected items in a multi-select list box. I have the multi-select property set to none so it doesn't apply. Currently, the way things work, when I select a different item in the list box, the previously selected item becomes unselected as I've verified in...
  15. jjmclell

    Value property not updating after list box selection change

    Hi there, I have a list box with a bunch of items in it. The user can select an item and hit a delete button to remove it which then causes some other things to happen. Basically, as part of that event, I need to select the next item in the list and return its value, as shown below...
  16. jjmclell

    Embed a copy of an MS Graph chart into a report.

    That's kind of the way I'm trying to go. The only thing is, I want the user to be able to insert as many snapshots of as many instances of the graph into the report as they want. I've built a table where the rowsource query of any particular instance of the graph is written when the user hits...
  17. jjmclell

    Embed a copy of an MS Graph chart into a report.

    Hi there, I currently have a form with an embedded MS Graph chart. The chart's row source query changes based on selections the user makes in a couple of combo boxes also on the form, hence causing the chart to change and allowing the user to look at different statistics. What I would like to...
  18. jjmclell

    Why am I getting an 'Overflow' error, now?

    The problem is likely because the denominator in some of the division you're doing in certain cases is equal to 0...anything divided by zero equals infinity...therefore overflow error. I had the exact same problem with some queries I was building and ended up adding a small number such as .001...
  19. jjmclell

    insert chart in Access report

    Hi there, Does anybody know how I can insert a chart into an Access report programmatically? As far as I can tell, there is no simple myreport.add.charts.object method available in any of the libraries I'm referencing and I'm STUMPED!! Any help would be greatly appreciated. Thanks, jjmclell
  20. jjmclell

    Clearing displayed value in a combo box

    Thanks Andrew. I suppose I will likely have to lock and unlock boxes if I want the user to select them in the right order. Once again, many thanks. jjmclell

Part and Inventory Search

Back
Top