Recent content by Dopeyjh

  1. D

    Linked SQL Server Table Missing Columns

    In my view on the SQL Server the datatype for the missing columns is blank... I think i figured out the problem, it boils down to a permission issue. Ive since learned that the data type on the SQL Server is a user defined datatype that i currently do not have access too. All the fields that are...
  2. D

    Linked SQL Server Table Missing Columns

    Hi Pat, Thanks for responding. When I look at the missing columns in SSMS, they all appear to not have a set data type, but a system type of varchar
  3. D

    Linked SQL Server Table Missing Columns

    Hi, Hoping someone can help me out. Within my access database I have a linked table to a SQL Server. I have setup the ODBC connection and the table link works no problem, except is missing random columns. I've also tried other table from the SQL server and they are also missing columns. They...
  4. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    Sorry for the late reply. Thanks so much everyone for your help.
  5. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    First thank you for being patient and trying to help me out..My apologies for all of recent replies :) Also apologies for this only dawning on me now; The chkFileInUse checkbox is not the only control/field that is being impacted. Once the error occurs, the form loads displays all the correct...
  6. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    I've added in the statement for allowedits = true at the begining of the code for the form load event. - no change also updated the executing query to remove "distinct row" - same error. error occurring now 85% of the time. :banghead::banghead::banghead::banghead:
  7. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    The form is defaulted for allowedits = true i only set it to false if someone else is accessing the record. Should i be declaring it in code first in the form load event? I'm using an inner join with 4 tables in query for loading the form;?
  8. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    Right now, without making your original change (unbound,update sql ..) I have open and closed the form 30+ times all different records no error. In 15 minutes from now, I can try to access the form and say 20 out of 30 wont load. I dont believe that its this particular control that its...
  9. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    I have the record scroll turned off, the form loads based off what the user selects from their worklist. (another form) This form (Account Display) is based off a query, using a Select Distinct... query in the record source. (not sure if that helps you or not) Its not all records, only some...
  10. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    I've tried with and without the .value. I removed it and am still getting the error intermittently. the checkbox default is set to false
  11. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    For the moment it appears to be working, haven't been able to make the error occur. Loaded about 30 accounts and no error. However i was also able to do that this morning, and then it crashed. Should I have the section of code loading on a different event? Should I put in a wait command...
  12. D

    Intermitttent - "You can't assign a value..", with a bound checkbox

    Hi, I am intermittently getting a runtime error, "you cant assign a value to this object". I'll start with the section of code; Private Sub Form_Current() On Error GoTo Error_Form_Current_Click Dim initialNotify As Boolean Forms![frmAccountDisplay].Refresh If initialNotify = False Then...
  13. D

    data type mismatch in criteria expression, please help

    Worked like a charm...Thanks soooooooo much!
  14. D

    data type mismatch in criteria expression, please help

    Hi, I've created a combo box that when you click on the list it brings up 3 columns with a number field and then a first and last name field. Note that this data is stored in a different table. When selected/changed, i want the data to input in the current table fields accordingly... So...
  15. D

    Access Query to Accept multiple check box parameters

    What do you do if you have say more then 20 check boxes.....say 50? The Query builder does not allow that many fields
Top Bottom