Search results

  1. M

    Access and the intranet

    Ah. I got ya. Really no way around it. Whoeve is using it will need access to it. Why don' t you set up a group of users for that database. It's what I do also.
  2. M

    Access and the intranet

    Try using ODBC and create a DSN for the database. It's what I use when I code the frontend in C++
  3. M

    break access password

    OMG is this person for real? LOL.......Ah crap I just pissed myself.:D
  4. M

    Updating several records at once

    madmaxx2k3@yahoo.ca
  5. M

    Updating several records at once

    rs.Fields("Check14") = CheckBox.Value is Check14 the field name in the database or the name of a check box. It mus be the field name in the table.
  6. M

    Updating several records at once

    Should have brackets at the end of your set statement. Set db = CurrentDB() Like that
  7. M

    Updating several records at once

    heh. Sorry for misleading you with the ;. I was programming in C++ when I posted it.
  8. M

    Updating several records at once

    In the OnClick of the check box use: Dim db As Database Dim rs as RecordSet Dim rCount as Integer Dim cnt as Integer rCount = 0 Set db = CurrentDB(); Set rs = db.OpenRecordSet("Table") rs.MoveLast rCount = rs.RecordCount rs.MoveFirst Do Until rs.EOF rs.Fields("Checkboxfield") =...
  9. M

    Combo Box Values

    That's why I used the OnChange event. I want it to keep adding to the text box.
  10. M

    Combo Box Values

    Thanks Rich but I got it working with the OnChange event.
  11. M

    Combo Box Values

    Hey all, Got a little problem. I have a combo box which has a list of values from a table. When a user selects a value it gets added to a text box. Now the problem I am having is when the user first opens the form and selects a value it doesn't get added to the text box. But if they select...
  12. M

    Demo Database

    That's the one. Thanks
  13. M

    Demo Database

    Anyone have the link for the ActiveX controls demo database from Microsoft. I can't find it anywhere. Thanks.
  14. M

    Office XP or wait for Office 2003

    If you have the cash get Developer Edition. Doesn't really matter to me. The company I work for is pretty current with software so there is allways the "latest and greatest" here.
  15. M

    Why isnt there a cert for Access Developers?

    True. Never thought about the Developer edition. But still it would make sense to code a end user app in VB or C++. The job market demands more C++ or VB programmers than VBA programmers I find
  16. M

    Why isnt there a cert for Access Developers?

    Because it's not really mainstream. Sure it's good for little internal applications but for distribution purposes your better off to develop the application in VB or C++ and use Access as a backend database. It also saves the customer from having to purchase access to run your app.
  17. M

    Network paths

    I use a UNC in on of my database apps. I used: Public Const Images_Path As String = "\\mts004\common\databases\Mold_Repair\Photos\" and placed in a module. Works for me.
  18. M

    How to hide printing (splash) window

    Why would you? It's best to let the user know that it is printing the report rather then making them guess.
  19. M

    On first logon attempt can't type password

    Tell them to piss off and deal with it.:D Just kidding. Not to sure why that is happening. Never played much with user groups. I just make my own logon screens.
  20. M

    A few minutes of your time please.

    Not bad site design. On DataAccess.php you might want to check your punctuation:D
Back
Top Bottom