Search results

  1. M

    Is this leagal?

    Ok, so i am looking at purchasing this program to use the source code to icorporate into my program. The software is approximitily 450.00 for what they call 'unlimited royalty free distribution' and goes on to talk about being to incorporate the code into any application i develop for inside or...
  2. M

    How much experience do you have with access?

    Just wondered how much experience eveyone has had with access.
  3. M

    Good sights for command buttons and other images

    kind of intresting program, anyone else
  4. M

    Can't make MDE File

    Awsome Awsome, that worked great! Thanks.
  5. M

    Can't make MDE File

    Why would my 'make mde file' button not be enabled? Any suggestions?
  6. M

    Good sights for command buttons and other images

    Just looking for any good places to find unique command buttons i could use in my application.
  7. M

    how can i get this total

    Is there a way to pull a total number out of a table using a query. My db has recent tax assessments broken down by class, the problem is it is all together and i don't need each class i only need the total. How can I say: For table "2004Assessment" Give me the...
  8. M

    Force size of popup

    Is there a way to force the size of a popup form? I want it to be around 3.5" by 4" because every time it popus up it is only around 2" by 1" and i have to resize it to look right.
  9. M

    Call command on a diferent form

    What code would i use to say: on click goto the form "datalookup" (which is already open) and run command "cmdupdate_click" (which is a private sub on that form). do i have to change it to a public sub? or can i just run it? what code would i use?
  10. M

    listbox question

    Me.datalookup.Column(2, Me.datalookup.ListIndex + 1) this selects the 3rd colum in the row i select
  11. M

    listbox question

    found an answer to my own question, jus thought i should post it in case anyone else wanted to know, i had to use the listindex function of the listbox to find out which row was hightlighted, then i can use the code Private Sub lstMyList_AfterUpdate() Me.Recordset.FindFirst "[<fieldName>] =...
  12. M

    Supress messages when running a buildtable querie

    Is there a way to supress the messages when running a buildtable querie? I have a button that allows me to update the table, i have like 6 maketable queries i am running, but i get close to 20 messages i have to click "OK"...."Yes".... "Yes".... "OK".... "Yes".... Yes..... and so on. Any help...
  13. M

    listbox question

    Well the probelem is that i don't know what row exactally the user may be clicking on. I am using it as a search. The row becomes highlited when clicked once. Is there a way to say "The highlighted row"
  14. M

    buttons

    right click on the button in design view, goto properties, select the event tab, go to on click... it should already say "Event Procedure", click the ... to the right of the row. That will take you into the vba editor. If you used the wizard to make this button you will see Private Sub...
  15. M

    listbox question

    "go to the row i have clicked on " i mean, in a listbox there may be 4 or 5 rows, if i click on row 4, i want to get the data out of colum 4 or 5 of that row, not the top row. Is that possible?
  16. M

    listbox question

    Is there a way i can say: onclick go to the row i have clicked on in a listbox (whcih may be the top row, or any other row) and put the 3rd colum in that row into a variable
  17. M

    listbox question

    Is there a way i can say: onclick go to the row i have clicked on(whcih may be the top row, or any other row) and put the 3rd colum in that row into a variable
  18. M

    buttons

    can't you just say on the button click me.visible = false and it will hide the form, it will still be open just hidden I would recomend just a docmd.close first thing when you click the button and use your existing code to open the form you want
  19. M

    noob ? - how to create unbound subform?

    How do i create an unbound subform on an unbound form? I want to bring data in from another table/query if the data exists. I am pullind residential property data, if there are recent sales i would like to pull that too. I know this is a pretty broad question, but any help would be...
  20. M

    Creating an index using code? Any other way besides on the table?

    I am pullling data from a query using an unbound form and a query that that uses linked tables. I can not edit the index of the tables, so is there a way i can create a new index for sorting data in a form?
Back
Top Bottom