Search results

  1. Lightwave

    Is access the way to go?

    Azure managed SQL Database backend with local MS Access front ends can be really nice. Access runtime is free so don't need to have a paid licence on local computers Access runtime 2016 There should be runtime versions of all Access versions but they get harder to find as you go for older...
  2. Lightwave

    Building a web database, how and what do i need?

    Gus things are moving to the web and there are low coding options for the web which is probably why it is confusing that Microsoft have chosen to deprecate the acces web option. Here's my conclusion on tools for developing web databases I wrote this back in January 2017 but still applies I...
  3. Lightwave

    Setting Up a New Database for Projects & Contracts

    Yes you are looking at a many to many relationship All databases implement this in the same way as two one to many relationships with something called a junction table in between. Carefully study this video should be better at describing what you need to do than anything I can write. Once you...
  4. Lightwave

    Access keeps growing way too much

    Yep once you start getting to that larger scale automation you do need to get creative. Sounds like you are well on your way. Be aware that programmatically implementing compacts and repairs is a bit tricky because Access can only perform a compact by closing the database which effectively...
  5. Lightwave

    open and create notepad from form

    Here's some code that I used to create some HTML in a text file - You could easily adapt it for your need. You will replace the target recordset with a query or table and you should replace the Easting and Northing items with the field names you wish displayed in your file. Sounds like you are...
  6. Lightwave

    Filter out #Error in Query

    We are doing a system transfer of information (there is politics involved) Important notes need to be related to an application number for a planning system. There is no where to store these in the new system so rather than destroying them I am exporting these to files. There are enough that if...
  7. Lightwave

    Thanks to all you experts

    Cronk I was very impressed by some of the things Dev Ashish put together from the Access Web.
  8. Lightwave

    selling your work

    I think what Ridders and Gizmo might lose from being open is more than made up for by the increased visibility and status they get from being open. In 12 years of using Access I've not come across any applications that are knock offs. Interestingly I would be more protective of code relating...
  9. Lightwave

    selling your work

    Very interesting Tony - that barcode example is really good. Haven't needed it but might well in the future
  10. Lightwave

    Thanks to all you experts

    I would add that helping others re-enforces understanding of one's own knowledge and if you happen to be reading about a problem you happen to have fixed relatively recently its difficult to resist trying to see if you can fix it. :D
  11. Lightwave

    Filter out #Error in Query

    Thanks yes will try
  12. Lightwave

    Filter out #Error in Query

    Here's something that I haven't tried to do before. If there are a small number of field values that error out eg in expression calculations within a query. Is there a simple way such as Not #Error? Running a loop of a query and there are a small number of values that have calculated out as...
  13. Lightwave

    Control the Computer Camera using a command from Access 2016

    This is the process in Access 2003 but its almost exactly the same in all versions of Access. Open the form you wish to have the button on in Design Mode. Using the form toolset select "button" and use the mouse to draw its outline on your form. Right click on button and select Properties. A...
  14. Lightwave

    How (AND Why you Should) Subscribe to a Thread

    Good idea and good thread to subscribe to
  15. Lightwave

    DblClick list box item to run query

    USING a VBA onclick event - Within the On_Click Event of the ListBox - my listbox is named List0 where ID filters the record you are wishing to show in the Form1 (change this to the name of your form) I would normally close the form with the list box on it prior to going to the form but I've...
  16. Lightwave

    Upgrade advice for a retired DB programmer

    Office 365 does seem to be increasingly better value and with Access now included in more versions more appealing. I do like my hard copy CD as to a certain extent it gives me the choice of when the software becomes obsolete. 2003 runs great with Windows 10 - its not really a cost issue for me...
  17. Lightwave

    I think my database is corrupted

    This is a standard option for cleaning corrupt databases - you can lose the relationship diagrams but that is it. I like to periodically compile the VBA in my databases I also like to periodically make them into runtime and perform compact and repair. If I can't conduct these procedures on a...
  18. Lightwave

    I think my database is corrupted

    Yes It looks like your program makes copies of both the weekly and monthly database at the same time. Isn't there supposed to be a time difference? It looks like it's doing the same thing twice every time. Its copying one file and putting a month suffix on it and copying the same file and...
  19. Lightwave

    I think my database is corrupted

    I must say I've only had a couple of issues in 2 years and find it incredibly stable compared to the frozen tissue paper of dependency that are web applications. Nonetheless I sleep better when I implement rolling backups on important applications. For all applications I will have. 1.a Back End...
  20. Lightwave

    Execute sql

    Another option is to have a table of SQL Strings and the call the SQL and run it from VBA - this can be good if you have a large amount of SQL strings to run. Public Function RunQueriesFromTable(SQLSource As String) DoCmd.SetWarnings False Dim StartTime As Date Dim EndTime As Date Dim rstZ As...
Back
Top Bottom