hi all,
am using http download function.
HTTP.Download("http://www.mydomain.com/myfile.exe", "C:\\Downloads\\myfile.exe", MODE_BINARY, 20, 80, nil, nil, nil);
but i need abiloty to choose a custom port for http that is chosen by the user
i have a already a input text box which will grab the value input and store it as port
im trying to concatenate it into the function. see below.
it may be just a simple syntax error on my end
HTTP.Download("http://www.mydomain.com/myfile.exe", "C:\\Downloads\\myfile.exe", MODE_BINARY, 20, "..Port..", nil, nil, nil);
any ideas?
thanks'
am using http download function.
HTTP.Download("http://www.mydomain.com/myfile.exe", "C:\\Downloads\\myfile.exe", MODE_BINARY, 20, 80, nil, nil, nil);
but i need abiloty to choose a custom port for http that is chosen by the user
i have a already a input text box which will grab the value input and store it as port
im trying to concatenate it into the function. see below.
it may be just a simple syntax error on my end
HTTP.Download("http://www.mydomain.com/myfile.exe", "C:\\Downloads\\myfile.exe", MODE_BINARY, 20, "..Port..", nil, nil, nil);
any ideas?
thanks'
Comment