Search found 3 matches
- Tue Aug 09, 2011 9:59 am
- Forum: General category
- Topic: command SWAP bug
- Replies: 2
- Views: 5132
command SWAP bug
`swap_test by PaPidim word1 as string,word2 as stringdim i1 as integer,i2 as integerword1="first"word2="second"i1=1i2=2showmessage word1+chr$(9)+word2+chr$(9)+str$(i1)+chr$(9)+str$(i2)swap word1, word2swap i1, i2showmessage word1+chr$(9)+word2+chr$(9)+str$(i1)+chr$(9)+str$(i2)`Th...
- Wed Jan 02, 2008 8:22 am
- Forum: General category
- Topic: What`s wrong with this code?
- Replies: 1
- Views: 6410
What`s wrong with this code?
It`s all build in, you don`t need the API:dim colordlg as colordialog`-- 16 of these custom colors, whatever you want... colordlg.CustomColor(0)="FF0000" colordlg.CustomColor(1)="00FF00" colordlg.CustomColor(2)="0000FF" colordlg.CustomColor(3)="FF00FF&q...
- Fri Nov 02, 2007 2:31 pm
- Forum: examples
- Topic: My problem with resource file(s)
- Replies: 2
- Views: 4935
My problem with resource file(s)
I tried your example and found out: you did too much !It`s enough to typeresource fb3face as start.bmpfb3.bmpresource(fb3face) resource fb4face as exit.bmpfb4.bmpresource(fb4face) to get the correct result.Greetings fr...