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 IamaSherpa 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. ManojShinde

    Hi I'm new to API calls, so plea

    You can get the screen resoulution with this simple code Private Sub Command1_Click() Dim lheight As Long Dim lWidth As Long lheight = Screen.Height lWidth = Screen.Width lheight = lheight / Screen.TwipsPerPixelY lWidth = lWidth / Screen.TwipsPerPixelX...
  2. ManojShinde

    Hi, I have a small exe that does

    If you are worried about the version of the SCRRUN.DLL then do not give reference to Micosoft Scripting runtime and then you can use CreateObject("Scripting.FileSystemObject") to create FSO object. But you can not be sure if scrrun.dll will be present or not. So to be on safe side...
  3. ManojShinde

    Module or class method ?

    You need to create object of a class to access its methods. Module is like library.
  4. ManojShinde

    CallNamedPipe

    Hello, I want to send and receive messages to a server program using named pipes. I have Used Named Pipes for that. There is a article in MSDN in this respect (HOWTO: Use Named Pipes in a Visual Basic 32-bit Program (Q177696)). But this example shows the way to send the bytes, but how to send...

Part and Inventory Search

Back
Top