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 SkipVought 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. turtlemaster

    mapping a network drive

    How about this approach instead? How do you map a network drive using the framework??
  2. turtlemaster

    WNetAddConnection2 error 67 ??

    I am new to .NET from VB6 and I am having trouble accessing a network resource. I have successfully used this API in VB6 but now I keep getting error 67 ERROR_BAD_NET_NAME. I have checked and double checked what I am passing to the api function but it still is not working. What am I missing...
  3. turtlemaster

    Named Pipes Dilemma

    I got that from the docs and thought that was what I was doing. I am using the createfile API on the client end and createpipe on the server end. These functions appear to be working. It's when I try to call connectnamedpipe on the server and it keeps returning system error 536...
  4. turtlemaster

    Named Pipes Dilemma

    I am developing an application that will communicate with another application (that I am not developing) using named pipes. So in the mean time I am developing a simulator app that will only preform the communication portion so I can work out the details. The problem is timing I think. From all...
  5. turtlemaster

    MSMQ

    Perhaps I should try installing the components before creating an instance of them ... duh!! Note to self: you must first install windows messaging before you can create a message queue.
  6. turtlemaster

    MSMQ

    Trying to create a simple message queueing applicating but I am getting error 429 activex control can't create object. I set the references to include mqoa.dll. I am running XP. Dim qinfo As new MSMQQueueInfo Dim q As MSMQQueue Dim msg As MSMQMessage qinfo.PathName = "PRIVATE$\test&quot...
  7. turtlemaster

    Access to StdIn

    After more investigation I found this; http://www.experts-exchange.com/Programming/Programming_Languages/Visual_Basic/Q_20256011.html It is an exe that overwrites the header of your exe file and alllows you to intercept stdin of your app. This is what I wanted to do but I don't want my app to...
  8. turtlemaster

    Access to StdIn

    Thanks strongm, I read your example and although it is not exactly what I wan't to do its definently brough me closer to where I want to be. This application is going to launch an instance of my application and write something to Stdin. My trouble so far has been that I cannot access Stdin from...
  9. turtlemaster

    Access to StdIn

    I am writing an application that must communicate with an older application developed in C++ 4.0. I am not involved with the development on the C++ application but it is the main system currently in place now and cannot be modified much. I also do not get to pick the communication methods that...
  10. turtlemaster

    Is window active??

    I am extracting information of a child window in another application but I want to ensure that the child window used is the active window (The child currently selected). Do I have to EnumProp to get this information? If so what atom string do I use to find this (I was just reviewing the API...
  11. turtlemaster

    API though vbs

    I have a vbs file that I want to use API calls in. It errors out on the declare statements though. How should I change the syntax to allow this to work. Declare Function EnumWindows Lib "user32" (ByVal lpEnumFunc As Any, ByVal lParam As Any) As Long Declare Function GetWindowText Lib...
  12. turtlemaster

    Automation without OLE

    I got it!!!! Thanks-you so much for your help. Once I started expiriementing with the API calls and using SPY++ it was pretty easy to get it to work. You have opened a whole new world up of API for me and I can't thank you enough. Nick
  13. turtlemaster

    Automation without OLE

    I am looking at the documentation but I can't seem to find a demo on how to use EnumWindows in VB. I am having a little difficulty understanding how the actual function works. I have found what windows object to send the message to using Spy++ but I can't get a handle to the window (or button)...
  14. turtlemaster

    Excel to VB

    post this question in the VBA forum and you'll get a better response.
  15. turtlemaster

    Automation without OLE

    I have this application that opens a word document to generate a report. I need to automate a task in the application upon the closing of the word document but the application does not support OLE automation (I can't even get a reference to the darn thing). I was thinking that I may be able to...
  16. turtlemaster

    Non-office automation

    I did review the shell function and sendkeys but the problem with those solutions are that 1.) The application has already been launched and is running in the background so I do not have a handle to it. Even getobject won't work because the application does not support OLE automation (anything...
  17. turtlemaster

    Non-office automation

    I have an application that opens a word document. I want to be able to send instuction back to that other application (which is not an microsoft application) before word closes. Is there a way to do that?
  18. turtlemaster

    Combo List Creation based on another field

    From what I can see you are going to have to create an availablity table. This table would have list each person and date available. This table would also have to be maintained (you could delete old records though to control the size of your database as they would not be required the past the...
  19. turtlemaster

    due date

    Stick, What information are you tracking? Tenant ID, Amount Due, Due Date, Paid Date etc ... ? This would affect how I would approch this.
  20. turtlemaster

    Two Combo Boxes and Subform

    Instead of creating all of those objects I would use the tools already there. The recordset clone is just that a clone of the recordset used to create your form. So I would just search that and if a match is found maneuver your form to the appropriate record by way of the primary key. Private...

Part and Inventory Search

Back
Top