Greetings!
I've posted a few bits of code recently and I've noticed that these forums will maintain most of the formatted code; but, removes the blank lines. Please, forgive my short test here or feel free to post suggestions.
------------------
Don Ewald
mailto:[email protected][email protected]</A>
I've posted a few bits of code recently and I've noticed that these forums will maintain most of the formatted code; but, removes the blank lines. Please, forgive my short test here or feel free to post suggestions.
Code:
FUNCTION Date2Dos(BYVAL TempDate AS STRING) PUBLIC AS WORD 'HTML tag on next line <BR> DIM Month AS INTEGER DIM Day AS INTEGER DIM Year AS INTEGER 'Just a few spaces on next line SplitDate TempDate$, Month, Day, Year 'We'll try two empty lines FUNCTION = ((Year - 1980) * 512) + (Month * 32) + Day 'A different HTML tag <P> END FUNCTION
------------------
Don Ewald
mailto:[email protected][email protected]</A>
Comment