Recent content by Gannet

  1. G

    Restructure dataset

    I have a program that exports repeating items on one row and I want to rearrange the data to use it in a report. I need to take data such as(where '*' denotes no data): ID_____Item1_____Name1_____Item2_____Name2_____Item3_____Name3...
  2. G

    Regarding Delete Button

    This may sound dumb but check to see if under the button's click event " [Event Procedure]" is listed. There have been times when I accidentally deleted this which would cause nothing to happen when button clicked but would not delete code. If it is there then put a breaking point to make...
  3. G

    Conditional Format Recordcount

    Is there no one who knows the answer to this?
  4. G

    Conditional Format Recordcount

    Whoops, I thought I had already posted a reply. I'm using the conditional formatting in design view.
  5. G

    Conditional Format Recordcount

    I have a subform on a tab control. I want to add a text box that will be unseen by the user when there are records in the subform but visible when there are no records displaying "No Records Found". I want to do this by using Conditional formatting by having formatting blend into the page...
  6. G

    Highlight values in combobox

    Thanks for the suggestions. A list box won't work very well because of space issues but I think I'm just going to show the second column to indicate which ones are checked. I was hoping for something a little more stylish but this other way will work fine.
  7. G

    Highlight values in combobox

    Is it possible to highlight rows of a combobox based on a hidden boolean value in the second column? I've tried using the code [combobox].column(1)=1 under conditional formatting with no luck. I'm including a photoshoped image of what I want.
  8. G

    Find customer record

    Word of caution on the video. When requering the form it will look for all matches to the pattern created by "Like forms![frmName].[control] & "*"" If you have an autonumber for your index with numbers ranging from 1 to 110 and the combo box is looking for record 1 then you will get several...
  9. G

    Date/Timestamp Sync

    OK, found a solution OK, some of the functions used with the UNC and Internet servers were the same so I thought I would reuse them for both. The problem I ran into was caused by this or rather my lack of understanding of how the functions worked. My quick and dirty solution was to make two...
  10. G

    Date/Timestamp Sync

    Ok I've got something that is working. I had to add a reference to MSWINSCK.OCX to use the winsock activeX control. I'm having an issue though when I try to sync via internet servers. When I click the sync button under the internet section it messes up my system clock even though it returns a...
  11. G

    Date/Timestamp Sync

    I have two questions the first is code related and the other is design. 1st: I need a way to sync up to a trusted external time source such as time.nist.gov via VBA code. 2nd: Since I'm looking to develop an audit trail I need a way to get time and date that cannot be tampered with by the...
  12. G

    Help with AfterUpdate

    You've set the RowSource but you need to requery it. such as: Me.cboCUST.Requery Me.cboCUST = Me.cboCUST.ItemData(0)
  13. G

    Help with Audit Trail

    I'm developing an audit trail using some code and ideas from ghudson's audit trail. I'm having all changes, new records, and deletes saved in a table. The issue I'm running into is capturing deleted field in my tables that have relationships with parent tables. I have included a sample...
  14. G

    Question with Criteria

    Link not working Link not showing any results.
  15. G

    Question Login on unsecured DB

    Problem Solved The user was part of a Workgroup that was saved on his computer but not the System.mdw file. There are only two databases in access that he was using (neither one secure). Since there was no need of the security file I had him Join back to the System.mdw file. Everything is...
Back
Top Bottom