Recently KMPlayer Updated to 3.9 version and it came with widget call KMBox. to hide it after starting the program need to click on box button on title bar. but it need to click every time start the program. check the settings is there any option to disable it permanantly no luck on settings. so denied KMPlayer's internet access via ...
This is the simplest way i found on my experiments in type casting int to String in Java//initialize a integer type variableint integerVariable = 4;//initialize a String type variableString stringVariable;//Type Cast int to StringstringVariable=integerVariable="";is there a simple way than that your comments are really appreciate.මගේ අත්දැකීම් පරීක්ෂණ සටහන් වන පිටුව ...
while the code in java sometimes i wanted to use signed integer type. but like C++ coudn't find a way to use signed int. so thought about a way to convert negative integers to positive.int integerVariable; integerVariable =-20;//now convert negative values to positiveif(integerVariable<0) integerVariable=0-integerVariable;now just use integerVariable as your wish. it will only contain positive values.මගේ අත්දැකීම් පරීක්ෂණ සටහන් වන ...