Search results

  1. T

    RecordSet Edit Memo Field, getting error Could Not update

    Hello, I have a form that allows me to add or edit data to a table. In that table I have a Memo field called 'fld_Tech_Intr'. When I first create the record I'm able to add 2,000 plus characters to that memo field 'fld_Tech_Instr'. When I try to update that field by using a RecordSet I...
  2. T

    Front-End User and Group Permissions not updating

    I recently created a new database and new workgroup file in Access 2003. I took all my old tables, queues, forms, etc from my old Access 2003 and merged into this new database for a fresh start. I went through all my DB objects and assigned permissions for them using the 'User and Group...
  3. T

    Error 3251 'Object or provider is not capable..."

    I have a form that pops up for new database users so they can setup a new password. (I setup the user's name in the built-in security tools in Access.) In that form I have code to set the password from "" to the new one they set on the form. See the code that sets the password... Private Sub...
  4. T

    Error "The Value you entered isn't Valid for this Field"

    Form Description: Case "Price" strSQLSelect = "SELECT DISTINCT tbl_Contracts.fld_Price " strSQLFrom = "FROM tbl_Contracts " Each of the 3 filters has three specific controls to set a particular filter. The Filter Field, the Filter Type, and the Filter Value. Controls...
  5. T

    Error: There are no registered wizards of this type...

    In Microsoft Access 2000 I'm getting the following error message when I click on visual basic Event Procedure for the first time. "There are no registered wizards of this type." "Rerun Microsoft Access or Microsoft Office Setup to reinstall the wizards. If you want to preserve your security or...
  6. T

    VBA and SQL for comboBox RowSource

    I'm trying to run code on the VBA Enter Event of a comboxBox that will select a specific RowSource based on another control information. Here is a portion of my code: Me.temp_fld_DLCI.RowSourceType = "Table/Query" Me.temp_fld_DLCI.RowSource = "" Me.temp_fld_DLCI.RowSource = "SELECT DISTINCT...
  7. T

    Reference subform name from popup

    Hello all, I'm trying to reference the name of my subform or form off of my popup. I'm doing this because I want to use it as a referencing point to requery the subform after I add my record on the popup form. Forms![fpop_Location_Active_Circuits_Lines]![fsub_Active_Circuits_Lines].requery I...
Back
Top Bottom