Hi. I am using visual studio 8, using vb.net. I am trying without success to make a post request to a web form as shown below.
<?xml version="1.0" encoding="UTF-8"?><postBetOrd er xmlns="urn:betf air:games:api:v 1"marketId="256 8540" round="1" currency="GBP">
<betPlace>
<bidType>BACK </bidType>
<price>2.5</price>...
User Profile
Collapse
-
How to make a POST request in vb.net
-
Hi and thanks for your reply. My struggle is with the syntax in this line of pseudo code
Instead of having to name each array directly in the loop, I want the loop counter to be used so that the above line is saying at the first pass of the i loop,Code:if array (i,j)
then on each subsequent pass of the i loop the array in question becomes...Code:if array1 , element j
-
Access arrays via for next loop
I have 5 arrays, named array1 array2 array3 array4 array5. They are integer arrays each with 5 elements in them. I want to access all the elements in all the arrays using a for next loop,the pseudo code goes something like this:
...Code:for i = 1 to 5 'this loop calls each array for j = 0 to 4 ' this loop calls each element if array (i,j) then ' code goes here end if next j -
-
Pass arrays to a function
Hi, I have an array of integers and I want to pass the array to a function that will add up the elements of the array and return the cumulative total of the elements of the array. So, if the array contains the values {1,2,3,4,5} the return value from the function would be 15. How do I achieve that please.
Thanks for all and any help.
No activity results to display
Show More
Leave a comment: