Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TammyKing

    call staement using byref keyword in call

    Hi Ron, Here is a snippet illustrating what we are trying to do: Private Sub Form_Load() Call MySub (ByRef sZ ) End Sub Private Sub MySub(test As String) test = test & "1" End Sub In the real code we are calling a vfp7 dll, I received some info from another forum that may...
  2. TammyKing

    call staement using byref keyword in call

    Hi, I tried many times to make ByRef work in the Call statement none of them will compile. Do you have a code snippet that compiles? Thanks
  3. TammyKing

    Problem with SendKeys

    Hi, I believe you will have to have a way of selecteing the window you want to send the keys to. I had written an application for physically impaired people that did this. It worked very well in the win 3.1 days, but even then you had to pick the app that you wished communicate with. At that...
  4. TammyKing

    Using DDE in Visual Basic

    Hi, I would really recommend not using DDE, instantiate the Access olb and you will have much better control over the app. OLE has pretty much replaced DDE. You can use the object browser to find the Access object. If you have trouble let me know, I will post some sample code. Good Luck, Tammy
  5. TammyKing

    call staement using byref keyword in call

    Hi All, I am trying to call a FoxPro 7 dll, which our group developed. When we call it I can see that the data gets into the dll properly and it is properly processed, but the results are not returned. It seems like the data is being passed by value not by reference. The call statement doc from...

Part and Inventory Search

Back
Top