阅读:798回复:0
急:怎样在网卡oemsetup.inf实现自制对话框
怎样在网卡安装程序oemsetup.inf实现自制对话框?看了Intel的网卡安装程序,采用了dll,oemsetup.inf文件部分内容如下:
请教: 1:对话框的dll怎样实现 2:DlgTemplate = \"WLA\"好像和dll有关,关系是什么? 3:能不能提供源代码啊 adapteroptions = + set from = adapteroptions loadlibrary \"Install Diskette\" $(DLLPATH)\\KRONE.dll DllHandle EndWait ui start \"InputDlg\" $(DllHandle) ifstr(i) $(DLGEVENT) == \"CONTINUE\" set IRQValueIndex = $(Combo1Out) set IoBaseAddrIndex = $(Combo2Out) set NetTypeValueIndex = $(Combo5Out) ui pop 1 else-ifstr(i) $(DLGEVENT) == \"EXIT\" set CommonStatus = STATUS_USERCANCEL ui pop 1 FreeLibrary $(DllHandle) goto end else ui pop 1 FreeLibrary $(DllHandle) goto end endif FileDependentDlgENG] Label1 = \"&IRQ Level:\" Label2 = \"I/O &Port Address:\" DlgType = \"RadioCombination\" DlgTemplate = \"WLA\" |
|