Posts by Otavio Primo • 31 points
3 posts
-
1
votes2
answers5035
viewsA: How to access classes in Unity 3D (C#)
Look, I only know the method of instantiating a script with another, so you can access a Pistol method in Player for example. //Pistol using UnityEngine; using System.Collections; public class…
-
1
votes2
answers994
viewsA: A single form with multiple panels or MDI Forms. Which option is more efficient for program performance?
From a look at the Toolstrip tool, with it you can make it look like the Ccleaner interface you mentioned. You can format it in several ways and leave as you need.
-
1
votes2
answers12423
viewsA: Oracle Insert of multiple lines
If you just want to increment the ID from 1 to 1, you can do a Stored Procedure(command set) with a while and the Insert. For example: CREATE TABLE tbCliente( id int NOT NULL AUTO_INCREMENT, numero…