Insert Byte/int to TextBox
-
Hi, I have problam with convert.tostring(), this function take alot of CPU power. there is anather function or way to do this action? thank you and have a nice Day!!:
-
if you try to convert byte to string try this: Convert.ToString(your bytes) or can you explain more your problem???? _____________________ Proud to be Albanian _____________________
-
this is what I doing --- byte Number; convert.tostring(number); Number++; --- in thread and the CPU Process is over working
-
this is what I doing --- byte Number; convert.tostring(number); Number++; --- in thread and the CPU Process is over working
Hi Try this
byte Number; Number.ToString(); Number++;
Ahmad Shaban -
if variable Number increase by one try to sign in for loop, example string s=""; for(byte Number=0;Number<=15;Number++) { s=Convert.Tostring(Number); } _____________________ Proud to be Albanian _____________________
-
Hi Try this
byte Number; Number.ToString(); Number++;
Ahmad Shaban -
Hi maybe you should check your loop Ahmad Shaban
-
this is what I doing --- byte Number; convert.tostring(number); Number++; --- in thread and the CPU Process is over working
I recommand you to not use muc variables because your project grows and becomes big procces in CPU. Check ur code and insetad variables use dirctly code. Use as little bit number of vraiables as is possiblity. _____________________ Proud to be Albanian _____________________
-
this is what I doing --- byte Number; convert.tostring(number); Number++; --- in thread and the CPU Process is over working