Jump to content

mjcramos

uniGUI Subscriber
  • Posts

    40
  • Joined

  • Last visited

  • Days Won

    1

mjcramos last won the day on June 28 2017

mjcramos had the most liked content!

Recent Profile Visitors

845 profile views

mjcramos's Achievements

Newbie

Newbie (1/4)

1

Reputation

  1. I Had the same problem I was able to use that way UnimSelect.Items.Add('<empty>'); UnimSelect.Items.Add('1'); UnimSelect.Items.Add('2'); UnimSelect.Items.Add('3'); if UnimSelect.ItemIndex > 0 then "Not is Empty"
  2. Do you have a launch forecast?
  3. Hi, I'm building a graph using Tunichart, but I can not get the legend to show all the items, I tried to reduce the font size, but it's still not right,
  4. procedure TfNFCe.GridDeleteRow(RowNumber: Integer; Grid: TUniStringGrid); var i: Integer; begin Grid.Row := RowNumber; if (Grid.Row = Grid.RowCount - 1) then Grid.RowCount := Grid.RowCount - 1 else begin for i := RowNumber to Grid.RowCount - 1 do Grid.Rows := Grid.Rows[i + 1]; Grid.RowCount := Grid.RowCount - 1; end; end; I have a function to delete the line from a stringgrid vcl, how could I use it in the stringgrid of unigui? There is no rows property Grid.Rows := Grid.Rows[i + 1]; ---> not working
  5. Hello, I was trying to do this implementation here but with the mobile device it is not going at all, why when I test on the computer it works normal, and when it goes to the cell phone, it does not work?
  6. Hi, I implemented this tip in a UnimDBListGrid it worked nice, but when I change the screen the button keeps showing up, is there any way to make the button disappear via code?
  7. I tested in Internet Explorer and chrome and gave the same thing, unigui works this way?
  8. <div class="checkboxes"> <label for="Lembra"><input id="Lembrar_id" name="Lembrar" type="checkbox" /> <span>Lembrar-me</span></label> </div> Yes, the code is the same as above, there when you inform user password and branch, and confirms after it simulate the login it gives a showmessage and indicates whether it received the property or not, always returns false, regardless of the checkbox marking
×
×
  • Create New...