Search results

  1. R

    Using dblClick to Move data between List Boxes

    cant you have an event that runs when the user double clicks ona list in the first box. it would then copy data across to whatever table the second listbox is representing and then requery it.
  2. R

    saving data

    if its bound and the fields are bound to table fields then it should save to the table automatically
  3. R

    saving data

    run a query?
  4. R

    Help with error 3021

    also try increashing the refresh of acces. think its set at something silly like a minute but u can reduce it to less so it updates the form sooner.
  5. R

    Accessing data from other forms

    lol acces sux. 1 letter and u resort to hair tearing
  6. R

    Auto Updating Total Order Cost After Quantity is changed

    thats very messy Dim a, b, c, d as double a = Me.[Quantity_Ordered] b = Me.[Price] c = Me.[Discount] d = ((a*b) - (b*c)) Me.[Line_Item_Cost] = d tidier. not sure where the problem is though...can you post the database to look at?
  7. R

    Accessing data from other forms

    does the code not work? or sint that what your after? sorry but i dont understand what your after
  8. R

    Update all records with today's date

    use =Now() ?
  9. R

    Select all items ina listbox

    its ok figured it out thanks
  10. R

    Select all items ina listbox

    Does anyone know if its possible to select all items (that is turn all items black) in a listbox? thanks
  11. R

    Access Recovery and Repair

    why not just make regular backups of your database? common practice
  12. R

    Help with search box

    try using an input box instead. on the click event open the input box as parameter entry then open a recordest based on those criteria. Then check to see whether the recordset is empty. oif it is the invoiceID doesnt exist. Dim tempInteger As integer Dim rst As recordset Dim str As string...
  13. R

    Opening a form and setting values?

    noone ever does :)
  14. R

    Data Access Page dropdown list blank?

    do you have user levels that prevent normal users from viewing?
  15. R

    Open form in min view

    change the other forms property to popup
  16. R

    Selecting a value from an unbound combo box in Access 2000

    silly question but have you bound the column of the combo box? bound column =?
  17. R

    Urgent help with Cascading Combo

    you need a checkform function i think. This will be called on a save button etc to make sure all necessary fields are filled in. ok the function should look something like this Private Function Checkform() Dim strErrorMessage As String If IsNull(Me.whatever)=True 'can also use =0 =""...
  18. R

    Getting rid of the "do you want to append" message

    doCmd.setwarnings(False) query here doCmd.setwanrings(True)
  19. R

    visible option on 2nd record linked to first record

    would if me.combobox.itemdata(1) = true Me.mytxtbox.visible=true end else Me.mytxtbox.visible=false end if make a difference?
  20. R

    copying previous data (cloning)

    you didnt explain that very well
Back
Top Bottom