Search results

  1. elliot315

    Help with this form

    I really didn't understand that: Then open the immediate window and key in: ?fSerialNumber("c:\") and see what happens.
  2. elliot315

    Help with this form

    I found this code, it is supposed to get the serial number of the HDD I want to create a form that shows me that serial number to create an unlocking code for that installed db. Any help on this will be appreciated.. where do I have to put this code, how to create the form that shows me the...
  3. elliot315

    Two Questions

    Thanks GEMMA..!
  4. elliot315

    Sorting Problem

    I have a subform that displays payments by month, that subform comes from a table. That table has a relationship with another table that has the names of the months and their IDs. Those months are named in Spanish I want to display that subform sorted by the months from January thru December...
  5. elliot315

    Demo DB

    How to create a demo db.. I want to limit the use to 100 records, how do I accomplish this?
  6. elliot315

    Stuck In This

    well I don't think that the people who will use the db know much about computer, so they won't be insisting too much on cracking the db... but at least how to create the entering unlocking number?
  7. elliot315

    Stuck In This

    I've been designing a db and entering data in the process. Now I'm almost done with this project and other people are interested in this db. Is there a way to empty all table records? Is there a command to have a blank db? My db has almost 5,000 records :S and each record has another table with...
  8. elliot315

    Two Questions

    could you give the code for that? the user has to enter the the following amounts Balance, Interests, Recharges, Penalties, and TOTAL is the sum of those fields how do I write the code in each field text to recognize the user had enter a wrong amount? and thank you for keeping track of the...
  9. elliot315

    Two Questions

    it will truncate it and store the truncated number?
  10. elliot315

    Two Questions

    that's the problem i don't want to round... I always want the lower amount.
  11. elliot315

    Two Questions

    1. How do I limit the currency decimal places to 2, it allows me to enter more than 2 decimals places and then it rounds to the second place.. I want to not be allowed to enter more than two. Access is showing a number with two decimal places, but its storing the number with more decimals places...
  12. elliot315

    Problem with the setfocus

    I just want to know who installs the db..I know about the MDE file... but that doesn't prevent to use it without my authorization.. I mean.. to ask for a serial number or something like that
  13. elliot315

    Problem with the setfocus

    another thing... I really want to protect my db I read about some security measures.. like writing a text somewhere in the registry and look for that text when the db loads.. I'm a newbie in Access so my coding knowledge in VBA is almost 0.... could you give me some hints to protect my db?
  14. elliot315

    Problem with the setfocus

    thanks... that WORKS!
  15. elliot315

    Problem with the setfocus

    I'm going to try that now... I thought about it (the Get focus), but I didn't thought about the frame... I'll try it now and let you know... THANK YOU
  16. elliot315

    Problem with the setfocus

    Private Sub Option19_GotFocus() Me.txtCriterioRegistro.Visible = True Me.txtCriterioRegistro.SetFocus Me.txtCriterioDueno.Visible = False Me.txtCriterioComercio.Visible = False Me.txtCriterioSS.Visible = False Me.Combo51.Visible = False Me.txtCriterioDueno.Value = Null...
  17. elliot315

    Problem with the setfocus

    I can enter data but I can't click outside the field text.. it doesn't allow me to select anything else
  18. elliot315

    Problem with the setfocus

    the only code behind is the one that make null the text field, to clear any entry done before, and the other is a message box that comes if no entry has been done.
  19. elliot315

    Problem with the setfocus

    so, the setfocus is just for that.. and then?! i just want toput the cursor on the text field, and be able to use the form again without exiting... lets say I select one option by mistake.. if I want to select the correct one.. I'm not allowed to do it, becuase the cursor gets locked there on...
  20. elliot315

    Problem with the setfocus

    I have an option group for a search form I want to select an option and the focus sets automatically to the search criteria field text... I used the setfocus and it does it right BUT it doesn't allow me to select anything else in the form after that... what Im doing wrong?
Back
Top Bottom