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. chaitu

    Whether an application is running?

    I myself found the answer, Thanks, I am attaching the code for it might be useful... <Code> #include &quot;tlhelp32.h&quot; BOOL bRet; PROCESSENTRY32 eProcess; HANDLE hProcessEnumerator = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); bRet = Process32First(hProcessEnumerator, &eProcess)...
  2. chaitu

    Whether an application is running?

    I am writing a service and my service is supposed to function only when a particular application is not running. But, How do I determine whether that particular exe - for which I know the exact name - is running or not? Is there a way to programatically achieve this? Regards & thanks in...
  3. chaitu

    Username while mapping network drive

    Hi, When I try to map a network drive, all it asks me is the network password. The username is taken by default as my logged in user ID. What if I want to specify the user name explicitly? Is there a way for it? Please help... Chaitu
  4. chaitu

    FTP quota

    Hi, I am using Wininet set of APIs for a connection with an FTP server. Is there a way by which I can get the TP quota for the site. FTPCommand doesn't seem to work. It seems to be a &quot;for future use&quot; kind of a thing. Regards,
  5. chaitu

    Winsock2.0 on Win2000

    Hi, I am using Winsock2.0 and as seen in help everywhere, for using SSL with it, the function 'setsockopt' can be used with certain flags SO_SECURE, SO_SEC_SSL etc. But on Windows2000, in header file Winsock2.h, there is nothing like these flags. Can't I do SSL with Winsock2.0 on Visual...
  6. chaitu

    SSL with FTP?

    Hi, I am usinsg WinInet dll for FTP operations. Basically calling InternetConnect(), FTPOpenFile(), FTPPUTFile() etc. But while I send the ID and password through InternetConnect() fuction, I need to do this using SSL. There are SSL operations available through WinInet APIs, but they are...
  7. chaitu

    SSL in VB?

    Is it possible to use SSL, when establishing connectivity to Internet, through a VB code? If yes, is there any API and/or a function to do this. All I want is, I am using InternetConnect() function, but I want to do this with SSL. Is it possible? cheers, Chaitu
  8. chaitu

    SSL in VB?

    Is is possible to use SSL, when establishing connectivity to Internet, through a VB code? If yes, is there any API and/or a function to do this. All I want is, I am using InternetConnect() function, but I want to do this with SSL. Is it possible? cheers, Chaitu
  9. chaitu

    How do I send keystrokes to Notepad/Wordpad?

    Here is a simple but effective code used to send keystrokes to Notepad / Wordpad. Sending text to another program ------------------------------------------------------------ Private Declare Function SendMessage Lib "user32.dll" Alias "SendMessageA" (ByVal hWnd As Long, ByVal Msg As...
  10. chaitu

    How to send keys to Notepad?

    Here's the simple code to use SendKeys function effectively to write to a notepad. Sending text to another program ------------------------------------------------------------ Private Declare Function SendMessage Lib "user32.dll" Alias "SendMessageA" (ByVal hWnd As Long, ByVal Msg As...
  11. chaitu

    WNetAddConnection ???

    Thanks, But does it work even with WebFolders. By Webfolders, I mean shared folders on the internet. For this, the parameter for the function WNetAddConnection would be something like, &quot;http://www.msn.com/myfolder&quot;. This doesn't seem to work. Is there a way that I can do this...
  12. chaitu

    Whats SendKeys of VB in C++

    Hi, Any idea whats the alternative of SendKeys method of VB in C++/VC++. SendKeys of VB sends key strokes to any application specified, as if entered from the keyboard. Tried WinExec() & OpenProcess() to get a handle, but this handle cannot be used in SendMessage(). All I want is, through my...
  13. chaitu

    WNetAddConnection ???

    Can you please elaborate?
  14. chaitu

    How to use sendkeys method in background?

    Is there any way that I can use sendkeys function in background. I dont want to see the cliks, tyoes etc to be visible. thanks in adv, Chaitu
  15. chaitu

    WNetAddConnection ???

    Hi, Using this function (WNetAddConnection) supported in &quot;mpr.lib&quot;, I am able to map a folder on LAN by mentioning its sharename. But when I try to map using its IP address or any other http folder, I get an error saying, no 'Network Provider found'. Is there any other function to...
  16. chaitu

    How do I programatically eject CD drive?

    Hi, Is there a way thru' which I could programatically eject CD drive? Through some of the multimedia class I am able to Play, Stop or do some similar functions, but eject? Thsnk in adv, Chaitu
  17. chaitu

    How to create webfolder programatically

    Webfolder is a folder on the internet which we can map into our Windows explorer as any other folder, through the explorer's Tools->Map Network Drive -> selecting 'Map WebFolder or FTP server' option. Also i internet explorer we can view the folder as a webfolder by selection File->Open->tick...
  18. chaitu

    How to create webfolder programatically

    I need help in creating/mapping a webfolder programatically to my Windows2000 explorer, preferrably through VB? I searched among Windows APIs but in vain. Is there a dll who does this or an API? Please help...
  19. chaitu

    How to Create Web Folder Programatically

    Can any one explain how to create/map a webfolder in windows2000 explorer programatically, preferrably through VB? Is there any API of any Win32 dll to do this?

Part and Inventory Search

Back
Top