Search results

  1. H

    searching for sub items

    how can i join the tables ? can you provide an example
  2. H

    searching for sub items

    hi if i had 2 tables (below) how can i do a search for the staff and there sub-task? all in one table? table 1 staff---- job 1 -------cleaning 2 -------washing 3 -------fixing table 2 job---------------task (subtask) cleaning ---------bathroom cleaning ---------bedroom washing...
  3. H

    how can i disable the ability to editing vb and forms

    awesome! that takes care of the VB but im still able to view/edit the forms, tables, querys etc is there additional settings i can change?
  4. H

    how can i disable the ability to editing vb and forms

    is there an easy way? rather than distribute an MDE to users.
  5. H

    insert entry into database

    how can that be done? do you have an example of useing that method? i have tryed a = "insert id ...." a.requery but thats me guessing!
  6. H

    insert entry into database

    Hi there, how can i manually insert data from a text box into a table using vb? i assume it involes the "insert" command?
  7. H

    Disabling record selector in a form

    thank you much!
  8. H

    Disabling record selector in a form

    How can i Disable a forms ability to select previous records in a "add new record" form? thanks
  9. H

    disabling access to form design

    how can i disable access to the form design and visualbasic code so only authorised persons can make changes to the code?
  10. H

    merging text into a textbox

    how can i use two control sources from a table and place them into a single textbox?
  11. H

    Acending ordering

    when i perform a query and atribute a ascend ordering for a date feild, the blank feilds always show up on the top of the list, but the rest of the feilds are what i need. how can i keep the blank feilds at the bottom, whilst keeping the same ordering of the non blank feilds?
  12. H

    access a database with multiple users

    how can i change a database to allow multiple access? is there a downside to doing this? eg. if two or more people are trying edit the same feild???
  13. H

    textbox with scroll bars

    that absolutly right, but when i go to edit a record that has more text that it carnt display it dosent show the scroll bar until i click on the feild, so i want it to show it all the time , if its needed
  14. H

    textbox with scroll bars

    how can i make a text box (with multiple lines) display a permant scroll bar on the right hand side?
  15. H

    Shared and exclusive databases

    I was just wondering what the drawbacks for using Shared and exclusive databases. id like to create a shared database but has anyone come across any problems? what happens when 2 people at the same time access the same row and save at the same time? is the first persons work get overwritten?
  16. H

    writing a string into a SQL query

    i have a string in VB (eg. "test")that will cahnge depending on the input, ihow can i search for the string and display the data into a form? i currently have this "SELECT [Tasks].Staff_Name, [Tasks].Project_Title, [Tasks].Percentage_Complete, [Tasks].Tracking_Number FROM [Tasks] WHERE...
  17. H

    qery a strng

    i have a vb string. how can use that to make a query and spit all the data onto a form like it does if u were to perform a wizard
  18. H

    sending vb to a QUERY

    i have a string in vb from one form, and i like to pass that to another form so that ID="123" in form 1 is that same in form 2 (ID=123) and then how can i use that to do an sql query to search for ID? and spit all hte data into text feilds? thanks!
  19. H

    passing a variable from one form to another

    how can i pass a variable from one form to another this works fine Tracking_Number = Forms("Main").Control("mytext") but if "mytext" was in vb (rather than from a text box as shown above) how can i do this
  20. H

    SQL statement dosent work with dates

    is it nesseary to have #4/5/2008# the "#"?
Back
Top Bottom