|
-
Mar 30th, 2006, 10:27 AM
#1
Thread Starter
Fanatic Member
Access DB for multi-user hosted on server VS. PHP/MySQL
Hi! I have to design a database that will be hosted on an in-house server, where 3-6 user will be simultaneously updating. I would like to know if it can be done with Ms Access or if I'm better off with PHP MySQL... thank you!
-
Mar 30th, 2006, 11:03 AM
#2
Thread Starter
Fanatic Member
Re: Access DB for multi-user hosted on server VS. PHP/MySQL
Also, using VBA is it possible to change the color of the text in a textbox once it has exceeded 300 caracters?
-
Mar 30th, 2006, 11:17 AM
#3
Re: Access DB for multi-user hosted on server VS. PHP/MySQL
Q1.
Yes it can be done with Access, but you are still better off with MySQL, its more reliable and scalable.
Q2.
VB Code:
Private Sub TextBox1_Change()
With Me.TextBox1
If Len(.Value) > 300 Then
.BackColor = RGB(255, 0, 0)
End If
End With
End Sub
Declan
Don't forget to mark your Thread as resolved.
Take a moment to rate posts that you think are helpful 
-
Mar 30th, 2006, 11:25 AM
#4
Thread Starter
Fanatic Member
Re: Access DB for multi-user hosted on server VS. PHP/MySQL
Thanks D!
One last thing, can I change the color of only 300+ caracter??? like the 300 first would be black and change to red for the one after 300...
-
Mar 30th, 2006, 11:28 AM
#5
Re: Access DB for multi-user hosted on server VS. PHP/MySQL
Its all or nothing I'm afraid. No way to format part of a textbox.
Declan
Don't forget to mark your Thread as resolved.
Take a moment to rate posts that you think are helpful 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|