Forum: MS Access and FileMaker Pro Nov 20th, 2008 |
| Replies: 6 Views: 2,686 Hi,
Your best and simplest solution is to use ASP which will require you to install IIS from windows cd. And for how to do it, there are 1000s of codes describing connecting ASP to DB on the web. |
Forum: MS Access and FileMaker Pro Nov 20th, 2008 |
| Replies: 1 Views: 877 Hi,
Your example is not that clear but i guess that you need to transfer your query to a crosstab. |
Forum: MS Access and FileMaker Pro Nov 20th, 2008 |
| Replies: 1 Views: 892 Hi,
If you are using access you have to include the code in the before_update event of the text box. |
Forum: MS Access and FileMaker Pro Aug 15th, 2008 |
| Replies: 1 Views: 1,885 Hi,
Please check the attached example.
Hope it will work for you. |
Forum: MS Access and FileMaker Pro Feb 1st, 2008 |
| Replies: 8 Views: 16,051 Hi,
I have used lately the developer extensions of access and they don't actually create you a stand alone wersion of your mde or mdb but:
It will create you an installation file with the ability... |
Forum: MS Access and FileMaker Pro Dec 12th, 2007 |
| Replies: 1 Views: 1,129 Hi,
Add in the validation rule: <=999
and the required message in the validataion text. |
Forum: MS Access and FileMaker Pro Dec 9th, 2007 |
| Replies: 1 Views: 1,040 Hi,
I think there is no way to format part of the field directly in the table. Accordingy you may need to put it in a query and show it as:
Format(Left([CredNum],11),"XXXX XXXX XXXX " &... |
Forum: MS Access and FileMaker Pro Oct 2nd, 2007 |
| Replies: 1 Views: 3,504 Hi,
Try this (it applies for 2003, I don't have 2000 installed now), delete the linked table and relink it while using the table name there is supposed to be a check box to the buttom right of the... |
Forum: MS Access and FileMaker Pro Aug 29th, 2007 |
| Replies: 5 Views: 9,136 Hi,
The easiest way is using the function DateSerial so that it would look like Between DateSerial([Forms]![frmCriteria]![txtFrmYr],[Forms]![frmCriteria]![comFrmMth],1) And... |
Forum: MS Access and FileMaker Pro Aug 28th, 2007 |
| Replies: 3 Views: 3,937 Hi,
I have attached u a DB with one table to check it, if I wrongly understood you please clarify. |
Forum: MS Access and FileMaker Pro Aug 27th, 2007 |
| Replies: 3 Views: 3,937 Hi,
In the design view select the field and in the format property (in the lower part of the table design view) put 0000. This will show the number 1 as 0001 or 888 as 0888 noting that it is a... |
Forum: MS Access and FileMaker Pro Aug 27th, 2007 |
| Replies: 8 Views: 16,051 Hi,
The best you can do do is to create an mde file with hiding the database window and menues and running a startup form. This is the nearest you can do to simulate an exe. |
Forum: MS Access and FileMaker Pro Aug 25th, 2007 |
| Replies: 2 Views: 3,742 Hi,
What brale said is true if you are using SQL Server, but in case of access the wild char. is * so it will be:
where name like "chr*" |
Forum: MS Access and FileMaker Pro Aug 22nd, 2007 |
| Replies: 2 Views: 2,862 Hi,
Please try to replace the True by 1. (Members.Member=1) |