临摹微笑
Private Declare Function icePub_getIniString Lib "icePubDll.dll" (ByVal strDefaultValue As String, ByVal strGroupName As String, ByVal strKeyName As String, ByVal strIniFilename As String, ByVal strResult As String) As IntegerPrivate Declare Function icePub_getIniValue Lib "icePubDll.dll" (ByVal valDefaultValue As Integer, ByVal strGroupName As String, ByVal strKeyName As String, ByVal strIniFilename As String) As IntegerPrivate Declare Function icePub_setIniString Lib "icePubDll.dll" (ByVal strValue As String, ByVal strGroupName As String, ByVal strKeyName As String, ByVal strIniFilename As String) As IntegerDim val2 As IntegerDim strVal As StringFor i = 1 To 5keyName = Key + Trim(Str(i))'值val2 = icePub_getIniValue(0, "Section", keyName, App.Path + "\myini.ini")'串strVal = icePub_getIniValue(0, "Section", keyName, App.Path + "\myini.ini")'往Combo1里添加Next i'写a = icePub_setIniString("555", "Section", "Key1", App.Path + "\myini.ini")http://zhidao.baidu.com/question/139238142.html里边下载的rar包里有dll