Recent content by DavidRBoyle

  1. D

    importing metal prices

    The information that you need will most likely be made available as a "web service", basically you provide a url containing your request and get the number back from the provider. Doing a search for "base metal prices web service" throws up companies offering the service. From your other...
  2. D

    External Database on the Move

    Are you accessing the databases via a network? The best configuration is probably the forms in a file on your local machine and the data in a file on the network. If you are logged into a VPN at home then possibly some network resource is unavailable at home that you have at work. You need...
  3. D

    Link with tables

    You need to create a foreign key in the Apartment table that references the student table. Empty apartments are those where this field is null. I think you should start as simply as possible,
  4. D

    Link with tables

    The relationship originally described is one to many with one student potentially occupying one of many apartments. There is no request for multiple students to occupy the same apartment. The use of the junction table described above would resolve a many to many relationship which might one...
  5. D

    Issuess with opening form in Access 2013

    I presume you didn't really "open the file in Access holding Shit" :)
  6. D

    Bizarre app crash, no trail

    The behaviour you have described is almost certainly due to something that happens in the crash scenario but not the other. That is easy enough to debug and get to the bottom of once you have the experience to know what you're doing you can identify the line of code that crashes the app and...
  7. D

    Highlight

    I suspect you may be trying to do something in an over-complicated way You might also consider the use of an Input Mask (You'll see it as a property on the fields in the table designer, click F1 there)
  8. D

    Database becomes read-only at random

    It's possible that you are running out of disk-space or hitting the maximum size of a table or the whole database.
  9. D

    Tab Control "Visible" Property

    This is a bit better than MoxieCraze's code :) Me.Graphics.Visible = ((Combo78 = "Graphics") or (Combo78 = "")) Me.Audio_Music.Visible = (Combo78 = "Audio-Music") or (Combo78 = "")) Me.Audio_Voice.Visible = ((Combo78 = "Audio-Voice") or (Combo78 = "")) Me.Video.Visible = ((Combo78 = "Video")...
  10. D

    Tab Control "Visible" Property

    Just a little note regarding your VBA coding stye. It is best to leave the control visible and explicitly set the visibility, this mean the code doesn't need the explanation you have given it. Also you can often use the truth of a condition directly rather than using an if. The bracketted...
Back
Top Bottom