..
-
- Enthusiast
- Posts: 103
- Joined: Fri Apr 25, 2003 4:00 pm
- Location: France
Great idea !
Hello, great idea !
But it could be even better to deliver the code to allow one to explore and learn from it !
Anyway, thank's a lot.
Dominique
But it could be even better to deliver the code to allow one to explore and learn from it !
Anyway, thank's a lot.
Dominique
Dominique
Windows 10 64bits. Pure basic 32bits
Windows 10 64bits. Pure basic 32bits
nice!
... hey nederlander, welkom
... hey nederlander, welkom

( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
Re: Great idea !
removed
Last edited by Rolands on Fri Sep 02, 2005 9:05 pm, edited 1 time in total.
very nice 
it would be cool if you could make it load the worms from a file, instead of
directly from an array.. [for internet auto update]
oh btw a little notice of your programming style
does exactly the same as this:
but last one is smaller 
well just a little friendly note!
again: great work.
edit: notice that the messagerequester code is wordwrapped!

it would be cool if you could make it load the worms from a file, instead of
directly from an array.. [for internet auto update]
oh btw a little notice of your programming style

Code: Select all
Select OSVersion()
Case #PB_OS_Windows_95
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Case #PB_OS_Windows_98
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Case #PB_OS_Windows_ME
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Case #PB_OS_Windows_NT3_51
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Case #PB_OS_Windows_NT_4
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Case #PB_OS_Windows_2000
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Case #PB_OS_Windows_Future
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
EndSelect
Code: Select all
If OSVersion()=#PB_OS_Windows_XP
;do nothing
Else
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
EndIf

well just a little friendly note!
again: great work.
edit: notice that the messagerequester code is wordwrapped!
Code: Select all
If OSVersion()<>#PB_OS_Windows_XP
MessageRequester("Windows version conflict", "Scanner is designed for Windows XP only.",#MB_ICONWARNING)
End
Endif
