K
Kevin
Hi!
How can I make that my application run in full screen mode?
Thanks
How can I make that my application run in full screen mode?
Thanks
How can I make that my application run in full screen mode?
if its a web app, use javascript
<script language="javascript">
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
</script>