Hello to everyone.
It's a little strange but is there a way to insert (via code or otherwise) a new record on the top of a tabular form instead of inserting it at the bottom? (after all the existing records)
I don't want to make a data entry form...
Hello to everyone.
It's a little strange but is there a way to insert (via code or otherwise) a new record on the top of a tabular form instead of inserting it at the bottom? (after all the existing records)
I don't want to make a data entry form...
Well Miners74, i suppose that you want your Main form to be maximized all the time, and the other forms to be appeared over the main.
First open your "client" forms in design view and with mouse. stretch or shrink them as you want.
Set these Properties as follow:
AutoResize No ---...
Francescina means this:
to provide concurrent access to records by multiple users, Access locks records. In a multiuser environment you can open recordsets in one of 3 different ways.
I) No locks
II) Edited record
III) All records
It is up to you to decide which Locking Strategy is best for...
Hi modalman,
why don't use the DLookUp Function... It is very helpful if you want to get or just display the value of a field that isn't in the record source for your form or report.
See Access Help Topics for this.
Good Luck
Well sayetta,
try this code in a backup of your database.
***This deletes all of your tables in your project***
Do While DCount("[Name]", "MSysObjects", "[Type]=1 And [Name] NOT Like ""MSYS*""") > 0
DoCmd.DeleteObject acTable...
I really don't remember where in the WEB i found this article, but it is useful when you want to delete e.g. all the Tables from database but the existing relations don't allow you to go on, OR Access fails to display relations between tables in the Relationships window. Since you could not view...
Well limpan,
the following is from the Access '97 help topic on Selected Property
The following example uses the Selected property to move selected items in the lstSource list box to the lstDestination list box. The lstDestination list box's RowSourceType property is set to Value List and the...
Well jlindquist,
Use the following SQL statements as Rowsource for the ComboBox.
SELECT MSysObjects.Name FROM MsysObjects WHERE (MSysObjects.Type)=-32768 ORDER BY MSysObjects.Name
or check faq181-690 for selecting other Access Objects via Combobox.
Good Luck.
Hi to everyone.
Well, i have a bit strange(?) question.
I have a Continuous Form based on a table with 4 fields, say f_A, f_B, f_C, f_D and all of them exist on the Form.
f_A is an integer and can take these values:1725,343,7408,9054 and may appears many times on the Form.
Is it possible for...
Hi to everyone.
Just a thought, but i don't know how it could be work.
(Access 97)
First, you have to make system objects visible. Click Options on the Tools menu, click the View tab, and then select the System Objects check box.
Now, in your Tables Area should be appear a Table named...
I don't know if someone out there someday needed to do this, but because i did, this is the way:
Use the following SQL statements as Rowsource for the control depending on which object you want.
[color red]Tables[/color]
SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],4) <>...
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.