|
Thread: The
-
Apr 4th, 2010, 09:32 AM
#1
Thread Starter
New Member
-
Apr 4th, 2010, 10:08 AM
#2
Re: New Post test
Welcome to VBForums 
Your original post worked, it just wasn't shown immediately because our "new member" filter decided that it needed to be manually approved. You can find it here: http://www.vbforums.com/showthread.php?t=609980
Your copy of it was put on hold by the filter too, but I have deleted it because it was a duplicate.
-
Apr 4th, 2010, 11:48 AM
#3
Thread Starter
New Member
Re: New Post test
Thanks. I was trying to figure out what was going on with my posts.
-
Apr 6th, 2010, 11:31 AM
#4
Fanatic Member
Re: New Post test
[code]
debug.print code
/[code]
-
Apr 6th, 2010, 11:32 AM
#5
Re: New Post test
 Originally Posted by sessi4ml
[code]
debug.print code
/[code]
The tag syntax is:
[code] code here [/code]
Alternatively, just select the code and press the "Code" button above the reply area.
-
Apr 6th, 2010, 11:32 AM
#6
Fanatic Member
Re: New Post test
Code:
<script type="text/javascript">
<!--
alert("Hello world!");
//-->
</script>
-
Apr 6th, 2010, 11:33 AM
#7
Fanatic Member
Re: New Post test
[code] debug.print code /[code]
-
Apr 6th, 2010, 11:34 AM
#8
Fanatic Member
Re: New Post test
[code]debug.print "test"/[code]
-
Apr 6th, 2010, 11:35 AM
#9
Fanatic Member
Re: New Post test
[code]
debug.print code
/[code]
-
Apr 6th, 2010, 11:36 AM
#10
Fanatic Member
Re: New Post test
lol, I am not seeing something
-
Apr 6th, 2010, 11:36 AM
#11
Fanatic Member
-
Apr 6th, 2010, 11:37 AM
#12
Fanatic Member
-
Apr 6th, 2010, 11:44 AM
#13
Fanatic Member
Re: New Post test
Code:
Private Sub Command2_Click()
Dim UPC(12) As Integer: Dim intOdd As Integer: Dim intEven As Integer
Dim i As Integer: Dim intTotal As Integer
' Check Scan length
If Len(Text1.Text) <> 12 Then Text2.Text = "Bad Scan, beep": Exit Sub
For a = 1 To 12
UPC(a) = Mid(Text1.Text, a, 1)
Next a
-
Apr 6th, 2010, 11:47 AM
#14
Fanatic Member
Re: New Post test
[CODE ] 'Add together the value of all of the digits in odd positions (digits 1, 3, 5, 7, 9 and 11
' Multiply that number by 3
intOdd = (UPC(1) + UPC(3) + UPC(5) + UPC(7) + UPC(9) + UPC(11)) * 3
[/CODE ]
-
Apr 6th, 2010, 11:47 AM
#15
Fanatic Member
Re: New Post test
Code:
'Add together the value of all of the digits in odd positions (digits 1, 3, 5, 7, 9 and 11
' Multiply that number by 3
intOdd = (UPC(1) + UPC(3) + UPC(5) + UPC(7) + UPC(9) + UPC(11)) * 3
-
Apr 6th, 2010, 12:32 PM
#16
New Member
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
|