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

  • Users: 5tr0ud
  • Content: Threads
  • Order by date
  1. 5tr0ud

    Toggle button to make a subform visible / unvisible

    Does anyone know the coding to use behind a toggle button on a Main form, in which the user can toggle between making the subform visible and unvisible? Thanks.
  2. 5tr0ud

    How to link new imported table with backend of split .mdb

    I've imported a .txt file, creating a new table in the .mdb file of a split MSAccess database. How do I link this table (with the others) to the backend .mdb which contains only tables? Using Tools / Database Utilities / LinkedTableManager, I can see all the previously linked tables but not...
  3. 5tr0ud

    How to Call a Procedure in a Module

    I developed coding behind a button on a Subform. When clicked, it would update the Subform and the Main Form. But it would not let me save the change in the Main Form. So I put the code in a Module and slightly modified it. It compiles OK. What code do I use to CALL THE PROCEDURE when the...
  4. 5tr0ud

    Change the format of Text (a string)

    I have a string [FirstSem] of "20041" (first semester of 2004) which I want to format to be more of a date field (8/2004). Likewise, "20042" I would like to format to 1/2005. Here's pseudocode that may explain what I'm trying to do. If (Mod(FirstSem, 10)=1, "8/" & Round([FirstSem]/10, If...
  5. 5tr0ud

    Adding Yes and No buttons to a Read Only subform

    I've created a subform-6 (read only) which summarizes 5 other subforms. This is what the users wanted. It's working very well, but one user now wants to add a field to this (read only) subform, in which she can indicate Yes / No. However, she cannot directly enter data in the field. I've...
  6. 5tr0ud

    In a Loop, how to Cast a Number (Integer) to String

    In a module, I'm trying to loop through all the records in a table, and change the number fields with 0 to an empty string (""). In the loop, I get a run-time error about a data conversion error, in trying to convert a Number to a String. The run-time error occurs where the code is yellow...
  7. 5tr0ud

    Working with an .MDE file

    We just split our Access2002 database, and now have an .MDE file on the server. A few questions: (1) How do we change a Table's structure/property in the .MDE file? (2) How to maintain\update the .MDE file? I've kept a copy of the original .mdb file (before splitting) and have started to...
  8. 5tr0ud

    ComboBox to Find a Record

    On a Main Form, which has several linked Subforms, I've created a ComboBox to search and display the selected record. I've been able to create this using the following code. PROBLEM: It will select the first record with the specific last name, but will not allow advancing to the next record...
  9. 5tr0ud

    VBA module code to loop through records

    I'm developing a MSAccess2000 database. I've created a subform, based on a query, and I'm trying to loop through one field in all the records on the subform. The subform is a 'continuous' form, which lists 1-10 records for each person on the main form. I've put the code in the OnCurrent and...

Part and Inventory Search

Back
Top