Author Topic: Problem to pass variables in a sub  (Read 3883 times)

0 Members and 1 Guest are viewing this topic.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Problem to pass variables in a sub
« Reply #15 on: May 16, 2021, 11:51:06 am »
Not that it directly applies to your problem, but variables containing colors
should be defined _UNSIGNED LONG.

Yes that's a ~& suffix and the ~ is found (on USA Keyboard) in top left row, shifted char next to 1! key.

white~& = &HFFFFFFFF
red~& = &HFFFF0000
black~& = &HFF000000   ' the first 2 F's are for transparency FF = none so that's solid Black
« Last Edit: May 16, 2021, 12:02:03 pm by bplus »