InetGet() is for download to file
InetRead() is for download to variable
InetGet() has background flag
InetRead() has no background flag
I miss background flag in InetRead().
In my project I have got some information window and some advanced information I want to download from intenet and display as aditional information. These information are not mandatory (may/may not be there) so I want to display basic information and in background download aditional information from web to variable (no temporary file). If download is sucessfull then show result from from variable to window by GUICtrlSetData(). Now I use InetRead() without background but in case of problems with connection/download whole my window will be blocked.
I can easily imagine that similar way somebody can use also multiple background download with InetRead() to array of variables. Each InetRead() would be downloading to $array[$n].
Should I add feature request for this to Trac?
EDIT: Post your opinion here if you have any.