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 strongm 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. madhosh

    SOUND FILESSSSSSSSSSSSSSS

    I want to capture sound files on client side and send them to server either as streams or as files ( after whole recording is completed ). I have to start digging in MFC for this. Can anyone help me with some starting point or with names of API's i could use for this purpose. I need to 1.Record...
  2. madhosh

    HELP with ISAPI

    Guys.. I am writing a ISAPI filter which will decrypt a ASP page before sending it to asp.dll for procession.I have used forllwing function.. DWORD CTrail1Filter::OnUrlMap(CHttpFilterContext* pCtxt, PHTTP_FILTER_URL_MAP pMapInfo) Here i check for files with extension".asp" (which...
  3. madhosh

    Getting the name of services running thr' VC++

    Thanks for the reply.. I use handle =OpenSCManager(NULL,NULL,SC_MANAGER_ENUMERATE_SERVICE); err=GetLastError(); It returns a handle but gives error 997(ERROR_IO_PENDING) if(handle){ ret= EnumServicesStatus( handle, // handle to service control manager database SERVICE_WIN32, // type...
  4. madhosh

    Getting the name of services running thr' VC++

    Guys.. This is URGENT and will be a BIG HELP!!!! I need to know if there is any API provided by MFC to retirve name of services running on a computer. PLEASEEEEE RESPOND .. THANKSSSSSS
  5. madhosh

    URL using C++

    Guys Thanks for your help.. I need to know how URL is constructed dynamically and sent to a web server using C++. Iam trying to write a program which will search the web and return the result( a small search engine). I need to know how a url can be constructed dynamically using search...
  6. madhosh

    HTTP Client using MFC...

    Again Thanks ... Iam really stuck.. Now I get this error.. Iam doing this for the first time.. so please bear up with me guys,, Any help will be appreciated... HTTP_STATUS_DENIED 401 The requested resource requires user authentication.
  7. madhosh

    HTTP Client using MFC...

    Thanks a lot rpet.. That was dumb of me not to see such a simple thing.. Guys One more help. When i try to access a web page using above code. It gives me "Proxy Authentication failed " error. My user name and Password are correct.. Any idea where i can set up user name and password...
  8. madhosh

    Communication between two Queue Managers !

    Hope this helps Each machine has a queue manager installed and each queue manager manages several local queues. Messages destined for a remote queue manager are put into a remote queue. A remote queue is not a real queue; it is the definition of a local queue in the remote machine. A remote...
  9. madhosh

    Trigering

    The definitions necessary to trigger an application are as follows: • The target queue must have “triggering” specified as shown in bold below: DEFINE QLOCAL(A-Q) REPLACE + TRIGGER TRIGTYPE(first) + INITQ(SYSTEM.DEFAULT.INITIATION.QUEUE ) + PROCESS(proc1) DESCR(’This is a triggered queue’) •...
  10. madhosh

    HTTP Client using MFC...

    Hi Guys... Need some help here.. I have been trying to acess web pages using C++ (MFC) . I have used following piece of code CInternetSession init; CHttpConnection* conn; CHttpFile* file; conn=init.GetHttpConnection( pstrServer, nPort, pstrUserName, pstrPassword )...
  11. madhosh

    <b>HTML and C/C++</b>

    Thanks for your help folks.. I need to know if there is any way to read data in a HTML file,into strings, by stripping the HTML tags. example: <p><a href=http://www.erlenstar.demon.co.uk/unix/faq_toc.html> I would like to extract &quot;http://www.erlenstar.demon.co.uk/unix/faq_toc.html&quot...
  12. madhosh

    C++ and INI files anyone??

    Thanks a lot for your help folks.. I need to access data in INI files using C++.Can anyone suggest some API's?? I used GetPrivateProfileString(..) but it returns only the value of the key name supplied. How do I get values of all keys in a INI one by one?
  13. madhosh

    Hi guys .. Can anyone help me with

    Hi guys .. Can anyone help me with following things 1. How to create DLL in VC++. 2. Can I use a INI file to list DLL's, so my program can read the INI file at run time and pick the DLL's listed in it?
  14. madhosh

    Polymorphism ..Anyone??

    Where can I find good material on how polymorphism is internally implemented in C++. ? Thanks

Part and Inventory Search

Back
Top