Welcome, Guest
Username: Password: Remember me
CodeTyphon Android Development, LAMW, etc, discussions and problems
  • Page:
  • 1

TOPIC:

Problem with Tablayout 3 days 6 hours ago #18784

  • Narciso Bortoli
  • Narciso Bortoli's Avatar Topic Author
  • Away
  • New Member
  • New Member
  • Posts: 10
  • Thank you received: 0
in this procedure S (VAriable) resul alway '' (Nullstring) , WHY?
function TAndroidModule1.TabExists(itemTitle: string): Boolean;
var
  i: Integer;
  s: string;
begin
  Result := False;
  for i := 0 to TabLayout1.GetTabCount() - 1 do
  begin
    s:= TabLayout1.GetTitle(i);
    showmessage(s+' = '+ itemtitle);
    if s = itemTitle then
    begin
      Result := True;
      Break;
    end;
  end;       

Please Log in or Create an account to join the conversation.

Problem with Tablayout 3 days 3 hours ago #18785

  • Matis A.
  • Matis A.'s Avatar
  • Away
  • Moderator
  • Moderator
  • Posts: 1148
  • Thank you received: 174
My suggestion is, post to  LAMW GIT page
for more help.
We just hosting LAMW to CT, with proper MODs... 
 
PilotLogic Core Programmer

Please Log in or Create an account to join the conversation.

Last edit: by Matis A..
  • Page:
  • 1