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

  1. joebb3

    IE10 Automation: Information Bar 'Save As'?

    One other thing... My work network doesn't allow the addition of Trusted Sites. I read that the Information Bar may not show if a site is trusted.
  2. joebb3

    IE10 Automation: Information Bar 'Save As'?

    Recently my work updated to IE10. Previous to the update, I have a VBA project that was working flawlessly. The routine, opened a browser, navigated to a page, logged in to the site, entered some data into the online form, ".click"ed the submit button, worked it's way through the "Save As"...
  3. joebb3

    MSChart: Controlling Datalabels and Markers Placement and Format

    I was having a HECK of a time figuring this out so I thought I'd post it just in case someone else needs it. I have a standard line chart with that tracks 2 series of data. Budget (Control Figure) And How much spent (Order Value) over time. I wanted the Order Value line to track daily, but...
  4. joebb3

    MS Graph: Set Data Marker and Label at Major Tick Marks

    With the data set below, I have created a Line Graph with the row source of: Me!Graph3.RowSource = "SELECT (Format([TDate],'DD MMM YYYY')),AVG([TrendOrdVal]) AS [AverageVal],AVG([TrendCF]) AS [ContFigure] FROM [StatsCurOrdValChart] GROUP BY (Year([TDate])*12 +...
  5. joebb3

    Calculate Number of Months Past a certain Date

    Opps... The last line should be... fAgeYMD = intHold + 1 for it to work. Inthold = number of months but since it is billing, + had to add a month once the date entered into the next billing month.
  6. joebb3

    Calculate Number of Months Past a certain Date

    For info... I finally found this function at the MS Script Repository... It is a script that got me what I needed. Function fAgeYMD(startdate As Date, EndDate As Date) As String 'Purpose: Returns the difference between StartDate and EndDate in full years, months and days 'Coded by...
  7. joebb3

    Calculate Number of Months Past a certain Date

    I'm almost ashamed to ask this, but I searched and Can't find it here. Its a simple thing... I want to calculate the number of "Payments" due or overdue. (I'm removing the form information to make it easier to read.) If ContractInitialPayment > Date Then PaymentsDue = 0 Else...
  8. joebb3

    Control to Expand/Collapse Continuous Form Records

    Someone knows a quick one line answer to this... The question is, "Who?" I'll make it multiple choice/Fill in the blank... Possible Answers: A: No B: Yes if answer = "B" then me!Fillin.Value = "Control Name: " & [Put Control Name Here] end if Thanx!
  9. joebb3

    Control text box on mainform by a checkbox on the subform

    Dhookom's solution is definately more eloquent than mine, but I'm a hack and my way helps me see exactly whats going on where when the code gets longer and longer.
  10. joebb3

    Control text box on mainform by a checkbox on the subform

    Private Sub Add_AfterUpdate() If forms![Form25]![Form26]!Add = -1 then 'Checked forms!Form25!ACS = "Paid" Else 'unchecked forms!Form25!ACS = "Pending" End if End Sub As a side, I would take dhookom's advice and make the control name more unique.
  11. joebb3

    Control to Expand/Collapse Continuous Form Records

    This one was a tough one to title... What I am looking for is a Control (ActiveX or otherwise) to simulate expanding and contracting individual records on a form. I don't think TreeView will fit the bill due to field lables and interface objects I use for asthetics (Filled Rectangle Backrounds...
  12. joebb3

    Passing Formula to Excel Using Cells Reference

    Skip... How many ways is there to say... "You da man!" Thanx Tons! Here's a star! :)
  13. joebb3

    Passing Formula to Excel Using Cells Reference

    I generate a dynamic spreadsheet from Access. It works perfect except I do my MATH in access and just pass the result to Excel. Like this: wks.Cells(iRow, X) = LColMinor LColMinor contains a sum of specific data. What I want to do is pass the formula to make the spreadsheet updateable...
  14. joebb3

    Access 2007: Design Mode pauses when selecting subform

    Bob, Thanks for the comment. I realize that the network is the cause of the issues, my gripe is that, even in Design Mode, ACC2007 treats the form as if it were live accessing queries and control data needlessly. I believe that MS "Knows" this and that was the reason for the new "feature"...
  15. joebb3

    Access 2007: Design Mode pauses when selecting subform

    Bob, Its a sizable database with links to several data sources... Could I write a script to autolink back and forth from Production to Active? Sure I could, but dang it... I shouldn't have to! MajP, Sadly, I have a persistent connetcion to the main data source via a hidden form. (That was...
  16. joebb3

    Migrating to Access 2007 But Keeping 2003 File Formats

    Well... Wait a tick. While MOST things continue to operate as normal, there are changes that can affect your 2003 database. Especially if you Transfer data from the database to spreadsheets. The upgrade seems to break the TransferSpreadsheet function. It can be fixed (using object calls and...
  17. joebb3

    Problem with Subform update based on another subform.

    Opps.. Didn't see the Sub form to sub form thing... You'd have to use the fully qualified path: forms!mainform!sfrmContServicesSum.RecordSource = "qryContServicesSum" Yes?
  18. joebb3

    Problem with Subform update based on another subform.

    MajP, Wouldn't another possible fix be to reapply the record source of sfrmContServicesSum OnUpdate of sfrmHavcItems? Kind of forced a requery? OnUpdate of the "Cost" Control: Me!sfrmContServicesSum.RecordSource = "qryContServicesSum" Its worked for me in the past. Just asking. Joe
  19. joebb3

    Access 2007: Design Mode pauses when selecting subform

    I've have searched for several days to find an answer to this and I have tried many dubious "fixes" with no joy. Background: My database was designed in Access 2003. It is a Front End/Back End setup. The back end resides on a shared network resourse. I have not updated to 2007 File Format...
  20. joebb3

    Global Address book user properties lookup module

    LOL! I was just doing the same thing... Found THIS on MSDN... If objSession Is Nothing Then MsgBox "Must first create MAPI session and log on" Exit Function End If Set objRecipColl = objSession.AddressBook(Title:="Select Attendees", _ forceResolution:=True, _...

Part and Inventory Search

Back
Top