Gostaria de saber como colocar um icone no executavel.
Obrigado.
Icone no executável
Re: Icone no executável
In your .RC file
In your PRG you don't have to define anything extra to define Application ICON.
In your PRG
Regards
Anser
Code: Select all
1 ICON DISCARDABLE "Images/MyAppIcon.ico"
In your PRG
Code: Select all
DEFINE WINDOW oWnd TITLE "My Test App"
@10,10 say "Test"
ACTIVATE WINDOW oWnd
Anser
Re: Icone no executável
Eu utilizo o Pelles C, mas não encontrei nenhuma opção para definir o Icone no executável.
Tem alguma linha de comando no programa? tentei a que foi mencionada, mas não deu certo.
Obrigado.
Tem alguma linha de comando no programa? tentei a que foi mencionada, mas não deu certo.
Obrigado.
Re: Icone no executável
Just add the the line to your .RC file using any text editorEu utilizo o Pelles C, mas não encontrei nenhuma opção para definir o Icone no executável.
Code: Select all
1 ICON DISCARDABLE "Images/MyAppIcon.ico"
How did you test your exe ? On the emulator or on the device ?Tem alguma linha de comando no programa? tentei a que foi mencionada, mas não deu certo.
You may have to close the emulator and restart the emulator, to reflect the change in the app icon. I suggest you to reboot/refresh the device too to see the changes.
Regards
Anser
Re: Icone no executável
Ok. Resolvido. Obrigado!