在 VB6 中创建进程时(与此问题相关:),我使用以下结构:
Private Type STARTUPINFO
cb As Long
lpReserved As String
lpDesktop As String
lpTitle As String
dwX As Long
dwY As Long
dwXSize As Long
dwYSize As Long
dwXCountChars As Long
dwYCountChars As Long
dwFillAttribute As Long
dwFlags As Long
wShowWindow As Integer
cbReserved2 As Integer
lpReserved2 As Long
hStdInput As Long
hStdOutput As Long
hStdError As Long
End Type
在我开始我的进程之前,为了让我的 VB6 应用程序读取我的托管进程的输出,STARTUPINFO.hStdOutput 需要发生什么?
谢谢!!