+ Reply to Thread
Results 1 to 29 of 29

Speeding up a code

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Speeding up a code

    Good morning Happy campers,

    I have the following code in a sheet.
    Sub stopM()
    
    Range("g7").Select
    If Range("g7") <> "1" Then
    MsgBox "MTN Already exists" & vbNewLine & "Please confirm Entry"
    Range("C8").Select
        Exit Sub
    End If
    Range("C8").Select
    ActiveCell.Copy
    Application.Run "'Provisioning Tracker 2012 Version 110612 (2).xlsm'!Find_First"
    End Sub
    
    Sub Find_First()
        Dim FindString As String
        Dim Rng As Range
        FindString = Sheets("Input").Range("C4").Value
        If Trim(FindString) <> "" Then
            With Sheets("Work Orders").Range("A:A")
                Set Rng = .Find(What:=FindString, _
                                After:=.Cells(.Cells.Count), _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
                If Not Rng Is Nothing Then
                    Application.Goto Rng, True
                Else
                    MsgBox "Nothing found"
                End If
            End With
        End If
    ActiveCell.Offset(0, 8).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
    ActiveCell.Offset(0, 1).Select
          Selection = Date
    Sheets("Input").Select Range("C8").Select
    Selection.ClearContents
    Sheets("Input").Select Range("C4").Select
    Selection.ClearContents
    End Sub
    This code works fine, however it takes around 20 seconds to complete. after a bit of old google searching i managed to find the following sections of code that may help.
    screenUpdateState = Application.ScreenUpdating
    statusBarState = Application.DisplayStatusBar
    calcState = Application.Calculation
    but when i add this to my code it only does part of if, and seems to stop.

    I also found that i need to enter the following at the end of my code
    Application.ScreenUpdating = screenUpdateState
    Application.DisplayStatusBar = statusBarState
    Application.Calculation = calcState
    Could anyone let me know where these lines should go in, in order for it to work?

    regards, galvinpaddy

  2. #2
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Apologies, i have posted the wrong code strings (duh)

    Application.ScreenUpdating = False
    Application.DisplayStatusBar = False
    Application.Calculation = xlCalculationManual
    Application.EnableEvents = False
    Application.ScreenUpdating = True
    Application.DisplayStatusBar = True
    Application.Calculation = xlCalculationAutomatic
    Application.EnableEvents = True

  3. #3
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Speeding up a code

    Hello galvinpaddy,

    Here is an example you should be able to incorporta into your code.

    Sub dosomething()
        'Declared variables
        Application.ScreenUpdating = False
        Application.Calculation = xlCalculationManual
        'Code goes here
        Application.ScreenUpdating = True
        Application.Calculation = xlCalculationAutomatic
    End Sub
    Another thing that slows down code is selecting

    This:
        ActiveCell.Offset(0, 1).Select
        Selection = Date
        Sheets("Input").Select Range("C8").Select
        Selection.ClearContents
        Sheets("Input").Select Range("C4").Select
        Selection.ClearContents
    Can be turned into:
        ActiveCell.Offset(0, 1) = Date
        With Sheets("Input")
            Range("C4, C8").ClearContents
        End With
    Beyond Excel’s Macro Recorder
    Last edited by jeffreybrown; 06-24-2012 at 08:20 AM.
    HTH
    Regards, Jeff

  4. #4
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi Jeff, thanks for that, now, when running the code brings up a run-time error 1004 and highlights the following line -
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
    Am i correct in thinking the data that was originally copied has now for some reason not been copied?

  5. #5
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Speeding up a code

    It would appear so.

    What are you trying to accomplish?

  6. #6
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    In short fella, the first part of the first code, C8 was copied, i then want this pasted into a cell. (the code finds the correct place to add it)

    Cheers

  7. #7
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Changed it slightly to read -
    Sub stopM()
    
    Range("g7").Select
    If Range("g7") <> "1" Then
    MsgBox "MTN Already exists" & vbNewLine & "Please confirm Entry"
    Range("C8").Select
        Exit Sub
    End If
    Range("C8").Select
    ActiveCell.Copy
    Application.Run "'Provisioning Tracker 2012 Version 110612 (2).xlsm'!Find_First"
    End Sub
    Sub Find_First()
        Application.ScreenUpdating = False
        Application.Calculation = xlCalculationManual
        Dim FindString As String
        Dim Rng As Range
        FindString = Sheets("Input").Range("C4").Value
        If Trim(FindString) <> "" Then
            With Sheets("Work Orders").Range("A:A")
                Set Rng = .Find(What:=FindString, _
                                After:=.Cells(.Cells.Count), _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
                If Not Rng Is Nothing Then
                    Application.Goto Rng, True
                Else
                    MsgBox "Nothing found"
                End If
            End With
        End If
        Sheets("Input").Select
        Range("C8").Select
        ActiveCell.Copy
        Sheets("Work Orders").Select
        ActiveCell.Offset(0, 8).Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        ActiveCell.Offset(0, 1) = Date
        With Sheets("Input")
            Range("C4, C8").ClearContents
        End With
        Application.ScreenUpdating = True
        Application.Calculation = xlCalculationAutomatic
    End Sub
    This seems to run a few seconds faster, but then does not return to the original sheet and clear the contents.

  8. #8
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Ok, so far i have managed to get the code to run VERY fast, but now cant get it to return to the starting sheet.

    Sub stopM()
        ActiveSheet.Calculate
    With Sheets("Input").Range("G7")
    If Range("g7") <> "1" Then
    MsgBox "MTN Already exists" & vbNewLine & "Please confirm Entry"
    Range("C8").Select
        Exit Sub
    End If
    End With
    Range("C8").Select
    ActiveCell.Copy
    Application.Run "'Provisioning Tracker so far.xlsm'!Find_First"
    End Sub
    
    Sub Find_First()
        Application.ScreenUpdating = False
        Dim FindString As String
        Dim Rng As Range
        FindString = Sheets("Input").Range("C4").Value
        If Trim(FindString) <> "" Then
            With Sheets("Work Orders").Range("A:A")
                Set Rng = .Find(What:=FindString, _
                                After:=.Cells(.Cells.Count), _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
                If Not Rng Is Nothing Then
                    Application.Goto Rng, True
                Else
                    MsgBox "Nothing found"
                End If
            End With
        End If
    ActiveCell.Offset(0, 8).Select
        Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
            xlNone, SkipBlanks:=False, Transpose:=False
       ActiveCell.Offset(0, 1) = Date
        With Sheets("Input").Range("C4, C8").ClearContents
        End With
        Application.ScreenUpdating = True
    End Sub
    Once the code does its thing, it wont switch back to the 'Input' sheet.

  9. #9
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Speeding up a code

    Did you try to record your actions using the macro recorder to get the proper syntax?

    From PM:
    I think this is correct

    https://www.box.com/s/1d5de87955a7f16f6a19

    It works to a certain degree now, just needs to be able to switch back to the first tab after completing its code.

    Very much appreciated!!

  10. #10
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi Jeff,

    Initially yes, but as the code progressed from a very simple copy, select sheet, paste. it was then a case of copy a line of code, insert it.
    Having just had another look at it, i changed the last section of code to read
       ActiveCell.Offset(0, 1) = Date
        With Sheets("Input").Select
        Range("C4, C8").ClearContents
        End With
        With Sheets("Provision").Select
        ActiveSheet.Calculate
        Sheets("Input").Select
        End With
        Application.ScreenUpdating = True
    End Sub
    Now, the code runs as i want, it does take about 5-6 seconds to complete, which is a great improvement on before, but still want to know how to reduce the wait time to as little as possible (if even possible)

    Kind Regards.

  11. #11
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    I know nothing about your code, but ...

    ActiveCell.Offset(0, 1) = Date
        With Sheets("Input").Select
        Range("C4, C8").ClearContents
        With Sheets("Input").Select
        Range("C4, C8").ClearContents
        End With
    End Sub
    Normally, when you use a with statement, you use range and/or cells with a dot before them. For example:

    With Sheets("Input")
        .Range("C4, C8").ClearContents
    End With
    Point 1: In this case all this means is:
    Sheets("Input").Range("C4, C8").ClearContents
    The dot (without anything else before it) connects the Range with the with statement.
    So there is not much call for using a With ... End With statement for just one item.

    Point 2: Without the dot, then range refers to the active sheet.

    If you are trying to speed up your code, normally you shouldn't be using activecell, select, of selection.

  12. #12
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    Range("C8").Select
    ActiveCell.Copy
    Here is another example, just use:

    Range("C8").Copy
    In fact, since it is only one cell, why do you need to copy it at all?

    Is there any chance you can upload your workbook?

  13. #13
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi StevenM,
    The reason for copying Cell C8 is i need to then paste it in another section, on Post9 above there is a link to Box.Com for the file, its almost 2mb so cant load it here.

    Thanks for your input so far.

  14. #14
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    Ok, so far i have managed to get the code to run VERY fast, but now cant get it to return to the starting sheet.
    Answer: Don't active any other sheet. :-) Seriously, why change to another sheet?

  15. #15
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi StevenM,

    Thats because the sheet will be used by members of my team, and aid damage limitation, i need to make it as easy as possible for them to complete :D

  16. #16
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    My point is this, if you have only one cell to copy, and you want to copy its value, why not:

    Worksheets("Whatever").Range("Cell Address").Value = Worksheets("Where Ever").Range("Cell address").Value

  17. #17
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Ah i see, thanks
    Forgive me if i miss or dont get the point straight away, im still learning the basics for VBA :D

  18. #18
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    FindString = Sheets("Input").Range("C4").Value
    If Trim(FindString) <> "" Then
    Better would be:

    FindString = Trim(Sheets("Input").Range("C4").Value)
    If Len(FindString) Then
    VBA keeps the length of each string embedded at the beginning of each string. So finding the length of a string is easy for VBA and is faster than comparing it to a zero length string. Also, 0 = False, anything else = True. Thus:

    If Len(FindString) Then
    Is better than If Len(FindString) > 0 Then[/CODE]

    Now, about the following:

                If Not Rng Is Nothing Then
                    Application.Goto Rng, True
                Else
                    MsgBox "Nothing found"
                End If
    Here you should just have:
    If Rng Is Nothing Then
        MsgBox "Nothing found"
        Exit Sub
    End If
    Now, instead of:

    ActiveCell.Offset(0, 8).Select
        Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
            xlNone, SkipBlanks:=False, Transpose:=False
       ActiveCell.Offset(0, 1) = Date
    You should have:

    Rng.Offset(0, 8) = Range("C8")
    Assuming that this range's worksheet is active, if not then:

    Rng.Offset(0, 8) = Worksheets("Wherever").Range("C8")
    Then:

    Rng.Offset(0, 1) = Date
    There is no need to goto the location of Rng in order to use the location of Rng.

  19. #19
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi StevenM,First off, thanks alot for the detail in the above, all help greatly appreciated!
    Code has been changed to
    Sub stopM()
        ActiveSheet.Calculate
    With Sheets("Input").Range("G7")
    If Range("g7") <> "1" Then
    MsgBox "MTN Already exists" & vbNewLine & "Please confirm Entry"
    Range("C8").Select
        Exit Sub
    End If
    End With
    Range("C8").Select
    ActiveCell.Copy
    Application.Run "'Provisioning Tracker so far.xlsm'!Find_First"
    End Sub
    
    Sub Find_First()
        Application.ScreenUpdating = False
        Dim FindString As String
        Dim Rng As Range
        FindString = Trim(Sheets("Input").Range("C4").Value)
        If Len(FindString) Then
            With Sheets("Work Orders").Range("A:A")
                Set Rng = .Find(What:=FindString, _
                                After:=.Cells(.Cells.Count), _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
                If Rng Is Nothing Then
        MsgBox "Nothing found"
        Exit Sub
    End If
            End With
        End If
    Rng.Offset(0, 8) = Worksheets("Input").Range("C8")
    Rng.Offset(0, 1) = Date
        With Sheets("Input").Select
        Range("C4, C8").ClearContents
        End With
        With Sheets("Provision").Select
        ActiveSheet.Calculate
        Sheets("Input").Select
        End With
        Application.ScreenUpdating = True
    End Sub
    But still takes 6-7 seconds to run, if possible could i trouble you for more help on it?

    kind regards. galvinpaddy

  20. #20
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Sry fella, one more thing, i now no longer get the date added with
    Rng.Offset(0, 1) = Date

  21. #21
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    I downloaded your workbook. If I knew what values to put in C4 & C8 to test it, I could.

    I combined your two macros into one.

    Assuming I didn't make some mistake, the following should work. Anyway, let me know if it does.

    Sub stopM()
        Dim FindString As String
        Dim Rng As Range
    
        Application.ScreenUpdating = False
    
        ActiveSheet.Calculate
        With Sheets("Input")
            If .Range("g7") <> "1" Then
                MsgBox "MTN Already exists" & vbNewLine & "Please confirm Entry"
                .Range("C8").Select
                Exit Sub
            End If
        End With
    
        FindString = Trim(Sheets("Input").Range("C4").Value)
        If Len(FindString) = 0 Then Exit Sub
        With Sheets("Work Orders").Range("A:A")
            Set Rng = .Find(What:=FindString, _
                                After:=.Cells(.Cells.Count), _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
            If Rng Is Nothing Then
                MsgBox "Nothing found"
                Exit Sub
            End If
        End With
    
        Rng.Offset(0, 8) = Worksheets("Input").Range("C8")
        Rng.Offset(0, 1) = Date
        Sheets("Input").Range("C4, C8").ClearContents
        Sheets("Provision").Calculate
        Application.ScreenUpdating = True
    End Sub

  22. #22
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Speeding up a code

    I guess you can also try:

    Sheets("Input").Range("C4, C8").ClearContents
    instead of

    With Sheets("Input").Select
        Range("C4, C8").ClearContents
        End With
    Never use Merged Cells in Excel

  23. #23
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi StevenM,
    Thanks for that, will test shortly!
    As for the info to input In C4 you can put any one 5 digit codes in ColumnA (provision tab) and then in C8 can be anything.
    If for example you input the code - 13563 then a random 6 digit code in C8, click the button, then find that 6 digit code on the second tab, and you see the changes there.

  24. #24
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Good morning all.

    Zbor - Thanks for your input
    StevenM - Thanks for your also!
    I have ran the sheet with your code and i am still finding that Excel takes 7 seconds to run the cycle. Above should explain how to test the sheet & its code, if not let me know

    Many thanks all.
    Regards, galvinpaddy.

    **EDIT**
    I also no longer see the date being eneterd into the cell as required on sheet ("Work Orders")
    Last edited by galvinpaddy; 06-25-2012 at 01:36 AM. Reason: Added addtional issue

  25. #25
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    Are you wanting to copy the date from Work Orders or add today's date?

    Because the line:

    Rng.Offset(0, 1) = Date
    Adds Today's date to column "B" of the line found.

  26. #26
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Quote Originally Posted by StevenM View Post
    Are you wanting to copy the date from Work Orders or add today's date?

    Because the line:

    Rng.Offset(0, 1) = Date
    Adds Today's date to column "B" of the line found.
    Hi, Ideally i need to capture the days date as the code was ran (the same as =TODAY() sort of thing)

    Will check the new code shortly, thanks again

  27. #27
    Valued Forum Contributor StevenM's Avatar
    Join Date
    03-23-2008
    Location
    New Lenox, IL USA
    MS-Off Ver
    2007
    Posts
    910

    Re: Speeding up a code

    The line which is slowing down your macro is:

    Sheets("Provision").Calculate
    So, how about just calculating the one row instead of the whole sheet? (I also made a couple other small modifications.)

    Sub stopM()
        Dim FindString As String
        Dim Rng As Range
        
        Application.ScreenUpdating = False
        
        ActiveSheet.Calculate
        With Sheets("Input")
            If .Range("g7") <> "1" Then
                MsgBox "MTN Already exists" & vbNewLine & "Please confirm Entry"
                .Range("C8").Select
                Exit Sub
            End If
        End With
    
        FindString = Trim(Sheets("Input").Range("C4").Value)
        If Len(FindString) = 0 Then Exit Sub
        Set Rng = Sheets("Work Orders").Range("A:A").Find(What:=FindString, _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
        If Rng Is Nothing Then
            MsgBox "Nothing found"
            Exit Sub
        End If
    
        Rng.Offset(0, 8) = Worksheets("Input").Range("C8")
        Rng.Offset(0, 1) = Date
        Sheets("Input").Range("C4, C8").ClearContents
        
        Set Rng = Sheets("Provision").Range("A:A").Find(What:=FindString, _
                                LookIn:=xlValues, _
                                LookAt:=xlWhole, _
                                SearchOrder:=xlByRows, _
                                SearchDirection:=xlNext, _
                                MatchCase:=False)
        If Not Rng Is Nothing Then
            Sheets("Provision").Rows(Rng.Row).Calculate
        End If
        Application.ScreenUpdating = True
    End Sub

  28. #28
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Speeding up a code

    Sub stopM()
      on error resume next
    
      Application.ScreenUpdating = False
      Application.calculation=xlcalculationmanual
      
      If Sheets("Input").Range("G7").value = 1 Then
        With Sheets("Work Orders").columns(1).Find(Trim(Sheets("Input").Range("C4").Value),,xlvalues,1)
          .Offset(,8) = Sheets("Input").Range("C8")
          .Offset(,1) = Date
        end with
        if err.number = 0 then Sheets("Input").Range("C4,C8").ClearContents
      else
        msgbox "MTN Already exists" & vbNewLine & "Please confirm Entry"
        application.goto Sheets("Input").Range("C8")
      end if
    
      Application.ScreenUpdating = True
      Application.calculation=xlcalculationautomatic
    End Sub
    Last edited by snb; 06-25-2012 at 07:10 AM.



  29. #29
    Forum Contributor
    Join Date
    11-02-2011
    Location
    Rugby, England
    MS-Off Ver
    Office 365
    Posts
    879

    Re: Speeding up a code

    Hi All,
    Firstly - StevenM - the date part of your code was working, however i needed it to read -
    Rng.Offset(0, 9) = Date
    it was only by searching for todays date in the ("Work Orders") tab that i noticed it, and then it suddenly made sense!!
    The code works, very well infact - runs in what seems like less than a second.

    SNB - I have also tried yours and it appears to do exactly the same.

    Many thanks to both, greatly appreciated.!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1