Search the Community
Showing results for tags 'object create'.
-
I'am a beginner in object oriented programming and I have a problem getting control over the SPiiPlus ADK Suite from ACS Motion Control. You can find many examples in the documentation for many languages that I tried to port to AutoIt but without any success. Any tips to get control over this app/driver? Please help me to start. Here is the link to the documentation and examples Thanks
-
Now I want to use a dll function, It needs a para that is a ARGB Color Struct in System.Drawing.dll Using C# is very easy: double[] x = new double[100]; double[] y = new double[100]; ...... objChart.GraphPane.AddBar( "Sine Wave", x, y, System.Drawing.Color.Red ); but using autoit, it seems difficult to create such a ARGB color struct because I can't know its structure: Local $x[3] = [1.0, 2.0, 3.0], $y[3] = [11.0, 12.0, 13.0] $objChart.GraphPane.AddBar("Sine Wave",$x,$y, ?????????) The Color.Red is defined in the System.Drawing.dll, i.e. System.Drawing.Color.Red Is there some solution? Any help will be greatly appreciated ~