(Link to AcmlmWiki) Offline: thank ||bass
Register | Login
Views: 13,040,846
Main | Memberlist | Active users | Calendar | Chat | Online users
Ranks | FAQ | ACS | Stats | Color Chart | Search | Photo album
09-24-24 07:14 AM
Acmlm's Board - I3 Archive - - Posts by BriGuy92
Pages: 1 2 3
User Post
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-19-06 01:53 PM, in Let's Rant about Visual Basic! Link
I'm sitting here in my VB class, and can't help but think: "This is getting pretty boring" Have thoughts on VB that you want to share with the world? This is the place to do it. Have fun!!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-20-06 01:05 PM, in Let's Rant about Visual Basic! Link
Yes, well it is a start, right?
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-21-06 01:15 PM, in Who wants to be a millionaire multiplayer Link
The answer is...

A: Unlock the cannon outside the castle!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-21-06 01:25 PM, in Favorite Nintendo Series Link
Yup, the fight is on! Vote for your favorite series and see what other people like as well!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-25-06 04:02 PM, in Sonic Robo Blast 2 "Team Match" Tourney Link
What was that supposed to mean?
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-25-06 04:28 PM, in Merry Christmas! Link
Let's see...

- Yoshi's Island DS
- Tetris DS
- DS starter kit
- 2 pairs of blue jeans
- and lots more to come!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-31-06 12:05 AM, in Merry Christmas! Link
More stuff!!

-Zelda TP (no wii yet)
-A truckload of clothing (guess what my mom told everyone to get me)
-$150 worth of Target and Wal-Mart gift cards (fun fun fun!)
-A new, not-in-the-process-of-falling-apart, wallet
-CANDY!!!!!
-And other great stocking-stuffer-type stuff

Merry Christmas, All!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-31-06 04:01 PM, in Uber 1337 pixelling skills... Link
Originally posted by Koops (PM: TTYD)
"....................................................................
....................................................................
....................................................................
....................................................................
...................................................................."



And I totally agree.
Wow.
Wow.
Oh, and, by the way,
Wow.

That's actually possible?
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 12-31-06 04:31 PM, in Here comes 2007... Link
Not much, really. I'll just probably hang out all day, visit family, maybe. Acmlm, Sonic Robo Blast 2, Luigi Vs. Mario (Way to go Dahrk Daiz!!) and other stuff will take up my day. Yeah, I'm a computerholic, I know...
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-04-07 06:07 PM, in Let's Rant about Visual Basic! Link
Originally posted by Sukasa
higher or lower? Dude, ouch. My class got to stuff that was fun and there was always room for modifying the assignment. Some of the assignments included a Blackjack game, and a program for Klunker Kar Kompany, and other thigns along those lines. Plus, if we wanted to expand upon/change part of oru assignments, we were allowed to as long as we larned the focal lessons of the programs.
Wow. I want your VB teacher. Ours class is so boring! We did a number guessing game in Qbasic (blah) but nothing of the sort in VB. All we ever do is make boring, business-type apps. You know, Inventory reports, Order forms, and the like. Some of it is kinda interesting, but, just like Dobe said,
Originally posted by Ogama Dobe
VB blows. We signed up for this class in the hopes that we would learn how to make games. Yet we have had no promises. No nothing. We did nothing of the sort in QB either.



(edited by BriGuy92 on 01-04-07 12:23 PM)
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-04-07 06:32 PM, in Animal Crossing: Wild World Link
Yeah, Why don't you go gather some friend codes?
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-04-07 06:48 PM, in Let's Rant about Visual Basic! Link
Originally posted by My VB code
' Math Application

Option Explicit
'
'Random numbers used throughout the code
Dim num1 As Integer, num2 As Integer



Private Sub chkDisplay_Click()
'Hide or display summary info

If chkDisplay.Value = vbChecked Then
fraInfo.Visible = True
Else
fraInfo.Visible = False
End Sub

Private Sub cmdExit_Click()

End ' Exit the application

End Sub

Private Sub cmdVerify_Click()
'Verify answer and take appropriate actions

Dim userAnswer As Integer, correctAnswer As Integer
Static numCorrect As Integer, numIncorrect As Integer
Dim reply As String
Const OPTIONS As Integer = vbOKOnly + vbInformation + vbDefaultButton1 _
+ vbApplicationModal


'Calculate correct answer
If optAdd.Value = True Then
correctAnswer = num1 + num2
Else
correctAnswer = num1 - num2
End If

'Compare user's answer to correct answer
userAnswer = Val(txtAnswer.Text)

