Author Topic: Trouble with ico files  (Read 3087 times)

0 Members and 1 Guest are viewing this topic.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Trouble with ico files
« on: March 01, 2020, 05:33:48 pm »
Is it just my system, why are ico files so hard for QB64 to find?

FellippeHeitor

  • Guest
Re: Trouble with ico files
« Reply #1 on: March 01, 2020, 05:35:31 pm »
QB64 looks for the icon in its own folder. If the icon is in the source file's folder, use a relative path, as in $EXEICON:'./iconfile.ico'

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Trouble with ico files
« Reply #2 on: March 01, 2020, 05:46:47 pm »
Thanks Fellippe, now for the rest of the files... :P

FellippeHeitor

  • Guest
Re: Trouble with ico files
« Reply #3 on: March 01, 2020, 05:53:34 pm »
  [ You are not allowed to view this attachment ]  

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Trouble with ico files
« Reply #4 on: March 01, 2020, 07:11:34 pm »
Got that but not this:

line 254 file missing but that's not even in the folder, so I guess I was supposed to download both sets from
https://www.qb64.org/forum/index.php?topic=2254.0

not just the source.

Offline STxAxTIC

  • Library Staff
  • Forum Resident
  • Posts: 1091
  • he lives
    • View Profile
Re: Trouble with ico files
« Reply #5 on: March 01, 2020, 08:36:51 pm »
Oh right - about this game:

The two zip files were way too big for my mere hotspot connection to upload. Anyone with library privileges care to append

https://www.qb64.org/forum/index.php?topic=2271.0

with the files found at

https://www.qb64.org/forum/index.php?topic=2254.0

That'd be grreeeeeeeeeat. Thanks.
You're not done when it works, you're done when it's right.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Trouble with ico files
« Reply #6 on: March 01, 2020, 10:14:36 pm »
Oh right - about this game:

The two zip files were way too big for my mere hotspot connection to upload. Anyone with library privileges care to append

https://www.qb64.org/forum/index.php?topic=2271.0

with the files found at

https://www.qb64.org/forum/index.php?topic=2254.0

That'd be grreeeeeeeeeat. Thanks.

Well even with my aching back I think I can tell I have been given a task :) OK

But the 52.9 MB file with the exe for Windows is too big for samples section
Quote
Max characters: 2097152;
« Last Edit: March 01, 2020, 10:53:33 pm by bplus »

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Trouble with ico files
« Reply #7 on: March 01, 2020, 11:57:10 pm »
it's back...

Opps sorry same trick with ./ works again. It just doesn't make sense to me why I have to do this with $EXEICON:

The file is right there with the rest of the files that can be picked up without the ./

Oh wait, it's a meta command and we have to tell the compiler where the file is, the normal files are found when running the exe after compiling.

But then why do the authors of this code not have to put ./ into their code?
« Last Edit: March 02, 2020, 12:27:51 am by bplus »