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 SkipVought 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. mikehoot

    Potentially speed up form operations dramatically

    For those wishing to do this via code, I added the following lines to my startup form's Form_Open event. The WindowsInTaskBar line is not related to this thread, but I do find it useful! Private Sub Form_Open(Cancel As Integer) Application.SetOption "ShowWindowsInTaskbar", False...
  2. mikehoot

    Potentially speed up form operations dramatically

    Fantastic Tip!!! I have spent weeks looking at performance tips for access and have not come across this one before. My current project is a multiuser project database. I have shortened the network path, used a smaller filename for the BE, and optimised queries/indexes, but nothing came close...
  3. mikehoot

    Adding a Blank Line to top of Combo Box List

    Create a record with a blank entry. Then set your combo's default value to the key (bound value). Then if a user selects a record and changes their mind, they can select the blank record or delete the entry. Either way the blank entry is selected. :-)
  4. mikehoot

    Access 2000 & Access 97 on the same machine?

    It is possible, but you need to follow some steps. Go to Microsoft KnowledgeBase website as they have an article on this.
  5. mikehoot

    Yes/No Combo Box Displays -1 and 0 instead of Yes & No

    Go to the Properties of your combo, and change Format to Yes/No. :-9
  6. mikehoot

    Help!!!!!!!!!! Combo Box is not working......

    I wouldn't change the bound column value as this is the value stored in your table, usually the foreign key (Primary Key of other table.) You could place a text box next to you bound combo-box which displays column 2 from you combo-box.
  7. mikehoot

    Record Version control

    I agree, a good idea, and can be customised as required. For example, I have implemented Access Security and therefore can record CurrentUser() as a text field in each new record, including records re-created from existing records. This gives me great control when it comes to audit. Nice One :-9
  8. mikehoot

    Form goes blank

    You could use the forms On_Load event to check for the nimber of records in the qry recordset. If >1 then close form and show msg popup. Sorry, don't have time to write the code but you get the idea.........:-9
  9. mikehoot

    Allowing Data Entry - Queries

    "Data Entry" makes the form default to Add New Record. To edit existing records, leave this to NO.
  10. mikehoot

    Can we assign 1 system.mdw file to a DB on a network?

    MaggieB You might think the program is pesky, and I would probably agree, but if you copy the system.mdw file then the original has exactly the same properties as your network copy. Even if you apply permissions using your copy, the original system.mdw file retains admin rights. As Access...
  11. mikehoot

    Can we assign 1 system.mdw file to a DB on a network?

    You need create a unique .mdw file. Then log into your unsecured db using a shortcut to this mdw. Now go through the securing process and your new secure db will be limited to this mdw file. Again, add a pw to user ADMIN and add another user with ADMINS permissions. Then remove ADMINS...
  12. mikehoot

    Replication, Synchronization & Linked Tables

    To convert back to original I would look for 2000 version on their site. I'm sure it is there. Try looking at the 97 page and check out the keywords at the bottom of the document. Then repeat these for a search on Access 2000. :-9
  13. mikehoot

    Replication, Synchronization & Linked Tables

    Try these two links below. They may help. One is an FAQ on replication and describes a process to recreate the CONNECT string for your tables. The other is a tool to convert you design master to regular db (Access 97). If you are only making design changes to your front-end forms etc, I would...
  14. mikehoot

    Put into hours : minutes

    Create a module called modMinToTime and paset the following function Function mintotime(myminute) mintotime = myminute \ 60 & ":" & Format((Abs(myminute Mod 60)), "00") End Function You can now call this function from your db. Simple use mintotime(myminutes)...
  15. mikehoot

    Front End networking problemo...

    When you use the Linked Table Manager, what is the path shown for the linked tables? :-9
  16. mikehoot

    Searching other databases

    If speed is an issue, have you considered making a "make table" query and running this at the start of each day. You can then run your other queries on your new temporary table. You can upate this table when required.# :-9
  17. mikehoot

    Two way remote update of Access Dbase

    Have a look at the help files for added tables and fields when using replication. These will differ between the replicas and the design master and could relate to your differing file sizes. As your non-replicated db is over 6000kb, I wouldn't be too concerned with having master and replicas of...
  18. mikehoot

    Install Win98 on notebook, CD-ROM driver prob

    Problem solved! Unfortunately I was not able to boot to cd-rom, so instead created custom autoexec and config.sys files to load cd-rom drivers when booting to c: (with cd-rom in drive bay) Thanks :-9
  19. mikehoot

    Install Win98 on notebook, CD-ROM driver prob

    I need you help! I need to install Win98 on Dell notebook. It currently has no OS and a Safeboot program. This program is fine, except it gives me the option of either booting to OS (can't change) or Floppy. It has interchangable floppy and cd-rom drive in one bay. I have a problem when I use...
  20. mikehoot

    Runtime Error 429 - really stuck!

    Try moving the DAO ref up the order so that it is above the ADO ref. :-9

Part and Inventory Search

Back
Top