Jump to content

How to identify which option was selected


cleiver

Recommended Posts

procedure TMainForm.UniFormShow(Sender: TObject);
begin
  UniLabel1.Caption := '<html>' +
             '<head>' +
             '  <title>Menu Dropdown - Linha de Código</title>' +
             '</head>' +
             '<body>' +
             '<ul id="nav">' +
             '    <li><a href="#">Home</a></li>' +
             '    <li><a href="#">Sobre</a></li>' +
             '    <li><a href="#">O que Fazemos?</a>' +
             '      <ul>' +
             '        <li><a href="#">Web Design</a></li>' +
             '        <li><a href="#">Hospedagem</a></li>' +
             '        <li><a href="#">SEO</a></li>' +
             '        <li><a href="#">Sistemas</a></li>' +
             '      </ul>' +
             '    </li>' +
             '    <li><a href="#">Contato</a></li>' +
             '  </ul>' +
             '</body>' +
             '</html>';
end;
 
 
 
How do I identify which option was selected in the code
 
 

How do I identify which option was selected in the code

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...