Search results

  1. seanog2001

    Forms

    I have a form that performs a task and i was wondering can i make this form into an executable to have on my desktop or is this possible
  2. seanog2001

    Search

    Cheers mate
  3. seanog2001

    Search

    hw would i go about that mate not too fimilar with that?
  4. seanog2001

    Search

    Hi all, i have a form with a text box and a command buuton, i want to be able to enter a number in the text box and click the command button this will then search a table for this number and bring up all the information in the table related to this number whether it be on the current form or in...
  5. seanog2001

    ListBox Clear...

    Im in the process of doing the same thing, how are you adding the items to the list box via command buttons. Are you moving it from one list box to another or how are you doin it?
  6. seanog2001

    Help with list boxes

    I a list of data in a list box and i want to be able to choose diiferent pieces from the list. How can i ref an individual record in the list box do you use ME.Listboxname.value something like that im lookin to move pieces of data from one list box to another for printing i can move all the...
  7. seanog2001

    List Boxes

    Im tryin to move data from one list box to another ive seen some sample datebases and how they use command buttons to move the data back and forth from the list boxes (usually have <, >, <<, >> on the command buttons) Does anyone know how i do this?
  8. seanog2001

    Question about Year

    I have a report which has details of the projects. I have them sorted by the year they were done and i was wondering can you the different years on seperate pages eg say 2004 had 4 projects that be on pg1 2005 had 20 projects that be on pg2 and 3 2006 had 80 projects be on pg4,5,6,,7etc is...
  9. seanog2001

    Use of < and >

    How do you use the < and > buttons when used as command buttons to transfer data bewtween two list boxes what code do i need behind these buttons?
  10. seanog2001

    Choosing values from a list box

    This returns an error too few parameters expected. on thisline of code Set rs = db.OpenRecordset("SELECT Selected FROM projectlist WHERE ID=" & Me.List4)
  11. seanog2001

    Choosing values from a list box

    what sort of code do i need to use behind the command buttons?
  12. seanog2001

    Choosing values from a list box

    I have a list box box which contains a ProNo and ProName. I want to be able to select a value one list box and pass it to another list box in the form. I want to be able to do this using command buttons eg the cmdbuttons you see on some access applicatuions that have the arrows < and > to move...
  13. seanog2001

    Choosing values from a list box

    I have a list box box which contains a ProNo and ProName. I want to be able to select a value in the list box and pass it to another list box in the form so i can pick the projects i want to print reports on. Is this possible or is there another way of going about this problem.
  14. seanog2001

    Updating database

    how do i link to the database on the server
  15. seanog2001

    Updating database

    I have a database on the a drive on my computer. I also have the same database on another drive which is on a network visible to people on the network. I wanted to know is there a way to link the two datbases so when i make the changes on the database on my computer it will update the...
  16. seanog2001

    Filling data from a list box to a text box

    Cheers Man thanks for that!:D :D
  17. seanog2001

    Filling data from a list box to a text box

    Ive a list box on a form which contains a persons name address and number. when i click on a persons name i want to be able to fill their details into a coresponding text box ie Click on john smith athlone westmeath 5555555 and it fills text boxes firstname lastname address1 address2 number...
  18. seanog2001

    VB Code

    thing about that is thereis no literal value the user must chose a name to put into the text box so how do i solve this the name will refer to a name stored in a table
  19. seanog2001

    VB Code

    does anyone know the piece of code you need to makea value equal to a value in a text box of a form eg if value = "value in textbox" then xxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxx End if im sure its something simple like &txtbox1& just cant get it to work
  20. seanog2001

    Getting values from text boxes

    here is what i need to do If comboboxSupervisor = "whatever the user picks" and comboboxMonths = "whatever month user picks" then we look up a query which finds the supervisor and the month and returns the relevant info from the table. End if
Back
Top Bottom