I found them in HKEY_CURRENT_USER\RemoteAccess\Addresses\ but when I try to read the value names using the RegEnumValues API call, I get an error #234 (which I believe to be "More Data is Available"). I'm not sure what this means.

I have been able to successfully pull ODBC Data Sources from HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources\ using the same API call. The only difference I can see is that the ODBC DSNs are REG_SZ registry entries (strings) whereas the DUN Connections are REG_BINARY (or hex) entries. I think this is causing my problem, but I'm not certain.

If I can get the values from the registry, putting them into a list box is no big deal. Problem is, I can't get that far.

Does anyone have code that will do this that I can try?

HELP!!!