Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
http://www.cpearson.com/excel/newposte.htm
-- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "alexm999" wrote in message... I'm trying to get this to work with a CSV file and for some reason it doesn't work? Can anyone help? Heres the code: Private Function CreateFormData(ByRef Fields As Variant, ByVal FormDataDelimiter As String, ParamArray Values() As Variant) Dim FormData As String FormData = FormDataDelimiter & vbCrLf For i = 0 To UBound(Fields) FormData = FormData & "Content-Disposition: form-data; name=""" & Fields(i) & """" & vbCrLf & vbCrLf & Values(i) & vbCrLf & FormDataDelimiter & vbCrLf Next i CreateFormData = FormData End Function -- alexm999 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why does this code not work? | Excel Discussion (Misc queries) | |||
Why does this code not work? | Excel Programming | |||
Help getting code to work. | Excel Programming | |||
Code Error - Run Time Error 5 (Disable Cut, Copy & Paste) | Excel Programming | |||
Why my code do not work : - ( | Excel Programming |