NOW how can i share my database with another user on my office network
note: i copied the database file in (C:\Users\Public\UMIC DATA BASE FILES)
and the computers on the network can see the file but there is small problem : the main table in the database is an excel file and i linked it to the database so when the another user want to open the database from his computer a message appear that can not find the path for the file >
thanks
You Split it and then provide a separate copy of the Front End to each user. The Back End must be located somewhere that all users can connect to with the same path.
HI every one i made a copy from db to the sever everyone can see it but there is a problem that just one user can use the db how can i make it multi user
It would help if you answered the questions as and when they are asked of you.
We do not know what you have working or not.
I would suggest that you have gone too far with this original question and that it would be good if you started a new thread and explained your problem. Just one at a time for each thread.
good morning every body
i need to make a form that contain list box when i choose an item from the list box menu it display all data about this item from it's source table >>> can any one help me !!1
Good Morning Every Body
i need to union two tables but my code not work can any one help me :
my code is :
SELECT U.CUSTOMER_NAME, Sum(U.Quantity_TON) AS SumOfQuantity
FROM (SELECT Customer_Name, Quantity_TON
FROM FELDSPAR
UNION ALL
SELECT Customer_Name, PREVIOUSE_BALANCE
FROM ACCOUNTING_FELDSPAR
) AS U
GROUP BY U.Customer_Name
ORDER BY U.Customer_Name;