Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Beejay57

  1. Beejay57

    Printing labels

    Use the label wizard in the reports design option It will run you through the steps to create a label format for the labels you want to print
  2. Beejay57

    A problem occurred while ms access was communicating

    have you by any chance recently installed or changed your anti virus s/ware i have norton on my machine and i got a similiar problem.To fix it all i had to do was turn script blocking off in the options setting of norton anti virus
  3. Beejay57

    Edit an MDE?

    i use a similiar thing as you with a couple of extra bits thrown in. i use a field in a table to set the date value each time the db is opened.I store the value as alpha numeric in one of the tables that holds similiar data.Unless the user knows about it it makes it that little bit harder for...
  4. Beejay57

    OBF Build SQL String for function

    Not Really strong in sql but i think when building the sql you will need to use something like this strWHERE = strWHERE & "((h.HRID) = " & cboSurnameID & ")" and also when you have finished adding all your "And" then you will need a extra ";)" at the end...
  5. Beejay57

    Ho to reference a textbox in a tab control?

    It should be the same syntax me.TxtName="Steve"
  6. Beejay57

    dlookup data in form not saved in table

    try setting your control source back to the field that you want to store the data and set the controls default value to your dlookup. why do you need to store data that is stored in another table anyway ?
  7. Beejay57

    calculated control help

    Have you preceded you calculation with = eg: =[baserate]*100
  8. Beejay57

    Form - Making visible one lookup table at a time

    You may have more success if you save the form as a report and then print the report.You can then set the reports record source independent of what shows on the form.Usually when you print a form it prints whatever the forms record source is
  9. Beejay57

    How to capture date from the calendar into text box?

    It's amazing how many ways there are to skin a cat (apologies to the veggies)-Your not kidding!!! Thats why these forums are so good,there are so many different ways to do things in access. Anyway heres my last thought for this thread If you use the click event,and have your txt boxes locked,all...
  10. Beejay57

    How to capture date from the calendar into text box?

    use the on click event for the calender.This event is not listed in the controls events,it is only available in the forms code module. When in the code module select the calender from the list on the lhs,then select click from the rhs list
  11. Beejay57

    How to capture date from the calendar into text box?

    use the on click event for the calender.This event is available only in the forms code module me.Yourtxtboxname=me.Yourcalendername.value
  12. Beejay57

    Form - Making visible one lookup table at a time

    You are only hiding controls on a form,not actually filtering the data Are you printing the form?
  13. Beejay57

    Simple Question

    to add 30 records at a time rather defeats the purpose of using an access form for data entry.To add 30 records as you suggest would have to be done on an unbound form with 30 txt boxes and 30 labels etc.What happens if there are 31 records?.Then you would need to use VBA to save the 30...
  14. Beejay57

    Extract data from one table to another

    no,if you want to create a new table you would use the make table query,an append query will only add new records to an existing table. to create a append query i first create a select query with all the fields and criteria that i need Then on the query menu bar you can change the query to an...
  15. Beejay57

    Extract data from one table to another

    Use an append query.You can specify what records you want to append,what table to append to and what criteria is to be used

Part and Inventory Search

Back
Top