User Profile

Collapse

Profile Sidebar

Collapse
smileyc
smileyc
Last Activity: Oct 8 '09, 12:06 PM
Joined: May 18 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • smileyc
    started a topic How to make a POST request in vb.net

    How to make a POST request in vb.net

    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>...
    See more | Go to post

  • smileyc
    replied to Access arrays via for next loop
    Hi and thanks for your reply. My struggle is with the syntax in this line of pseudo code

    Code:
    if array (i,j)
    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 array1 , element j
    then on each subsequent pass of the i loop the array in question becomes...
    See more | Go to post

    Leave a comment:


  • smileyc
    started a topic Access arrays via for next loop

    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
    ...
    See more | Go to post

  • smileyc
    replied to Pass arrays to a function
    It works great! Many thanks
    See more | Go to post

    Leave a comment:


  • smileyc
    started a topic Pass arrays to a function

    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.
    See more | Go to post
No activity results to display
Show More
Working...