Dear sir,
Here i have used Telerik RadBarcode for generating QR code and here is the code below...
<telerik:RadBarcode ID="RadBarcode1" runat="server" Height="52px" style="margin-top:-54px;"
onprerender="RadBarcode1_PreRender" Type="QRCode" Width="50px">
</telerik:RadBarcode>
Server side code;
==============
RadBarcode1.Text = "Testing";
RadBarcode1.QRCodeSettings.DotSize = 1;
When i use the code above is working fine and generating QR code ,,, but i cant read it using device....
but when i increase the size like...'
RadBarcode1.QRCodeSettings.DotSize = 2; it can read through device...
but my problem is i cant set the size as 2 it may exceeds my allowed space... so how can i read small QR code or How can i set the QR code size between and 1 and 2..
Please help me to find a solution to ...
Go to the complete details ...