Search results

  1. D

    ODBC link

    Hi, can't seem to find understandable info so here asking for help.I have made an access .mdb dbase, split it to front and back end, so now I want to putthe backend on the webserver.I have set up an ODBC connection with an access driver, DSN=GTSL and loaded the dbase back end to...
  2. D

    basic server naming problem

    Hi, need a bit of help, I have our dbase working on our LAN, but until all the glitches are ironed out I dont want to finalise it, but I want the ability to work on it from home. Our webserver is Apache/linux. Can I put the back end tables in a folder on the server, and set up an automatic fTP...
  3. D

    disable a checkbox after update

    I have 1 checkbox control named CX, the form is Amend Res, the checkbox is set to return -1 if true. the code for the cancellation message is thus =IIf([CX]<0,"CANX") which works but is a contol for a textbox...by the way thx for your input 1.35 am here
  4. D

    disable a checkbox after update

    the CX refers to othe checkbox control
  5. D

    disable a checkbox after update

    I am still doing something wrong, I have tried a variety of combos again, am getting a runtime error 438 Object doent support this property or method Private Sub Form_Current() If ([CX] < 0) Then Me![CX].Locked = True Else Me![CX].Locked = False End If End Sub thx Dave
  6. D

    disable a checkbox after update

    Hi I have a simple check box that if ticked puts a big red Cancellation text across the record, how do I stop anybody unchecking it on the particular record...probably dead simple, tried loads of combinations but I can't get the right code,thanking you in advance Dave Williams Sunny Lanzarote in...
Back
Top Bottom