Memory Usage

Is it possible to show how much of the EMX’s memory/resources my application is using (and therefore on how limited a machine I could operate)?

Thanks
Nick

don’t turn GC off and you’ll see some indication as you go.

There was another thread on someone who was figuring out their app memory footprint and analysing the output of the deployment messages from VS.

Also, using this can tell you how the free memory is going…

Debug.Print("Free mem : " + Debug.GC(false).ToString());

I’ll have a search for “app memory footprint”, that sounds like the technical term for what I’m wanting to know. Thanks

That code did exactly what I needed, thanks!