Results 1 to 5 of 5

Thread: Access DB for multi-user hosted on server VS. PHP/MySQL

  1. #1

    Thread Starter
    Fanatic Member jcavard's Avatar
    Join Date
    Jul 2005
    Location
    Quebec, CANADA
    Posts
    534

    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!
    ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

    accoustic emo-rock band: a tailormade fable

    Visual Studio 2003 / Framework 1.1

  2. #2

    Thread Starter
    Fanatic Member jcavard's Avatar
    Join Date
    Jul 2005
    Location
    Quebec, CANADA
    Posts
    534

    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?
    ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

    accoustic emo-rock band: a tailormade fable

    Visual Studio 2003 / Framework 1.1

  3. #3
    Frenzied Member DKenny's Avatar
    Join Date
    Sep 2005
    Location
    on the good ship oblivion..
    Posts
    1,171

    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:
    1. Private Sub TextBox1_Change()
    2.     With Me.TextBox1
    3.         If Len(.Value) > 300 Then
    4.             .BackColor = RGB(255, 0, 0)
    5.         End If
    6.     End With
    7. End Sub
    Declan

    Don't forget to mark your Thread as resolved.
    Take a moment to rate posts that you think are helpful

  4. #4

    Thread Starter
    Fanatic Member jcavard's Avatar
    Join Date
    Jul 2005
    Location
    Quebec, CANADA
    Posts
    534

    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...
    ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

    accoustic emo-rock band: a tailormade fable

    Visual Studio 2003 / Framework 1.1

  5. #5
    Frenzied Member DKenny's Avatar
    Join Date
    Sep 2005
    Location
    on the good ship oblivion..
    Posts
    1,171

    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
  •  



Click Here to Expand Forum to Full Width