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 CaptainJack, 05-29-2026, 05:09 AM
        0 responses
        217 views
        0 likes
        Last Post CaptainJack  
        Started by CaptainJack, 05-29-2026, 12:02 AM
        0 responses
        133 views
        0 likes
        Last Post CaptainJack  
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        147 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        233 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        192 views
        0 likes
        Last Post CarlTrading  
        Working...
        X