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...
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.
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
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
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...
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...
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
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...
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 =...
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...
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...
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...
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
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
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.