Forum: MS Access and FileMaker Pro Jul 18th, 2009 |
| Replies: 15 Views: 753 Why don't you try on this forum.
http://www.accessforums.net/forms/
It is devoted to MS access so it would be a good place to take a look or most likely get a more informed answer then I can... |
Forum: MS Access and FileMaker Pro Jul 18th, 2009 |
| Replies: 15 Views: 753 Not sure what I can tell you. i have never used the Macros in Access and have no clue what the syntax error is. There is most likely some Microsoft syntax that you need but I don't know where to find... |
Forum: MS Access and FileMaker Pro Jul 18th, 2009 |
| Replies: 15 Views: 753 When looking through a few pages I saw reference where someone used the syntax
Alter Tablename Add fieldname datatype(length)
Have you tried this syntax, not sure if it works.
I found this... |
Forum: MS Access and FileMaker Pro Jul 17th, 2009 |
| Replies: 15 Views: 753 The basic syntax for the alter command is
ALTER TABLE Employees ADD COLUMN Emp_Email TEXT(25);
I think you should be able to run something more like
alter table... |
Forum: MS Access and FileMaker Pro Jul 17th, 2009 |
| Replies: 15 Views: 753 Like I said earlier I am not an Access forms guru but I would guess that you would have to access the text boxes attributes from the macro. Something like 'textbox1.text', but again unless someone... |
Forum: MS Access and FileMaker Pro Jul 17th, 2009 |
| Replies: 15 Views: 753 In your form you should have a submit button. On the submit action you will add the alter commands. Like I said earlier it has been ages since I have even looked at Access but you should be able to... |
Forum: MS Access and FileMaker Pro Jul 15th, 2009 |
| Replies: 15 Views: 753 If that is the case you will have to use the alter command.
This is the syntax for addding a column in Access.
ALTER TABLE table {ADD {COLUMN field type[(size)] [NOT NULL] [CONSTRAINT index] }... |
Forum: MS Access and FileMaker Pro Jul 15th, 2009 |
| Replies: 15 Views: 753 you need to explain what you are trying to do a little clearer.
If you actually mean you want to give the user alter control in your database to add their own fields to your tables this is very... |
Forum: MS Access and FileMaker Pro Apr 28th, 2009 |
| Replies: 4 Views: 732 I have never used filemaker but it is a relational db so their is most likely either a sql window or graphic sql designer like in acccess.
If there isn't you will have to find out how to join... |
Forum: MS Access and FileMaker Pro Apr 28th, 2009 |
| Replies: 4 Views: 732 You should have a seperate table which holds your costs and is referenced to the item table.
Items
--------
id ... |