Search results

  1. L

    Solved Read Text File Into Table Issue

    @Cotswold My excuse me, I had added the wrong database. Gr. L
  2. L

    Solved Read Text File Into Table Issue

    In the base, use the Line Input Import Text button Gr. L
  3. L

    Parameters on RunCommand acCmdPaste

    If a + is always used as a separator and the order is always the same, then you could possibly use the Split function. Private Sub enjoy_DblClick(Cancel As Integer) Dim res() As String res = Split(enjoy, "+") MsgBox res(1) & "-" & res(3) & "-" & res(2) & "-" & Left$(res(4), 7) End Sub Gr. Lampje
  4. L

    Solved Case Is "^"

    Gasman, That's right, that's not necessary either, thanks for the advice. Gr. Lampje
  5. L

    Solved Case Is "^"

    Arnelgp, Thanks for the response, but that didn't help me any further. After a long search on the internet, I came across the following solution: Option Compare Database Option Explicit Private Declare PtrSafe Function ActivateKeyboardLayout Lib "user32.dll" (ByVal mylanguage As Long, flag...
  6. L

    Solved Case Is "^"

    Create a calculator that works by not clicking buttons but by entering in a text field. This will go well until you type a ^. Gr. Lampje
  7. L

    Solved Case Is "^"

    Thank you for the response, in a text field numbers and +-*/ are entered, the last character determines how the course of the program continues, the last character is deleted, the rest is in memory. When there are two ^^, the program handling error. Gr. Lampje
  8. L

    Solved Case Is "^"

    Forum, if one is on a Dutch keyboard " or ^ type the program waits for the next entry. This is normal in a Dutch way. With an arithmetic function, this causes problems. Is there a possibility to fix this with some function? Case Is = "^" does not see the program, only when one types a two ^...
  9. L

    Solved How to read a contolname

    Saphirah, thank you very much, this is a nice solution and gives me further options. Greeting.
  10. L

    Solved How to read a contolname

    Saphirah, i may be forgetting something, it won't work for me. Two pairs of eyes see more than 1. Hopefully you can help me further. Greeting.
  11. L

    Solved How to read a contolname

    Saphirah, i really appreciate your attempt to help me. Forgive my english, because i have to use a translation program. What you are offering me is not quite what i mean. Try explaining again. The mouseover as it intended is very important to me. So really look for a way to read S1 in Private...
  12. L

    Solved How to read a contolname

    Saphirah, thank you for the reply. I think this doesn't work for me, because i want to get it right on mouseover. Greeting.
  13. L

    Solved How to read a contolname

    Galaxiom, it represent a place in a small theater. Greeting.
  14. L

    Solved How to read a contolname

    Arnelgp, thank you for the reply, but i don't to hardcode it. Galaxiom, thank you for the reply, i think you understabd what i mean. I have 200 controls on my form. Can you give an example? Greeting.
  15. L

    Solved How to read a contolname

    Dear Forum, is it possible to read out the name of the control by mouseover, via a procedure or something similar. Normally this is possible with for example: Private Sub s1_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single) Dim ht As String ht =...
Back
Top Bottom