Jump to content
Fórum Script Brasil
  • 0

Url No Webbrowser


Guest - Carla -

Question

Guest - Carla -

Pessoal chamo uma página html que fiz no meu programa delphi. Acontece que tenho que colocar o endereço completo da pasta:

frmAjuda.WebBrowser1.Navigate('c:/projetos/Carla/Terraco/ajuda6.htm');

Gostaria de fazer algo do tipo:

frmAjuda.WebBrowser1.Navigate('./ajuda6.htm');

Assim, independente da pasta do usuário a página aparece, senão teria que alterar toda vez que estivesse em uma pasta diferente. Mas isso não funciona. Essa página está na mesma pasta do programa, como faço então?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Um jeito facil e rápido... mas voce também pode dar uma olhada nas funções

ExtractFileDir()

ExtractFileDrive()

ExtracFileExt()

ExtractFileName()

ExtractFilePath()

ExtractRelativePath()

ExtractShortPathName()

e montar algo que leia o PATH que você esta e configure uma string com o caminho...

// abaixo um exemplo simples e pratico (meio gambiara mas bem pratico... )

var

str_path : string;

begin

memo1.lines.loadfromfile('path.txt');

str_path := memo1.lines.text;

frmAjuda.WebBrowser1.Navigate(str_path+'ajuda6.htm');

end;

--------------------------------

conteudo do arquivo path.txt

c:/projetos/Carla/Terraco/

--------------------------------

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
Answer this question...

×   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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.9k
×
×
  • Create New...