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 wOOdy-Soft 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: Joel27
  • Content: Threads
  • Order by date
  1. Joel27

    Running A Database w/ out seeing Access!?

    Is it possible to run a database, but not seeing access. I'm using popup menus but I would like to know if its possible to run the database without seeing the access background.
  2. Joel27

    Removing Icon From A Form?!

    I am creating a pop up form and in the top left corner there is a icon of a form displayed. Can this be removed or replaced with my own icon? Thanks Joel
  3. Joel27

    Tweeking a Exit Button!

    On my autoexec form I have a button on it that quits access or the database if you will. I use the following code to do so: Private Sub quit1_Click() On Error GoTo Err_quit1_Click dim holder as string holder = msgbox("Are You Sure You Want To Quit?",vbYesNo) if vbYes then Docmd.Quit...
  4. Joel27

    Having Problem w/ Code

    I used this code: Dim SQL1 As String, Rs As Recordset, Db As Database, Ctl As Control Set Db = CurrentDb() If IsNull(Me.YourFieldName) Or Me.YourFieldName = "" Then MsgBox CurrentUser() & ", please add an appropriate drawing number.", vbInformation...
  5. Joel27

    Where To Input Module Code

    I am trying to disable the shift key in my data base, but I need help in where the module should be put. i'm using this code: 'This Code Disables the Shift Key ' Public Sub DisableByPassKeyProperty() Dim db As Database Dim prp As Property Set db = CurrentDb Set prp =...
  6. Joel27

    Help With Modules

    I have been working with Access for some time now, and I still am having problems with understanding modules. I have experience with Visual Basic language, but I'm still in the dark about Access modules. Just a few questions about: 1. How to have a module run when the database is opened? 2...
  7. Joel27

    Access and Visual Basic 6.0

    I have a simple question here Is it possible to create a Visual Basic program that can run only certain parts of a database i.e. Create a VB program that will only show a form or a table. The database I am working on will be shared on a network through out the plant, and well, basically I only...
  8. Joel27

    Predetermining Auto Numbers :-I

    Hey ghubbell (I know you would be the one to answers this one) I can't recall if I saw this question or not But You know how I have been working with blue print numbers. I was curious if its possible to start an auto number at a predetermined number i.e. instead of 1, 2, 3 and so on. Is it...
  9. Joel27

    Help w/ bad expressions!?

    I need some help with my expressions It seem every time I use a default expression I get an #error, or a #name? I have been typing my expressions like this example: =dlast([field],[table]) Where is my error or unknown name? Joel
  10. Joel27

    Help w/ default expressions for a form

    In my database I have five forms for entering in the blue print numbers. These five forms are for the size of the prints being entered. A size prints, B size, C size, D size, and finally E size. These forms are gathering the data through a query I made. In each of these forms the print numbers...
  11. Joel27

    Help w/ Linking tables in a Database

    I am currently working on a database using Access 97. I am entering in blue print numbers i.e. a30084, c32566,etc. Right now I have one table that contains all the blue print numbers and description etc. But I wanted to make another table for only the electrical prints. The problem is I dont'...

Part and Inventory Search

Back
Top