I work in visual studio 2015 windows form application and i need to print qr code by using c#
How can i print qr code generation ?
I generated using the following code :

if (textBox1.Text =="")  
          {  

              MessageBox.Show("Please Enter Value ","Error");  
              textBox1.Focus();  
          }  
          else  
          {   
          using (SaveFileDialog sv = new SaveFileDialog() { Filter = "JPEG|.jpg", ValidateNames = true })  
          {  
              if (sv.ShowDialog() == DialogResult.OK)  
              {  
                  MessagingToolkit.QRCode.Codec.QRCodeEncoder encoder = new MessagingToolkit.QRCode.Codec.QRCodeEncoder();  
                  encoder.QRCodeScale = 8;  
                  string encoding="UserName : " + textBox1.Text + "\r\n" + "CardNo : " + textBox2.Text + "\r\n" + "Address:" + textBox3.Text + "\r\n"+textBox5.Text;  
                  Bitmap bmp = encoder.Encode(encoding);  
                  pictureBox1.Image = bmp;  
                  bmp.Save(sv.FileName, ImageFormat.Jpeg);  
              }  

          }  
          }  

      }  

Recommended Answers

All 3 Replies

This post, shows an answer with some very simple code.

commented: Nice tip! +15
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.