Search results for query: *

  1. A

    Formatting legends in MS Charts .NET 3.5

    I haven't been able to find where the option may be (if it exists) of removing the colored line next to the legend entries. For my project, the graphs I show are either blue for passing or red for failing. Since there are a lot of things on my GUI, I would rather change the color of the text...
  2. A

    Question Custom formatting of decimal numbers

    I'm having a bit of an issue getting the number formatting of VB .NET 3.5 to work just right for me. I have to convert numbers to scientific notation, with 2 digits for the exponent and 6 digits after the decimal. I've been able to get this for numbers that have enough digits, but for other...
  3. A

    Directly and dynamically assigning values to an array

    Thanks, I'll have to keep that in mind for future projects. This one actually became easier to deal with each array individually instead of gathering them up and dealing with them all at once.
  4. A

    Directly and dynamically assigning values to an array

    I was afraid I was going to have to iterate over it. I thought for sure there would be a way of directly assigning the variable, but I guess I'm just too used to Python =P myArray = [[]]*7 myArray[0] = myFunc()
  5. A

    Directly and dynamically assigning values to an array

    I am trying to figure out how to assign a 1-dimensional array value I get from a function directly into an element in a 2-dimensional array. An example would be Dim Results(7)() as Double Results(0) = myFunction() ' returns an array with 5 doubles What is the correct syntax for this, if any...
Back
Top