Recent content by Batocanin

  1. B

    Sert Value from Subform to Subform

    No I take ID as example, SubF1.A1 has a number which schuld be copied in SubF2.AA1 Tables from this two subforms are not related.
  2. B

    Sert Value from Subform to Subform

    in Form "Main" there are two subforms "SubF1" and "SubF2" How to set velue from "SubF1.ID" to "SubF2.ID"
  3. B

    Solved How to transfer string in character

    Thank you Gasman Mid function with a loop did it perfect. Thanks once again.
  4. B

    Solved How to transfer string in character

    Is there any way to do this imput 123.45 result '1','2','3','.','4','5'
  5. B

    Problem with Set a = fs.CreateTextFile

    Yes, it must be something with administrator rights. There is a problem with disk C: or D: but if I try to create a file on any other disk E: or F: it works.
  6. B

    Problem with Set a = fs.CreateTextFile

    Run-time error '70': Permission denied
  7. B

    Problem with Set a = fs.CreateTextFile

    Way this code dont work in accesds 2016 Private Sub C71_Click() Set fs = CreateObject("Scripting.FileSystemObject") Set a = fs.CreateTextFile("c:\testfile.txt", True) a.WriteLine ("This is a test.") a.Close End Sub
Top Bottom