Recent content by notrino

  1. N

    About Picture Compare

    Hello, I attached my sample. You will see, in the form 2pcs. picture area with OLE. When I push the button, If this pictures are the same pictures, text area must be show 1, if they are not same pictures, text area must be show 0. Is that possible? Thank you.
  2. N

    About MDE and Split

    Hello, You know, Access file split application is more usefull for databases. My question is; When do we need to split the file? After the MDE convert? Or before the MDE convert? Thanks
  3. N

    About UpperCase

    Hello everybody it solved but I didn't understood this solution :) Create a module; Public Function TumuBuyuk(kelime) kont = Len(kelime) If kont <> 0 Then harf = Mid(kelime, 1, 1) If Asc(harf) = 73 Or Asc(harf) = 253 Then TumuBuyuk = TumuBuyuk & "I"...
  4. N

    About UpperCase

    Hello MajP, Thank you. But this information is above my level. Have you got any Access sample file for this solution? I'm very basic user, so I'm searching basic solution. Why is it diffucult, I don't understand.:banghead: "i" must be "İ" "ı" must be "I" "İ" must be "İ" "I" must be "I" that's...
  5. N

    About UpperCase

    Hi London, Yes I tried all of them.It didn't work. When I defined i to İ converting, the system automatic convert all "I" letters to "İ" letters.
  6. N

    About UpperCase

    Hello isladogs & CJ_London isladogs, I used Replace function, you can see at the attaced. But it didn't work. CJ_London, > function is convert the smal letters to big letters, but in the table, always small letters are recording. For example, enter te "a" from Form, in this situation Form is...
  7. N

    About UpperCase

    Hello I want to use UCase function for this letters; ı-I ; i-İ and I want to see this letters like this; ı --> I I --> I i --> İ İ --> İ But I didn't do it. It is working always like this; ı --> I I --> İ i --> İ İ --> İ Could you help me? I attached my sample..Thanks.
  8. N

    About Password Alert

    Hello, I want to encrypt my database.When I enter the password and verification, I get an alert: "The encryption with block password is not compatible with row-level locking." What does it mean? Is this a mistake from me? If yes, how can I fix? Thanks.
  9. N

    About Table Security

    Hello, Yes, I know that methodes (access window hiding, navigation pane hiding, shift blocking etc..) But all of them can be solve easily. So user can be get in to the table again.I'm asking like this security; When I convert the access file to the accde, keep the table/query contents like...
  10. N

    About Table Security

    Hello thank you, Yes, I did all adjustments from "Form" side. (allow edits=no, delete=no etc..) But this does not prevent access to the table. Please look at the picture. You can see the "table icon with arrow" The user can be get in to this table and he can change or delete the records from...
  11. N

    About Table Security

    Hello, I want to ask a question for "mde" or "accde" file "table" security. You know, when we convert to Access database to accde, form, report,VBA codes are protected against user-induced negativity. They can't delete, change, etc. At the same time in the accde file, table protected too...
  12. N

    Data Write to Second Subform

    Thank you.
  13. N

    Data Write to Second Subform

    Hello, I attached my application, I want to wirte "5" to textbox from click button event. But I couldn't sort the code. Thanks.
  14. N

    Double Criteria for Open Form

    Of course I'm volunteering. I don't know VBA very well. I am aware that the situation is different, especially in Access applications.
  15. N

    Double Criteria for Open Form

    Hello Gizmo, Thank you. I created myself solution for this application. If I write this codes for "buton click event" the program running like yours. DoCmd.OpenForm "F1", acNormal, , "[ID1]=" & Me.ID1 DoCmd.GoToControl "alt1" DoCmd.FindRecord Me.ID3
Top Bottom