With the following piece of Java code I get this result with Java 7: Ducati999 [68, 117, 99, 97, 116, 105, 57, 57, 57] import javax.crypto.spec.SecretKeySpec; import java.security.Key; import java.util.Arrays;
public class Main { public static void main(String[] args) { System.out ...
You shouldn't use the Cube variable as index number for CreateEntity. Dynamically created index numbers (those generated by the use of #PB_Any) tend to be very high, thus resulting in the object number error. I think you should use #PB_Any for CreateEntity, too, and store the returned index number ...
Does the tooltip re-appear when you move the cursor back over e.g. the checkbox again after clicking it?
Here on Windows 7 the tooltip appears upon mouse-over and disappears after clicking the gadget. If I move the cursor away from the gadget and back again, the tooltip re-appears ...
Great work, falsam ! :D And a good demonstration of the CanvasGadget.
Nevertheless, in several places I think If SelectColor should be replaced by If SelectColor <> -1 And you may want to use a temporary 32-bit transparent image for the triangle (Losange, model no. 5) because FillArea does not ...
For i = 1 To 64 a * 2 Debug "2^" + Str(i) + ": " + Str(a) Next i Quad has a range from (-2^63) to (2^63 - 1). Note the -1. For each multiplication by 2, the bits of the number are shifted one place to the left.
Thus 2^63 returns a negative number (and 2^64 returns zero).