J jerryb New Member Licensed User Nov 27, 2010 #1 I'd like to be able to do... 'bval is boolean bval = (bval = false) ... as a quick way of flipping between true and false. It seems to work with other Basic implementations but not with Basic4ppc.
I'd like to be able to do... 'bval is boolean bval = (bval = false) ... as a quick way of flipping between true and false. It seems to work with other Basic implementations but not with Basic4ppc.
klaus Expert Licensed User Longtime User Nov 27, 2010 #2 This looks very strange to me. bval = (bval = false) You should use bval = Not(bval) Best regards.
J jerryb New Member Licensed User Nov 27, 2010 #3 That never occcured to me! I'd always used bval=bval=true in VB without thinking about it. Your method is elegant and simple and I'm ashamed it never occured to me. Delete one wishlist request! Regards and thanks.
That never occcured to me! I'd always used bval=bval=true in VB without thinking about it. Your method is elegant and simple and I'm ashamed it never occured to me. Delete one wishlist request! Regards and thanks.