H hdzj2000 Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-07 #1 我现在在编一个比较大的系统,有一个总控模块,其他的模块通过OLE进行连接,但现在的 问题是其他模块总是另外开一个新窗口,如何能使它们嵌入到总控模块的窗体中,请各位 大侠帮帮忙
C CST Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-24 #8 试一下 WinExec(Pchar(FileName),SW_Normal); WaveHwnd := FindWindow(nil,'GoldWave');//窗口标题 Windows.SetParent(WaveHwnd,plsound.Handle); MoveWindow(WaveHwnd,-5,-25,plSound.Width+5,plSound.Height+5,True);//隐藏标题 栏
试一下 WinExec(Pchar(FileName),SW_Normal); WaveHwnd := FindWindow(nil,'GoldWave');//窗口标题 Windows.SetParent(WaveHwnd,plsound.Handle); MoveWindow(WaveHwnd,-5,-25,plSound.Width+5,plSound.Height+5,True);//隐藏标题 栏
S sunhood Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-25 #9 CST说的有道理,除了WinExec,还可以用ShellExecute,不过需要uses ShellApi才可以