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

    CGI, Win32API, Visual Basic

    I have found a solution to the first part of my question. My declaration for readfile api was incorrect. However, I'm still working on the second part of my question, and that is redirecting the output of the spawned application. sade08
  2. sade08

    Getting corresponding datatype for win32api datatypes in VB

    Window handles are long data types in Visual Basic. Pointers to a string (LPSTR)- By Val string or variant; Char - By Val Byte. As far as a reference to corresponding datatypes for C and VB, I would consult any book on Win32API. Sade08
  3. sade08

    CGI, Win32API, Visual Basic

    This is concise copy of code. sReadBuffer = String$(CLng(Environ$("CONTENT_LENGTH")), 0) 'defining size of buffer ' Get STDIN handle hStdIn = stdin() ' Read client's input ReadFile hStdIn, sReadBuffer, Len(sReadBuffer), lBytesRead ' Find...
  4. sade08

    CGI, Win32API, Visual Basic

    I need help regarding using CGI to spawn an outside process in Visual Basic using Win32 APIs. Basically I am web enabling utility programs that are run from the DOS prompt. To capture parameters entered by users at the DOS prompt, I display an HTML form. CGI stores the information in the...
  5. sade08

    CGI, Win32API, Visual Basic

    I need help regarding using CGI to spawn an outside process in Visual Basic using Win32 APIs. Basically I am web enabling utility programs that are run from the DOS prompt. To capture parameters entered by users at the DOS prompt, I display an HTML form. CGI stores the information in the...

Part and Inventory Search

Back
Top