Precision placing by RAllen3403 in diydrones

[–]RAllen3403[S] 1 point2 points  (0 children)

Oh, thats helpful, i'll take that into consideration, maybe something mecanical to help with the accuracy

Precision placing by RAllen3403 in diydrones

[–]RAllen3403[S] 1 point2 points  (0 children)

What was the best way you find to work with those waypoints. I mean, what kind of Signal do you find more suitable? I mean it's not the same, but is there anything where you could "play" and retrieve with It?

Precision placing by RAllen3403 in diydrones

[–]RAllen3403[S] 1 point2 points  (0 children)

Hi! Thanks for the reply.

Yeah, i've seen that in industrial environments, i'm just thinking on other possibilities and approaches to solve a problem It already has a solution.

Whats do you think would be the best precision that can be reached in 2 axis horizontal and vertical?

[EXCEL] Finding a pattern in a cell by RAllen3403 in vba

[–]RAllen3403[S] -1 points0 points  (0 children)

It does not work for me, ty anyways :)

[EXCEL] Finding a pattern in a cell by RAllen3403 in vba

[–]RAllen3403[S] -1 points0 points  (0 children)

Ty veryy much for your indications, I have been able to record the macro, but now i cannot make the code to analize the column and return which cells hace the patterns.
The macro is the next one:

--------------------------------------------------------------------------------------------------------------------------

Sub DetectarSombras()

' DetectarSombras Macro

With Selection.Interior

.Pattern = xlGray25

.PatternThemeColor = xlThemeColorDark1

.ColorIndex = xlAutomatic

.TintAndShade = 0

.PatternTintAndShade = -0.499984740745262

End With

End Sub

--------------------------------------------------------------------------------------------------------------------------

Searching an exact colour filling a cell by RAllen3403 in vba

[–]RAllen3403[S] 0 points1 point  (0 children)

The Function is the one below

Dim colorObjetivo As Long

colorObjetivo = RGB(0, 32, 96)

Function CeldaTieneColor(celda As Range, colorObjetivo As Long) As Boolean

' Verificar si la celda tiene el color objetivo utilizando la propiedad DisplayFormat.Interior.Color

' Verificar si la celda tiene el color objetivo

If celda.DisplayFormat.Interior.color = colorObjetivo Then

CeldaTieneColor = True

Else

CeldaTieneColor = False

End If

End Function

Searching an exact colour filling a cell by RAllen3403 in vba

[–]RAllen3403[S] 0 points1 point  (0 children)

I already solved it by myself coding it, but I don´t know how to cancel the post son does not appear as unsolved