Recent content by davides

  1. D

    Insert lines in notepad

    namliam ... it work your method but it put a character like this " ... at first line and the end line ... how can I remove this simbol? now I have in txt file somethink like this: "text1 text2 text3 endtxt" Regards !
  2. D

    Insert lines in notepad

    very smart ... I`m new in vba ... Understand me please
  3. D

    Insert lines in notepad

    GalaxiomAtHome, what do you mean with TextStreamObject ?
  4. D

    Insert lines in notepad

    @namliam ... in Access Help I don`t see any vbNewLine ... I`m using access 2003 ! I have to use that Notepad ... I can`t put in a report or another object!
  5. D

    Insert lines in notepad

    Hi there ! I want to insert some lines in a txt file(notepad) using vba code. Somethink like: line1 bla bla bla line2 bla bla bla line3 bla bla bla line4 bla bla bla .... and I don`t know the code for inserting a text in a new line ! :( ... Anyone can help me, please ! Thanks!
  6. D

    Scan for all open applications ...

    Hello DCrake ... I maded a form in Access to imitate the keyboard, osk.exe from system32.Is not so complex but is ok(I think).So I want to use it in all open aplication wich are open on windows ... I thought that onLoad form I have to scan or listed in a combobox,textbox or listbox all...
  7. D

    Scan for all open applications ...

    I succeed to send key with a function to a new Notepad document ... Function SendKeysToApplication() Dim sKeySend As Variant sKeySend = Shell("Notepad", vbNormalFocus) AppActivate sKeySend SendKeys "a", True End Function called from a onClick_Event it open a...
  8. D

    Scan for all open applications ...

    anyone ? ... any help will be appreciatte ... I now that sendkeys function is the simillar with what I want to do ... but how? :D
  9. D

    Scan for all open applications ...

    Hello there ! I need a code in vba, to scan all Windows Applications wich are open for a touch keyboard .When I start the keyboard form I want that my code to "scan" all application ... Any ideeas how to do this ? Wich function from Vba is more accesible ? I`m working in Access 2003... Thanks in...
  10. D

    VB not run on Data Access Page

    anyone help please? :D
  11. D

    VB not run on Data Access Page

    Hi everyone ... I`m not sure that I`m posting in the corect area ! If it`s that then please a moderator to move the topic in the corect area. My problem sound like this: I made a Data Access Page from a form in my database and when I run it the vba code don`t run . I mean the buttons and the...
Top Bottom