If userAnswer = correctAnswer Then

'Display or remove smiley
imgIcon.Picture = imgHappy.Picture
'Display new problem or prompt with message
txtAnswer.Text = ""
Call RandomNumbers
'Increment counter
numCorrect = numCorrect + 1
Else
'Incorrect answer, remove happy face, increment counter, prompt for re-attempt
imgIcon.Picture = LoadPicture()
numIncorrect = numIncorrect + 1
reply = MsgBox("Try Again", OPTIONS, "Wrong Answer")

'Highlight answer so user doesn't have to backspace
txtAnswer.SelStart = 0
txtAnswer.SelLength = Len(txtAnswer.Text)
End If

'Move couunters into labels and cursor to answerbox
txtAnswer.SetFocus
lblCorrect.Caption = numCorrect
lblIncorrect.Caption = numIncorrect

End Sub

Private Sub Form_Load()
'Set Default option buttons when loading the form

'set level 1 and addition to default
optLevel1.Value = True
optAdd.Value = True
'this will trigger their click events

End Sub



Private Sub optAdd_Click()

Call RandomNumbers

imgOperator.Picture = imgPlus

End Sub

Private Sub optLevel1_Click()

Call RandomNumbers

End Sub

Private Sub optLevel2_Click()


Call RandomNumbers 'Passes control to sub-procedure
'Returns to statment after call

End Sub

Private Sub RandomNumbers()
'Generate and display two random numbers

Dim temp As Integer 'Used for swapping num1 with num2

Randomize

'Range of numbers based on level of student
If optLevel1.Value = True Then
num1 = Int(10 * Rnd) + 1
num2 = Int(10 * Rnd) + 1
Else 'Level 2 MUST have been selected
num1 = Int(91 * Rnd) + 10
num2 = Int(91 * Rnd) + 10
End If

'Swap numbers for subtraction
If optSub.Value = True And num1 < num2 Then
temp = num1
num1 = num2
num2 = temp
End If
'Move values into appropriate labels
lblNum1.Caption = num1
lblNum2.Caption = num2

End Sub

Private Sub optSub_Click()
Call RandomNumbers

imgOperator.Picture = imgMinus
End Sub

Private Sub txtAnswer_GotFocus()
txtAnswer.SelStart = 0
txtAnswer.SelLength = Len(txtAnswer.Text)
End Sub


Yeah. If you know what this means, you know how stupid this class is.

Admins, if you don't like this huge post, I'm sorry.


(edited by BriGuy92 on 01-05-07 11:43 AM)
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-05-07 06:27 PM, in Let' Rant About QBasic!!!! Link
Yes, Yes, I know, this theme is getting old. But since I made one for VB, I thought that I might as well make one for QB as well! Thoughts, peeves, anything about QB, you can post it here!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-11-07 06:47 PM, in Kirby vs. Shy-Guy Link
Well... I just read all of them, and I'm aching for more. Oh Yeah!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-14-07 04:39 PM, in Approval request Link
I'm just starting to get into rom hacking, and would like approval in order to ask for help, show screenshots, etc.
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-14-07 04:46 PM, in Let's Rant About Briguy92! Link
Originally posted by Guy Perfect (Let's Rant About QBasic)
This thread is uncalled for. It won't be long before a "Let's Rant About BriGuy92" thread surfaces.

Well, he asked for it, so here it is!
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-14-07 05:02 PM, in Why can't I put my computer into standby (STR)??? Link
For Whatever reason, my computer can't go into standby. The button usually labeled "Standby" (on the WinXP "Shut Down" menu) Says "Hibernate" instead. NOt really that important, but puzzling. Anyone know anything?
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-14-07 05:20 PM, in Why can't I put my computer into standby (STR)??? Link
What?
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-14-07 11:49 PM, in Why can't I put my computer into standby (STR)??? Link
Originally posted by BooUrns
Out of curiosity, can you choose Standby from the Shut Down menu in the Task Manager?

Nope. It's Grayed out.
BriGuy92

Red Goomba








Since: 09-10-06
From: That dot on the globe

Last post: 6449 days
Last view: 6432 days
Posted on 01-17-07 05:46 PM, in Let's Rant about Visual Basic! Link
Wow. How many really cool teachers do you have?
Pages: 1 2 3
Acmlm's Board - I3 Archive - - Posts by BriGuy92


ABII

Acmlmboard 1.92.999, 9/17/2006
©2000-2006 Acmlm, Emuz, Blades, Xkeeper

Page rendered in 0.032 seconds; used 431.26 kB (max 545.76 kB)