|
-
Apr 25th, 2002, 11:33 AM
#1
Thread Starter
Member
transparency, BitBit() and number sorting
1. Transparency
Will a gif with a transparent background still have a transparent background on a form? If not then how can i get transparent backgrounds?
2. BitBit()
Unless it is very complicated and hard to explain could you show how to use BitBit() for animation?
3. number sorting
i have this code:
VB Code:
Dim dblAns As String
Dim intDig As Integer
Dim dbl As String
dblAns = "2856457889"
For intNum = 1 To Len(dblAns)
intDig = Mid(dblAns, intNum, 1)
If (intDig Mod 2) = 0 Then
If Len(dbl) Then
dbl = dbl & ", " & Format(intDig)
Else
dbl = Format(intDig)
End If
Else
dbl = dbl & Format(intDig)
End If
Next intNum
MsgBox "The numbers are:" & dbl
it splits the number 2856457889 into 2, 85, 6, 457, 8, 89
even numbers start a new number
rather than putting the split numbers into a string and displaying it in a msgbox i want it to load a new txtbox eg. txtNum fo each number.
thnx 4 help and i hope this post is more successful than last time
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|