Posts by André Morales • 71 points
6 posts
-
0
votes2
answers670
viewsA: An Exception of type 'System.Outofmemoryexception' occurred in mscorlib.dll but was not handled in user code Asp.net
Outofmemoryexception has no way to recover in the traditional way, it is launched when your application runs out of enough memory, this gives the fata to read 400*142 entire strings to memory, you…
-
1
votes1
answer63
viewsA: How to make a GIF loop while the next scene loads
Unity3d does not support GUIFS, but you can change the Sprite of an image repeatedly to give a GIF illusion, it is a bit complex, but has how to load your scene at the same time of your GIF
unity3danswered André Morales 71 -
0
votes2
answers2454
viewsA: A. bat file that changes the background color according to the number the user entered
BAT files do not handle parentheses very well, the instruction that IF executes comes from the side of it: IF [condition] [instruction] and not: IF [condition] [instruction] soon: @ECHO OFF SET /p…
-
1
votes1
answer1438
viewsA: Send String via socket Java
Server After accepting the client connection, check if there is any data available, I do not recommend but will use a while true: public class Servidor { public static void main(String args[])…
-
1
votes1
answer1123
viewsA: What is the function called to drag the window to the corners of the screen?
Look, I looked, and in the gringa it’s called Windows Snap Feature, in C#, they said that this.ResizeMode = System.Windows.ResizeMode.NoResize; or this.ResizeMode =…
-
0
votes1
answer46
viewsQ: Java: Sending messages over the network repeatedly in another thread?
This is my problem: I need a message to be sent by a socket repeatedly, to do this, I created another Thread, so that the application would not be locked, so: new Thread(new Runnable(){ public void…