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 TouchToneTommy 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. Joel27

    Open Access DB to specific Form?

    Go To the tools menu> the go to startup then go to display form Click the arrow down and then you can choose what for you want to open when access is started. Or you can use a macro to open it by going to open form then define the name of the form then go down and put in maxamize and make sure...
  2. 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.
  3. Joel27

    If statement in macro (if certain form is open, then...)

    I.e This will give you some ideas go to the ABC form goto properties> then go under Event> OnOpen Private Sub Form_Open(Cancel As Integer) docmd.openform "XYZ" end sub
  4. Joel27

    If statement in macro (if certain form is open, then...)

    You really can't do anything that specific with a macro. Instead try using VBA to do what you want
  5. 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
  6. Joel27

    Tweeking a Exit Button!

    Is there a way to edit the title bar on a message box? I like the code you gave me, Gordon very nice:) Joel
  7. 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...
  8. Joel27

    Having Problem w/ Code

    I just zipped it and sent it you shoul dget it in about 10 minutes J
  9. Joel27

    Having Problem w/ Code

    I tried the code up above and no such luck yet any thoughts J
  10. Joel27

    Having Problem w/ Code

    Private Sub Drawing_Number_AfterUpdate() Dim SQL1 As String, Rs As Recordset, Db As Database, Ctl As Control Set Db = CurrentDb() If IsNull(Me.Drawing_Number) Or Me.Drawing_Number = "" Then MsgBox CurrentUser() & ", please add an appropriate drawing...
  11. Joel27

    Having Problem w/ Code

    Scratch that last one i get an error on 'response' Response = acDataErrContinue
  12. Joel27

    Having Problem w/ Code

    Get an error on (me.drawlog) If IsNull(Me.YourFieldName) Or Me.YourFieldName = "" Then Member or data method not found! what do you thinks the error here J
  13. 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...
  14. 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 =...
  15. 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...
  16. 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...
  17. 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...
  18. 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
  19. Joel27

    Help w/ default expressions for a form

    I seem to be getting a #name? message in my form box I used =Dmax([drawing number],[n:\log\drawlog])+1 and I did try =Dlast, for the heck of it all. Any thoughts to whats my problem? joel
  20. 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...

Part and Inventory Search

Back
Top