Results 1 to 29 of 29

Thread: The Forums are so SLOW!!!!!!!!

  1. #1

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765

    The Forums are so SLOW!!!!!!!!

    Is anyone else having trouble posting messages and stuff?

    Its really slow.!!
    Last edited by Pc_Madness; Jul 12th, 2002 at 04:00 AM.
    Don't Rate my posts.

  2. #2
    Addicted Member GSIV's Avatar
    Join Date
    Jun 2002
    Location
    Texas, USA
    Posts
    213
    Yep. I am too!

  3. #3
    khalik
    Guest
    yea... some time it is dam slow...
    by the time i respond some one else has a solution ..

  4. #4
    Swatty
    Guest

    Revenge of the nerds

    Yep, thinking of going round the block today instead of surfing on this slooooooooooooooooooooooooooooooooooooow site.

  5. #5

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    Bring back the old Server I says.


    Its was never this bad.
    Don't Rate my posts.

  6. #6
    khalik
    Guest
    O we are running on diff server...
    just for info what server are we ....(type and brand)

  7. #7

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765

    Angry

    Ok threads don't even exist anymore.


    Don't Rate my posts.

  8. #8
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    It's not a very good server actually. VBF needs a dedicated server, as filburt1 had pointed out.

    Besides, you ppl need to get a real man's connection: a T1.

  9. #9

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    They called it T1 because Americans couldn't spell Cable


    Cable ain't cheap down under. Its like $70 a month or something.
    Don't Rate my posts.

  10. #10
    Swatty
    Guest
    Cable over here is around €42 .

    yea... some time it is dam slow...
    by the time i respond some one else has a solution ..

    Are you sure it is the server which is slow ???

  11. #11

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    lol
    Don't Rate my posts.

  12. #12
    Addicted Member
    Join Date
    Mar 2001
    Location
    Devon, UK
    Posts
    181

    Angry

    Soooooo slow and I've gone through about 10 threads on the front page that just don't exist, what a waste of time.
    Wind and waves resolves all problems.

  13. #13
    Swatty
    Guest
    Fell asleep waiting for the thread to be refreshed.


    I'll try again another day.

    CIAo

  14. #14
    Member
    Join Date
    May 2002
    Posts
    41
    I am trying to do a search and the server times out.

    Bummer, for this is such a GREAT source of VB information.

    Jim

  15. #15
    Junior Member
    Join Date
    Jun 2002
    Location
    Tulsa, OK
    Posts
    24

    F)@#$@# I can't get this damn thing to work

    I've been trying all morning to make one ****ING post....and it always times out and it keeps putting up empty posts on the forum.

    This is crap. I can reply to people, I can open posts and search... but I can't create my own post...

    Anyways, would ANYone be kind enough to post the following post to the General Forum?

    I have a very fast cable modem account (sustained downloads of up to 450KB/sec.... so this is just unacceptable. I realize its a free board... but at some point you have to fix the problem....its just so frustrating... no hope in using the site between 8 and 5
    _________________________________

    Title: How to Add Items to Menu Control Array at Run-time?

    Body:

    Ok, I've read a billion posts on dynamic menus and run-time menus and what-not... and none seem to address what I want to do.

    Lets say using the VB Menu Editor, I create a menubar that consists of 2 main options: File, Options... then under File I have 2 options (Exit and Open), and under Options I have 3 items (Last Site, Most Recent, and Favorites)... I can set this up easily... so that each one of the sub-options will run a procedure and do something... simple enough? All that is done at design time...

    HOWEVER< what I want is lets say I then have an array that is created at RUNtime that holds the ip addresses of sites I watn to be in teh favorites list... I want to ADD the contents of my array under the Favorites item (which is under the Options menu) so taht when I clikc on one of the favorites it runs teh code for the Favorites menu, but with an index that tells the Favorites code which favorite was selected...The favorites sub-menu item added at run-time is a control array with index set to 0.

    MSDN says you can add items to a menu control array at run-time but never says HOW to do it (Typical MS BS)...

    IS THIS POSSIBLE? if so how? I'd love for it to be a simple solution... but if not, I can handle api code to do it also...

    Thanks for all your help.

    Rock

  16. #16
    Lively Member
    Join Date
    Mar 2002
    Location
    WestCoast - Cali
    Posts
    116
    I have been thinking that the past few days myself that the everything is so much slower. I'm glad someone actually posted a message so they are aware of the problem.

  17. #17
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431
    Pc_Madness: I agree that the forums are way too slow but please do not post messages like this one in the General VB forum. The place to put it is in Forum Feedback.

  18. #18
    Lively Member
    Join Date
    Jul 2002
    Posts
    69

    Menu question

    Answer to your question about the menu

    Make certain to specify an Index value in the Menu editor

    Then in your code do the following
    VB Code:
    1. Private Sub Form_Load()
    2.   Load mnuAddresses(mnuAddresses.Count + 1)
    3.   With mnuAddresses(mnuAddresses.Count)
    4.     .Caption = "Navigate to 255.255.255.255"
    5.     .Visible = True
    6.     .Tag = "255.255.255.255"
    7.   End With
    8. End Sub
    9.  
    10. Private Sub mnuAddresses_Click(Index As Integer)
    11.   MsgBox mnuAddresses.Item(Index).Tag
    12. End Sub
    "Help!!! I've installed Windows CE,ME and NT and now my computer runs like a brick" - shamelessly stolen sig

  19. #19
    Hyperactive Member
    Join Date
    Mar 2002
    Location
    India
    Posts
    342

    administrators/ Moderators ...plz look in to the problem plz ...urgent

    in the last half an hour i cudnt go thru 2 posts also... its taking too much time to respond to any click .... if the same situation continues ...its hard to spend time on this forum anymore .... iam so sorry to say this coz ... i hav registered in march 02 and hav improved a lot going thru this forum regularly from then onwards ... but for that sake i cant stare at hour glass hours together .....

    hope every thing sets fine in a day or 2 ....
    ksm

  20. #20
    Hyperactive Member
    Join Date
    Mar 2002
    Location
    India
    Posts
    342

    administrators/ Moderators ...plz look in to the problem plz ...urgent

    in the last half an hour i cudnt go thru 2 posts also... its taking too much time to respond to any click .... if the same situation continues ...its hard to spend time on this forum anymore .... iam so sorry to say this coz ... i hav registered in march 02 and hav improved a lot going thru this forum regularly from then onwards ... but for that sake i cant stare at hour glass hours together .....

    hope every thing sets fine in a day or 2 ....
    ksm

  21. #21
    Hyperactive Member Hampster's Avatar
    Join Date
    Feb 2001
    Location
    On my hamster wheel.
    Posts
    374
    http://www.rackspace.com/dedicated/r...tid=0100-99999
    VBForums should be hosted there
    http://www.ebookad.com/software/hieb...r260_Setup.exe 2mb speed test on rackspace
    http://www.ebookad.com/software/hiebookSDK_Setup.exe 20mb speed test on rackspace
    Probably out of the price range though
    Last edited by Hampster; Jul 12th, 2002 at 09:28 PM.

  22. #22

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    Originally posted by MartinLiss
    Pc_Madness: I agree that the forums are way too slow but please do not post messages like this one in the General VB forum. The place to put it is in Forum Feedback.
    I was just trying to find out if anyone else was having a similar problem. And the best place to get this answered is in the General VB Q & A.

    U need to lighten up man.

    If I was talking about what I ate for breakfast yesterday, I could understand you moving it, but this has to do with everyone, so why should we exclude those who don't visit Forum Feedback??

    Alot of people don't live on the forums like some of us.
    Don't Rate my posts.

  23. #23
    Hyperactive Member buddu's Avatar
    Join Date
    Jul 2001
    Location
    India
    Posts
    446
    Can't we Reduce the Immages..? Almost the site is loding fast ony except to loding Immages Like

    profile- pm- emal- search - buddy ---

    For these things we can make it as Text with Some StyleSheet.

    I think i will improve the loading time.
    prasad

  24. #24

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    Thats not a bad idea... give people an option as like a skin... like the VB Forums/VB World. Perfect for people who have *cough*crappy*cough* dialups. I would definately choose a Text Version.
    Last edited by Pc_Madness; Jul 15th, 2002 at 07:20 AM.
    Don't Rate my posts.

  25. #25
    pathfinder NotLKH's Avatar
    Join Date
    Apr 2001
    Posts
    2,397
    Originally posted by Pc_Madness


    I was just trying to find out if anyone else was having a similar problem. And the best place to get this answered is in the General VB Q & A.

    U need to lighten up man.

    If I was talking about what I ate for breakfast yesterday, I could understand you moving it, but this has to do with everyone, so why should we exclude those who don't visit Forum Feedback??

    Alot of people don't live on the forums like some of us.
    I come to Forum Feedback when things are going wrong with the website. Where do you go?

    This IS the right place for your thread, ML doesn't have to lighten up, he was completely correct in moving your thread to where it would do most good.

    Anyways, does this tracert look right to you?
    Code:
    Tracing route to www.vbforums.com [209.120.143.185]
    
    over a maximum of 30 hops:
    
    
    
      1   150 ms   160 ms   156 ms  nas1.roc.frontiernet.net [66.133.132.66] 
    
      2   155 ms   149 ms   180 ms  66.133.132.1 
    
      3   250 ms   140 ms   165 ms  66-133-170-61.roc.frontiernet.net [66.133.170.61] 
    
      4   270 ms   200 ms   200 ms  p10-0.gw02.chcg.eli.net [209.210.88.17] 
    
      5   170 ms   160 ms   160 ms  srp2-0.cr01.chcg.eli.net [208.186.20.81] 
    
      6   290 ms   200 ms   200 ms  so-0-0-0--0.er01.chcg.eli.net [207.173.114.98] 
    
      7   171 ms   170 ms   180 ms  edge1.aads.level3.net [206.220.243.105] 
    
      8   180 ms   205 ms   200 ms  so-4-1-0.mp2.Chicago1.Level3.net [209.247.10.173] 
    
      9   309 ms   200 ms   220 ms  so-1-0-0.mp1.Dallas1.Level3.net [209.247.11.22] 
    
     10   205 ms   220 ms   200 ms  pos8-0.core1.Dallas1.Level3.net [209.247.10.98] 
    
     11   305 ms   200 ms   200 ms  gige10-1.ipcolo1.Dallas1.Level3.net [209.244.15.70] 
    
     12  3075 ms   200 ms   200 ms  unknown.Level3.net [209.246.152.206] 
    
     13   215 ms   185 ms   200 ms  66.7.141.225 
    
     14   220 ms   200 ms   201 ms  dfw017ap01.yipes.com [66.54.195.129] 
    
     15   255 ms   200 ms   215 ms  66.54.148.10 
    
     16   216 ms   219 ms   195 ms  www.vbforums.com [209.120.143.185] 
    
    
    
    Trace complete.
    -Lou

  26. #26

    Thread Starter
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    This thread is to do with the Forums being slow, not some tracert crap.
    Don't Rate my posts.

  27. #27
    pathfinder NotLKH's Avatar
    Join Date
    Apr 2001
    Posts
    2,397
    Originally posted by Pc_Madness
    This thread is to do with the Forums being slow, not some tracert crap.
    True. But the tracert shows an unusually long timespan:

    3075 ms 200 ms 200 ms unknown.Level3.net [209.246.152.206]
    And,


    What is this "unknown.Level3.net" ???


    -Lou

  28. #28
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Originally posted by NotLKH

    What is this "unknown.Level3.net" ???


    -Lou

    It is the Network partner you can rely on....

  29. #29
    Ex-Super Mod'rater Electroman's Avatar
    Join Date
    Sep 2000
    Location
    Newcastle, England
    Posts
    4,349
    Bringing up 2 year old threads are we to get the last word in? .

    BTW I think Level3 might be one of those companys that manage sites security . I've seen them here and there, like if your site gets DoS'ed you speak to them .
    When your thread has been resolved please edit the original post in the thread ()
    and amend "-[RESOLVED]-" to the end of the title and change the icon to , Thank you.

    When posting Code use the [VBCode]Code Here[/VBCode] tags to be able to use the code highlighting.

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