Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Decimal to Float Problem

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Decimal to Float Problem

    I'm trying to draw a line with the following code:

    graphics.DrawLine(new Pen(Color.Blue), x1, y1,x2, y2);

    I define x1,y1,x2,y2 in the variable section as double vars. In the compilation process NT gives me the following messages:

    1-The best overloaded method match for 'System.Drawing.Graphics.DrawLine(System.Drawing.P en,float,float,float,float,)
    2-Argument '2': cannot convert from 'double' to 'float'
    3-Argument '3': cannot convert from 'double' to 'float'
    4-Argument '4': cannot convert from 'double' to 'float'
    5-Argument '5': cannot convert from 'double' to 'float'

    any Ideas how I can make it work?

    Regards

    #2
    Try casting to a float such as:

    graphics.DrawLine(new Pen(Color.Blue), (float) x1, (float) y1....)

    I believe that should work.
    RayNinjaTrader Customer Service

    Comment


      #3
      Thanks it works.


      Originally posted by NinjaTrader_Ray View Post
      Try casting to a float such as:

      graphics.DrawLine(new Pen(Color.Blue), (float) x1, (float) y1....)

      I believe that should work.

      Comment


        #4
        Excellent, glad to have been of help.
        RayNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        569 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        330 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        548 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        548 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X