Search results

  1. P

    Determine decimal separator

    As I found nowadays, there exists a simple function in Excel VBA for determining Date Separator, Decimal Separator, etc: application.International(xldateseparator)application.International(xldecimalseparator)Wish a good day to all
  2. P

    Determine decimal separator

    Nowadays, I came across similar problem and solved the situation with the following function: Public Function OnluqYoxla(Yoxlanilan As String) As Variant '// Ibrahim NOHBALAYEV terefinden tertib olunub. '// Bu funksiya [1.75 ve ya 98,73] kimi kesr ededlerin onluq ayiraci simvolunu yoxlayir '//...
  3. P

    New to VBA, pls, how can I make a function?

    Thanx for ur advices. I've used that function and everything worked. About the ASCII, I know, but I'm not using the values that I have given in the forum for letters. They are quite different in my code. Let it be my little secret. Thanks again. Good luck...
  4. P

    New to VBA, pls, how can I make a function?

    Need to change into the function the repeated block in the code below: ______________________________________________________________ Private Sub Form_Open(Cancel As Integer) Dim t As String, i As Integer, f, r As Double Dim fs, d, k1 Set fs = CreateObject("Scripting.FileSystemObject") Set...
  5. P

    How could I make a cd-key asking form?

    AtomicShrimp, You are quite right, but I don't need to sell it forever and that program is designed for limited group of people in my town only (and my town is not so big). Hence, I will sell each copy for one pc only, for the 2nd - additional pay, and so on. So, I will myself keep track of...
  6. P

    How could I make a cd-key asking form?

    NigelShaw, thanks a lot for your reply. But I don't want to check the registry as my program is not so rare thing. I want only put some trouble in front of those who will simply copy my program to other pc-s. Hence I made a simple amateur code below: Private Sub Form_Open(Cancel As Integer)...
  7. P

    ANYONE HELP... I'm not able to make an .accde from .accdb

    Thanks a lot. Hope you all the good things in your way! Thanks again. P.S. I've sent you a private message. Please reply me as soon as it is possible for you.
  8. P

    ANYONE HELP... I'm not able to make an .accde from .accdb

    in the code below it gives me "End If without block If" error while there are no "end if"s Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) If Button = 2 Then Do On Error GoTo Command1_MouseDown_Err DoCmd.OpenForm...
  9. P

    ANYONE HELP... I'm not able to make an .accde from .accdb

    Anyone who can help! I've made a program for making sales and so on, and now when it's ready, when I try to make an accde file (Access 2007 executable) it replies that I cannot make that because it can make only "2048 TableID"s at the same time. What that means and what I have to do? I have...
  10. P

    How could I make a cd-key asking form?

    I have already made that code, I need some advise in that way to find out the easier way...
  11. P

    How could I make a cd-key asking form?

    I've made a simple program in access that helps making sales, incomes, cash registry and so on. But I need to add so-named CD-KEY to use the program depending on individual machine ID or anything else that is individual on every PC to not allow others to copy my program without permission. Want...
Back
Top Bottom