Hi Everyone,

I'm working on TCP/UDP communication in which I have set a range for ports as below
Qt Code:
  1. QSpinBox *spinBox = new QSpinBox(parent);
  2. spinBox->setRange(1024, 65535);
To copy to clipboard, switch view to plain text mode 
Now I want to connect to port 80(specific), but because of the above configuration, I'm unable to use port 80.

So my question is, does it possible to add exceptional value/port in spinbox?