Search results

  1. M

    Can I detect if a program is posted over network

    More info Just to give you some more info... the BE may be on a network.
  2. M

    Can I detect if a program is posted over network

    I am about to start selling my new application to several municipalities, and it will be sold on a per computer basis. To activate their software they will need to obtain a product key which i will give them based on their hard drive ID number. The problem i have is that if they post the...
  3. M

    Password user level hack? Anyone try this?

    http://www.everythingaccess.com/AccessPasswordRetrievalPro.htm I tried out the free version and it works great. I was actually supprised at how quick and easy it was to find the password to my BE database. I'm gonna have to think twice about how I am securing the data. Has anyone bought...
  4. M

    Product Registration

    Nevermind Nevermind, i made my own registration program Check it out at http://www.access-programmers.co.uk/forums/showthread.php?t=84642
  5. M

    Product Registration

    Ok, this sight goes through the code using vb to create a registry key that will unlock the program when it is registered. That way it can not be moved from one computer to another without becoming a unregestered version. Can anyone get this to work...
  6. M

    Post your DB w/Reports

    Please..............
  7. M

    Post your DB w/Reports

    Just wanted to see how everyone elses reports are looking. So post a sample db or a screenshot.
  8. M

    Input Mask For Mobile Nos

    nos, isn't the stuff you put in the car to make it go really fast?... mobile nos?.. isn't it all mobile?
  9. M

    is it possible to create another dataase through using VBA?

    Nevermindd nevermind, i found it... incase anyone else wanted to know, here it is using a DAO 3.6 Reference Dim Db As Database Set Db = OpenDatabase(CurrentProject.Path & "Data.MDB", True, False) Db.NewPassword "", "12345" Db.Close
  10. M

    Set another databases password using code?

    nevermind nevermind, i found it... incase anyone else wanted to know, here it is using a DAO 3.6 Reference Dim Db As Database Set Db = OpenDatabase(CurrentProject.Path & "Data.MDB", True, False) Db.NewPassword "", "12345" Db.Close
  11. M

    Set another databases password using code?

    Ok, i have just created a new database for storing my data... that is if it doesn't already exist, using the createdatabase method. Now i would like to set that database password to "12345". Is therw a way i can do that automatically or using code with out actually going to that database and...
  12. M

    is it possible to create another dataase through using VBA?

    Thanks Wow, thanks MStef! That was exactally what i needed! Is there a way to modify that code to make the newley created database have a password?
  13. M

    Rounding to the nearest .5

    "Damned ingenious, Lagbolt. " I agree!
  14. M

    is it possible to create another dataase through using VBA?

    is there a way to create a database using vb saying something like this create a new database called "DataFile" and copy table1, table2, table3, and table4 from the current database file to the database called "DataFile" part of my splashscreen checks for the database, if it isn't in the same...
  15. M

    Listbox Formating, See Attachement

    Nope, that only makes 25.50 show up as $25.5, and it still makes 10.00 appear as $10
  16. M

    Data entry question: sign reversal

    What if you try on lost focus?, that way as soon as you move off of it it will change it to a positive. This is what i did when i wanted someone to put in a positive number regardless of weather it was a return or a sale, i changed it to positive, and creted a popup asking if it was a return...
  17. M

    Listbox Formating, See Attachement

    that doesn't help much That works for that table, but i have my data stored in another file, i am also using the me.listbox.additem (rs!something & ":" & rs!something2 & ":" & rs!something3) top populate the listbox. i could maybe set rs!something2 as a currency variable and insert it using...
  18. M

    Listbox Formating, See Attachement

    Ok, still some visual work to do on this screen, but what i want to do is format the 2nd and 3rd colum as currency. As you can see in the attachement it currentley doesn't show cents. Any help or suggestions how i can correct this would be appreciated.
  19. M

    How to get beginning and ending dates of current month

    I know i have read this before, and i have been searching for a hour now. can someone tell me how set a variable = the beginning date ofthe month and another variable2 = the ending date of the month? Thanks for your help!
  20. M

    Is this leagal?

    No... what i mean... No, what i mean is i could incorporate the newley purchased source code, Which i have a an unlimited royalty free license, into a application, lets say an application to keep track of names... or something. They, the rest of the group would get the application i created...
Back
Top Bottom