Results 1 to 18 of 18

Thread: compile error end of statement

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    compile error end of statement

    i have the following code and it keeps giving me a compile error

    lblQuestionBox.Caption = "Who comes on christams day?"

    cmdAnswer1.Caption = " Santa flaws "
    cmdAnswer2.Caption = " Santa Ben "
    cmdAnswer3.Caption = " Santa Jonas "
    cmdAnswer4.Caption = " Santa claus "

    dblAnswerReal2 = "Santa claus"

    please help
    Last edited by Hassan!; Dec 22nd, 2009 at 01:53 PM.

  2. #2

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    after adding those quotation marks after dblanswereal2 it gives me a type mismatch

  3. #3
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: compile error end of statement

    Thread moved from 'General Developer' to 'VB6 and Earlier' forum

    What data type is dblAnswerReal2 ? (eg: Integer, Double, String, ...)

    The value you are trying to put into it is a String, so the error is expected unless the data type is String.



    I recommend you read (and bookmark/save) the article What does this error mean, and how do I fix it? from our Classic VB FAQs (in the FAQ forum), as it explains various common errors - including this one.

  4. #4

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    thanks alot, i have some other questions too it would be great if you could help me, do you have msn or something?

  5. #5
    PowerPoster
    Join Date
    May 2006
    Location
    Location, location!
    Posts
    2,673

    Re: compile error end of statement

    Also, if you changed the answer options to an array, cmdAnswer(1) to cmdAnswer(4), and then set dblAnswerReal2 (or whatever you want to name it, I'd personally stick with "dblCorrectAnswer" or something easily recogniseable) to 4 or whichever of the answers is right (I assume you might have other questions with a different answer) you'd probably find the code to be a lot more flexible and modifiable in future...

    ...for instance, you could:
    * Jumble up the possible answers so the right one isn't always in the same place
    * Set up the 4 lines which fill cmdAnswer1 to cmdAnswer4 into only 3 lines using a loop (if you stored the questions in an array too)
    * Have more than 4 possible answers but only display the correct one and 3 possible wrong answers (adds to the replay value)

    And I am sure there's other stuff that could be done...and of course this post is only useful if you're actually doing more than one question, so if it's just the one it's probably better to ignore me :-)
    Well, everyone else has been doing it :-)
    Loading a file into memory QUICKLY - Using SendKeys - HyperLabel - A highly customisable label replacement - Using resource files/DLLs with VB - Adding GZip to your projects
    Expect more to come in future
    If I have helped you, RATE ME! :-)

    I love helping noobs with their VB problems (probably because, as an amateur programmer, I am only slightly better at VB than them :-)) but if you SERIOUSLY want to get help for free from a community such as VBForums, you have to first have a grounding (basic knowledge) in VB6, otherwise you're way too much work to help...You've got to give a little if you want to get help from us, in other words!

    And we DON'T do your homework. If your tutor doesn't teach you enough to help you make the project without his or her help, FIND A BETTER TUTOR or try reading books on programming! We are happy to help with minor things regarding the project, but you have to understand the rest of it if you want our help to be useful.

  6. #6

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    i am doing like over 50 questions for my exams but just for test run over the holidays iam trying to make a game with just 4 questions. I changed the things to string and they work but now the stupid thing is the answers are getting messed up for question number 2, 3 and 4. Just to let you know i have been only programming for like 3 months and iam not used to high level vs terminology lol, can any of you help me out with the problems iam having.

    problems:

    - answers not working
    - stupid ways of making the code (using alot of ors in 1 algorithm)
    - and any others mistakes you find

    vb Code:
    1. Option Explicit
    2.                     'Hassan Waheed
    3.                     ' exam
    4.     Private strAnswerReal1 As String
    5.     Private strAnswerReal2 As String
    6.     Private strAnswerReal3 As String
    7.     Private strAnswerReal4 As String
    8.     Private dblMoney As Double
    9.     Private dblQuestionAccumaltor As Double
    10.  
    11. Private Sub cmdInstructions_Click()
    12.     MsgBox "Hello, Player. Welcome to the who wants to be a" _
    13.     & " Hassanillionaire. You are gonna start off with $500 and" _
    14.     & " for every question you get right you gain $2000 but if" _
    15.     & " you get 1 question wrong then you lose $1000." _
    16.     & " Your goal is to win as much cash as you can."
    17. End Sub
    18.  
    19. Private Sub cmdStart_Click()
    20.     dblMoney = 500
    21.    
    22.     dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    23.     MsgBox " Get ready to wrestle your mind for a Million dollars"
    24.    
    25.     If dblQuestionAccumaltor = 1 Then
    26.         Call Question1
    27.     End If
    28.  
    29.    
    30. End Sub
    31.  
    32.  
    33. Private Sub cmdAnswer1_Click()
    34.     If cmdAnswer1.Caption = strAnswerReal1 Or cmdAnswer1.Caption = strAnswerReal2 _
    35.      Or cmdAnswer1.Caption = strAnswerReal3 Or cmdAnswer1.Caption = strAnswerReal4 Then
    36.         MsgBox " you have won 2000 dollars"
    37.         dblMoney = dblMoney + 2000
    38.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    39.         lblQuestionBox.Caption = ""
    40.         cmdAnswer1.Caption = ""
    41.         cmdAnswer2.Caption = ""
    42.         cmdAnswer3.Caption = ""
    43.         cmdAnswer4.Caption = ""
    44.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    45.     Else
    46.         MsgBox " Sorry, you have lost 500 dollars"
    47.         dblMoney = dblMoney - 1000
    48.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    49.         lblQuestionBox.Caption = ""
    50.         cmdAnswer1.Caption = ""
    51.         cmdAnswer2.Caption = ""
    52.         cmdAnswer3.Caption = ""
    53.         cmdAnswer4.Caption = ""
    54.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    55.     End If
    56.    
    57.    
    58.     If dblQuestionAccumaltor = 2 Then
    59.         Call Question2
    60.     End If
    61.    
    62.     If dblQuestionAccumaltor = 3 Then
    63.         Call Question3
    64.     End If
    65.    
    66.     If dblQuestionAccumaltor = 4 Then
    67.         Call Question4
    68.     End If
    69.    
    70. End Sub
    71.  
    72. Private Sub cmdAnswer2_Click()
    73.     If cmdAnswer2.Caption = strAnswerReal1 Or cmdAnswer2.Caption = strAnswerReal2 _
    74.      Or cmdAnswer2.Caption = strAnswerReal3 Or cmdAnswer2.Caption = strAnswerReal4 Then
    75.         MsgBox " you have won 2000 dollars"
    76.         dblMoney = dblMoney + 2000
    77.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    78.         lblQuestionBox.Caption = ""
    79.         cmdAnswer1.Caption = ""
    80.         cmdAnswer2.Caption = ""
    81.         cmdAnswer3.Caption = ""
    82.         cmdAnswer4.Caption = ""
    83.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    84.     Else
    85.         MsgBox " Sorry, you have lost 500 dollars"
    86.         dblMoney = dblMoney - 1000
    87.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    88.         lblQuestionBox.Caption = ""
    89.         cmdAnswer1.Caption = ""
    90.         cmdAnswer2.Caption = ""
    91.         cmdAnswer3.Caption = ""
    92.         cmdAnswer4.Caption = ""
    93.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    94.     End If
    95.    
    96.       If dblQuestionAccumaltor = 2 Then
    97.         Call Question2
    98.     End If
    99.    
    100.     If dblQuestionAccumaltor = 3 Then
    101.         Call Question3
    102.     End If
    103.    
    104.     If dblQuestionAccumaltor = 4 Then
    105.         Call Question4
    106.     End If
    107.    
    108. End Sub
    109.  
    110. Private Sub cmdAnswer3_Click()
    111.     If cmdAnswer3.Caption = strAnswerReal1 Or cmdAnswer3.Caption = strAnswerReal2 _
    112.      Or cmdAnswer3.Caption = strAnswerReal3 Or cmdAnswer3.Caption = strAnswerReal4 Then
    113.         MsgBox " you have won 2000 dollars"
    114.         dblMoney = dblMoney + 2000
    115.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    116.         lblQuestionBox.Caption = ""
    117.         cmdAnswer1.Caption = ""
    118.         cmdAnswer2.Caption = ""
    119.         cmdAnswer3.Caption = ""
    120.         cmdAnswer4.Caption = ""
    121.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    122.     Else
    123.         MsgBox " Sorry, you have lost 500 dollars"
    124.         dblMoney = dblMoney - 1000
    125.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    126.         lblQuestionBox.Caption = ""
    127.         cmdAnswer1.Caption = ""
    128.         cmdAnswer2.Caption = ""
    129.         cmdAnswer3.Caption = ""
    130.         cmdAnswer4.Caption = ""
    131.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    132.        
    133.     End If
    134.          
    135.     If dblQuestionAccumaltor = 2 Then
    136.         Call Question2
    137.     End If
    138.    
    139.     If dblQuestionAccumaltor = 3 Then
    140.         Call Question3
    141.     End If
    142.    
    143.     If dblQuestionAccumaltor = 4 Then
    144.         Call Question4
    145.     End If
    146.        
    147.    
    148. End Sub
    149.  
    150. Private Sub cmdAnswer4_Click()
    151.     If cmdAnswer4.Caption = strAnswerReal1 Or cmdAnswer4.Caption = strAnswerReal2 _
    152.      Or cmdAnswer4.Caption = strAnswerReal3 Or cmdAnswer4.Caption = strAnswerReal4 Then
    153.         MsgBox " you have won 2000 dollars"
    154.         dblMoney = dblMoney + 2000
    155.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    156.         lblQuestionBox.Caption = ""
    157.         cmdAnswer1.Caption = ""
    158.         cmdAnswer2.Caption = ""
    159.         cmdAnswer3.Caption = ""
    160.         cmdAnswer4.Caption = ""
    161.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    162.     Else
    163.         MsgBox " Sorry, you have lost 500 dollars"
    164.         dblMoney = dblMoney - 1000
    165.         lblYourMoney.Caption = "You Have" & Space(1) & dblMoney
    166.         lblQuestionBox.Caption = ""
    167.         cmdAnswer1.Caption = ""
    168.         cmdAnswer2.Caption = ""
    169.         cmdAnswer3.Caption = ""
    170.         cmdAnswer4.Caption = ""
    171.         dblQuestionAccumaltor = dblQuestionAccumaltor + 1
    172.     End If
    173.    
    174.     If dblQuestionAccumaltor = 2 Then
    175.         Call Question2
    176.     End If
    177.    
    178.     If dblQuestionAccumaltor = 3 Then
    179.         Call Question3
    180.     End If
    181.    
    182.     If dblQuestionAccumaltor = 4 Then
    183.         Call Question4
    184.     End If
    185.    
    186. End Sub
    187.  
    188. Sub Question1()
    189.     lblQuestionBox.Caption = "When was pakistan first made?"
    190.    
    191.     cmdAnswer1.Caption = " 1947 "
    192.     cmdAnswer2.Caption = " 1961 "
    193.     cmdAnswer3.Caption = " 1945 "
    194.     cmdAnswer4.Caption = " 1955 "
    195.    
    196.    strAnswerReal1 = "1947"
    197. End Sub
    198.  
    199. Sub Question2()
    200.     lblQuestionBox.Caption = "Who comes on christams day?"
    201.    
    202.     cmdAnswer1.Caption = " Santa flaws "
    203.     cmdAnswer2.Caption = " Santa Ben "
    204.     cmdAnswer3.Caption = " Santa Jonas "
    205.     cmdAnswer4.Caption = " Santa claus "
    206.    
    207.     strAnswerReal2 = "Santa claus"
    208. End Sub
    209.  
    210. Sub Question3()
    211.     lblQuestionBox.Caption = "What is the most common substance found" _
    212.     & "on the planet earth?"
    213.    
    214.     cmdAnswer1.Caption = " Water "
    215.     cmdAnswer2.Caption = " Gold "
    216.     cmdAnswer3.Caption = " Diamond "
    217.     cmdAnswer4.Caption = " Humans "
    218.    
    219.     strAnswerReal3 = "Water"
    220. End Sub
    221.  
    222. Sub Question4()
    223.     lblQuestionBox.Caption = "Who was the leader of German the Nazi party?" _
    224.     & "on the planet earth?"
    225.    
    226.     cmdAnswer1.Caption = " Himler "
    227.     cmdAnswer2.Caption = " Jospeh Stalin "
    228.     cmdAnswer3.Caption = " Field Marshal Rommel "
    229.     cmdAnswer4.Caption = " Adolf Hitler "
    230.    
    231.     strAnswerReal4 = "Adolf Hitler"
    232. End Sub

  7. #7
    PowerPoster
    Join Date
    May 2006
    Location
    Location, location!
    Posts
    2,673

    Re: compile error end of statement

    Just quickly perusing through the code, it does seem a bit bloated...but that's due to your level of expertise in VB6 so it's allowed :-)

    An array is a group of variables with the same name that are recognised in code as different by the number in brackets after the name. For instance, you have:

    Code:
    Sub Question1()
        lblQuestionBox.Caption = "When was pakistan first made?"
       
        cmdAnswer1.Caption = " 1947 "
        cmdAnswer2.Caption = " 1961 "
        cmdAnswer3.Caption = " 1945 "
        cmdAnswer4.Caption = " 1955 "
    
       strAnswerReal1 = "1947"
    End Sub
    Whereas most people would use an array to store the values in (for instance) strQuestion(1) and strAnswer(1,1) to strAnswer(1,4) like so...

    Code:
        strQuesttion(1)"When was pakistan first made?"
       
        strAnswer(1,1) =  " 1947 "
        strAnswer(1,2) =  " 1961 "
        strAnswer(1,3) =  " 1945 "
        strAnswer(1,4) =  " 1955 "
    
        strRightAnswer(1) = 1
    These variables would be declared as public elsewhere so they can be set on form_load (or elsewhere...personally I would save the questions in a text file and load them into the program as I run it) and all you then have to do is set the control captions on your form with what's in the array.

    There's a lot more I want to say (like how to get rid of having to have the "right answer" variable by using the jumbling idea I said above and having the first answer in the list always being the right one) but I'm holding back on saying too much so it doesn't confuse you :-)

    With regards to your actual question about the bug, I'm not sure without actually trying the code for myself, and hopefully someone else can spot it as I didn't see anything after a quick look through
    Well, everyone else has been doing it :-)
    Loading a file into memory QUICKLY - Using SendKeys - HyperLabel - A highly customisable label replacement - Using resource files/DLLs with VB - Adding GZip to your projects
    Expect more to come in future
    If I have helped you, RATE ME! :-)

    I love helping noobs with their VB problems (probably because, as an amateur programmer, I am only slightly better at VB than them :-)) but if you SERIOUSLY want to get help for free from a community such as VBForums, you have to first have a grounding (basic knowledge) in VB6, otherwise you're way too much work to help...You've got to give a little if you want to get help from us, in other words!

    And we DON'T do your homework. If your tutor doesn't teach you enough to help you make the project without his or her help, FIND A BETTER TUTOR or try reading books on programming! We are happy to help with minor things regarding the project, but you have to understand the rest of it if you want our help to be useful.

  8. #8

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    thank you, i have been researching for the past few days and almost everysingle trvia who wants to be a mllionare games i found contain a text file
    (notepad, word) where all the questions are stored. I want to do that too but the thing is that i dont know how to do. we havnt learned that in the course.

    it would be greatly appreciated if you show me a code with just 1 question in a text file. and could you also show me how u check if the answer is right or not. i mean like when the person clicks the command button how would you check that the caption of that command button is the answer.

  9. #9
    PowerPoster
    Join Date
    May 2006
    Location
    Location, location!
    Posts
    2,673

    Re: compile error end of statement

    Quote Originally Posted by Hassan! View Post
    thank you, i have been researching for the past few days and almost everysingle trvia who wants to be a mllionare games i found contain a text file
    (notepad, word) where all the questions are stored. I want to do that too but the thing is that i dont know how to do. we havnt learned that in the course.

    it would be greatly appreciated if you show me a code with just 1 question in a text file. and could you also show me how u check if the answer is right or not. i mean like when the person clicks the command button how would you check that the caption of that command button is the answer.
    Give me 5 minutes and I'll write a quick project with the same questions you provided above...although it might be a bit advanced if I add all the other stuff (like jumbling the answers) but I'll do what I can :-)
    Well, everyone else has been doing it :-)
    Loading a file into memory QUICKLY - Using SendKeys - HyperLabel - A highly customisable label replacement - Using resource files/DLLs with VB - Adding GZip to your projects
    Expect more to come in future
    If I have helped you, RATE ME! :-)

    I love helping noobs with their VB problems (probably because, as an amateur programmer, I am only slightly better at VB than them :-)) but if you SERIOUSLY want to get help for free from a community such as VBForums, you have to first have a grounding (basic knowledge) in VB6, otherwise you're way too much work to help...You've got to give a little if you want to get help from us, in other words!

    And we DON'T do your homework. If your tutor doesn't teach you enough to help you make the project without his or her help, FIND A BETTER TUTOR or try reading books on programming! We are happy to help with minor things regarding the project, but you have to understand the rest of it if you want our help to be useful.

  10. #10

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    thanks man

  11. #11
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: compile error end of statement

    Quote Originally Posted by Hassan! View Post
    thanks alot, i have some other questions too it would be great if you could help me, do you have msn or something?
    I don't use IM, and there is no need - like many people here I get instant email notification of replies to threads I have posted in, and will come back when I have the time to do so (if I am already on the forums, that may be a matter of seconds after your post).

    - answers not working
    That is because you have the Or's, which are not what you want. For example, in this part of the code:
    Code:
    Private Sub cmdAnswer1_Click()
        If cmdAnswer1.Caption = strAnswerReal1 Or cmdAnswer1.Caption = strAnswerReal2 _
         Or cmdAnswer1.Caption = strAnswerReal3 Or cmdAnswer1.Caption = strAnswerReal4 Then
    You either need to make the checks much more complex (for each of the 4 conditions also check if that is the current question number), or make it much simpler - by having just one strAnswerReal variable (rather than one per question), and only checking that one variable.

    - stupid ways of making the code (using alot of ors in 1 algorithm)
    - and any others mistakes you find
    You have bad organisation which leads to repetition etc, including:

    If you move lines 38-44 to just after the End If, you can remove lines 48-54 (as they do exactly the same thing, and in either case one of them will run. The same applies to the other buttons.

    It would be better to have just one routine for the questions (using If statements or a Select Case to choose which part to run based on dblQuestionAccumaltor), rather than 4 separate ones. You can then remove lines 58-68 (and equivalents) from each button, and can even move lines 38-44 into it too.

    These two (fairly simple) changes should reduce the amount of code by about 50%... and make it much simpler to alter/maintain too.

    it would be greatly appreciated if you show me a code with just 1 question in a text file.
    For getting data from text files, see the "Files" section of our Classic VB FAQs (in the FAQ forum)
    Last edited by si_the_geek; Dec 22nd, 2009 at 03:05 PM.

  12. #12

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    o man thanks that makes sence but i read those FAQs already and i dont even understand that stuff since it is pretty advance. i am waiting for the other person to reply, he helped me out alot.

  13. #13
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: compile error end of statement

    I've edited my response to "- answers not working", as I made a small mistake when reading your code.

  14. #14
    PowerPoster
    Join Date
    May 2006
    Location
    Location, location!
    Posts
    2,673

    Re: compile error end of statement

    Okay, I've chucked together a basic quiz but I HAVEN'T done a few things including a scoring system and loading it from a text file...I'll leave that part up to you. I've also commented (probably not well enough) throughout the code where I could, and I welcome you to paste bits and ask about it and people will help.

    ALSO, I am very lazy when it comes to variables, I rarely follow the naming conventions (proper names, using str at the start so you can tell it's a string, the usual) so forgive some of the weird variable names in it.

    I'm sure you can take this code and modify it to your hearts content with other features...this will get you started though :-P

    One thing you might want to do is change it so it doesn't use the msgbox when telling you right or wrong, I just added that to make it quick :-P
    Attached Files Attached Files
    Well, everyone else has been doing it :-)
    Loading a file into memory QUICKLY - Using SendKeys - HyperLabel - A highly customisable label replacement - Using resource files/DLLs with VB - Adding GZip to your projects
    Expect more to come in future
    If I have helped you, RATE ME! :-)

    I love helping noobs with their VB problems (probably because, as an amateur programmer, I am only slightly better at VB than them :-)) but if you SERIOUSLY want to get help for free from a community such as VBForums, you have to first have a grounding (basic knowledge) in VB6, otherwise you're way too much work to help...You've got to give a little if you want to get help from us, in other words!

    And we DON'T do your homework. If your tutor doesn't teach you enough to help you make the project without his or her help, FIND A BETTER TUTOR or try reading books on programming! We are happy to help with minor things regarding the project, but you have to understand the rest of it if you want our help to be useful.

  15. #15

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    omg that is so good but i dont understand 1 bit LOL

    do u have msn or something so we could talk?

  16. #16
    PowerPoster
    Join Date
    May 2006
    Location
    Location, location!
    Posts
    2,673

    Re: compile error end of statement

    I do, but I don't give it out to people for discussing programming. Feel free to post questions about specific parts of the code, or you can do as most of us do and google for the term (like rnd or public, etc) and see what you can find out about how to use it in your program :-)
    Well, everyone else has been doing it :-)
    Loading a file into memory QUICKLY - Using SendKeys - HyperLabel - A highly customisable label replacement - Using resource files/DLLs with VB - Adding GZip to your projects
    Expect more to come in future
    If I have helped you, RATE ME! :-)

    I love helping noobs with their VB problems (probably because, as an amateur programmer, I am only slightly better at VB than them :-)) but if you SERIOUSLY want to get help for free from a community such as VBForums, you have to first have a grounding (basic knowledge) in VB6, otherwise you're way too much work to help...You've got to give a little if you want to get help from us, in other words!

    And we DON'T do your homework. If your tutor doesn't teach you enough to help you make the project without his or her help, FIND A BETTER TUTOR or try reading books on programming! We are happy to help with minor things regarding the project, but you have to understand the rest of it if you want our help to be useful.

  17. #17

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    k thanks for all the stuff, iam gona try all the stuff out tonight

  18. #18

    Thread Starter
    Member
    Join Date
    Dec 2009
    Posts
    50

    Re: compile error end of statement

    game plan due tommorow so lots of questions coming...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width