Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Mockup & CodeGen, iPhone & iPad
($9.99)

Make your own iPhone apps
and run them live!
(free)

Manu
($0.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 10-19-2008, 07:33 AM   #151 (permalink)
Registered Member
 
Join Date: Aug 2008
Location: The Netherlands
Age: 30
Posts: 86
Default Why it keeps being blank

I just found out that NavigationControllers have the property topViewController; this is the viewcontroller that is shown (it's top of the stack).

Its a read-only property though. I then noticed that there are two options:

1) create the NavigationController from code and use initWithRootViewController and refer to the ViewController that you want to have shown.
// look at the code example at page 32 (creating a navigation contr.) in the "View Controller Programming guide"

2) create the root controller - just like GroupController as stated in the example on page 32 - and then PUSH this rootcontroller to the Navigationcontroller (animated:NO) that is already existing (because it was created using IB).

btw: i moved my Navigationcontroller to the first XIB file so i can push and pop views centrally instead from the second XIB. i then created an IBOutlet so i could refer to the Navigationcontroller and push the view.

hope this helps
__________________
EeKay Sez:: : :

0110100001100101011011000110110001101111 to you !

WwW : www.eekay.nl
mniE : www.mynameise.com/eekay
Twitter : www.twitter.com/eekayonline
EeKay is offline   Reply With Quote
Old 10-22-2008, 01:57 AM   #152 (permalink)
New Member
 
Join Date: Oct 2008
Posts: 3
Default First day on the iPhone

Hello All, very new to this.

Quote:
Your should have ViewController for every tab that you need. So if you want five tab bar items you need 5 view controllers and 5 nib files. Say, ViewOne.xib, ViewTwo.xib and so on..
All the nib files need to have their file owner as the ViewControllers. So ViewOne will have ViewOneController as its file owner. Add a tab bar and a tab item to each one of the view in IB.
And in your AppDelegate, you would initialize your view controller from the nib and add it to the tab bar controllers in the MainWindow.xib nib file
I am using IB. I have done the separate controllers, they're working fine, and I'm intercepting actions from some test buttons I have set up in each of the controllers.

However, I can't seem to figure out how to connect my outlets? In other words, I need to be able to change the text in a label in a particular view, and I can't seem to figure out how to attach that label to any of my classes within IB.

I assume I have to subclass UIView? How does that work with my separate .xib files? I'm a bit confused around the edges here.

Thanks, this thread is great!

Jolly
Jolly1 is offline   Reply With Quote
Old 10-22-2008, 06:05 AM   #153 (permalink)
New Member
 
Join Date: Oct 2008
Posts: 1
Default UITableView with UITabController - Not using Interface Builder

Hi there,
Thanks for all the great posts on this thread, it has been very useful to me.

I want to be able to write iPhone apps without using Interface Builder, or at least very rarely use IB.

I have attached my project to this post.

I am having trouble figuring out how to set the UITableView delegate/datasource and get it working. When i run the app as it is, i get the following error:
-[TabBarTestAppDelegate tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x44e840

This happens when i try and enter the second View in the UITabBar (the one named All Recipes. The other tabs are all fine because they dont actually do anything.
My understanding is that the UITableView needs to be assigned a datasource and delegate in order to implement the required methods to be able to display anything.

If anyone can offer some suggestions with this it would be very much appreciated.

Thanks
Robert
Attached Files
File Type: zip TabBarTest.zip (27.0 KB, 528 views)
robit is offline   Reply With Quote
Old 10-22-2008, 11:24 AM   #154 (permalink)
Registered Member
 
Join Date: Aug 2008
Location: The Netherlands
Age: 30
Posts: 86
Default

Quote:
Originally Posted by Jolly1 View Post
Hello All, very new to this.



I am using IB. I have done the separate controllers, they're working fine, and I'm intercepting actions from some test buttons I have set up in each of the controllers.

However, I can't seem to figure out how to connect my outlets? In other words, I need to be able to change the text in a label in a particular view, and I can't seem to figure out how to attach that label to any of my classes within IB.

I assume I have to subclass UIView? How does that work with my separate .xib files? I'm a bit confused around the edges here.

Thanks, this thread is great!

Jolly
Jolly. I try to give an example using the viewOne as our subject:

in the ViewOne.XIB set the File's Owner class as ViewOneController (via the last tab in the inspector - Class identity section).

Create IBOutlets(in .h file, along with @property, and in .M file use @synthesize) in the ViewOneController for each IB field,label etc that you need to change/read. In IB you can now connect the label to the File's Owner and select the IBOutlet corresponding to the item you select.

f.i:
//.h file
IBOutlet UILabel *mylabel;
} //end of class definition

@property (nonatomic, retain)IBOutlet UILabel *mylabel;

//.M file
@synthesize myLabel;
//it now has setMyLabel and getMyLabel since its a property.

From code, you can now access the field/label/.. using self.myLabel.text or [self setMyLabel].

i wrote this up in 1 min so try if its syntax correct but i hope you get the idea..
__________________
EeKay Sez:: : :

0110100001100101011011000110110001101111 to you !

WwW : www.eekay.nl
mniE : www.mynameise.com/eekay
Twitter : www.twitter.com/eekayonline
EeKay is offline   Reply With Quote
Old 10-22-2008, 03:26 PM   #155 (permalink)
New Member
 
Join Date: Oct 2008
Posts: 3
Default

Thanks for the advice. Actually, I'd already figured it out.

Basically, in IB, ensure that the Inspector window is open, and the little blue "i" is selected. Click on the "File's Owner" icon. Go to the inspector window, and select the class you wrote (in my case, a UIViewController subclass called "StatusController." That has the outlets that I was expecting, allows me to connect them, and works as expected.

I'm a bit new to IB3, which is radically different ( and *tons* better ) than IB2.

'Jolly
Jolly1 is offline   Reply With Quote
Old 10-22-2008, 04:33 PM   #156 (permalink)
Registered Member
 
Join Date: Oct 2008
Posts: 126
Default

Ok I have a question somewhat related to this. I have a Table view with a navigation controller. If the user clicks the plus sign I go to a detail view which still has the navigation bar at the top. I add a 'Save' bar button item to the top which works fine, I just need to know how to return to the table view after the user clicks it. Is there a method I can call that returns a navigation controller back to the root?
jclardy is offline   Reply With Quote
Old 11-05-2008, 05:46 AM   #157 (permalink)
New Member
 
Join Date: Nov 2008
Posts: 40
Default Did this get resolved?

I've been trying to do the same thing,

Tabbar controller down the bottom each of the views being a tableview with a navigation controller?

I would be very grateful if someone could point me in the direction of a full solution.

Thanks in advance,
Tom
TomWhitson is offline   Reply With Quote
Old 11-05-2008, 03:17 PM   #158 (permalink)
New Member
 
Join Date: Aug 2008
Posts: 361
Default

Guys, popping back to the view above is simple.

All you have to do is send a message to your view controllers' navigationController property.

Just say this:

[self.navigationController popViewControllerAnimated:YES];

That tells the navigationController to push back one level.

Alternately, you could tell it which navigationController to push back to the top with:

[self.navigationController popToRootViewControllerAnimated:YES];

And again, you could choose any view Controller currently below it in the stack:

[self.navigationController popToViewController:certainViewController animated:YES];

To view these messages, all you have to do is go to spotlight in the top right hand corner of your screen and type in UINavigationController.h and find that file. open it up. You will see the properties of the class declared, and also the methods (or messages you send to it) also declared there.

Do that for any class you want to find how to get access to the properties of and you will probably notice that you can actually do a lot more than you think with most classes.

Also, remember, these classes are subclasses of something else and inherit everything from the higher classes, so you wanna do something to a UITableView, but theres no obvious method, and there is in UIScrollView, then you need to realise that UITableView is just a subclass of UIScrollView and retains every property and method of the higher class. Don't be afraid to go searching higher up if you don't find the ways to do things. Look for something like this: UITableView : UIScrollView and that tells you that UITableView, the view who's class header file you are looking at, also adopts the nature of a scroll view, and you can search UIScrollView.h also for more stuff you can do to it.
DevTeamOfOne is offline   Reply With Quote
Old 11-05-2008, 03:36 PM   #159 (permalink)
Registered Member
 
Join Date: Oct 2008
Posts: 91
Default

Quote:
Originally Posted by DevTeamOfOne View Post
Guys, popping back to the view above is simple.

And again, you could choose any view Controller currently below it in the stack:

[self.navigationController popToViewController:certainViewController animated:YES];
This is what I am having trouble with.... I am at my root view... then I create the next view with the toolbar and push it into view. So lets call the root level 1 and the view it pushes level 2. I have about 4-5 levels total... when the user is on level 5 I want them to be able to click the tool bar and jump up to level 2 instead of pressing back 3 times...

The problem is that I create level 2 inside of level 1 and push its view. Pressing the button inside of level 2 should do nothing... until your are at level 3. The problem is that when I set the action for pressing the button in level 1 the level 2 view has not yet been created so it doesnt like me doing that...

Code:
LevelTwoViewController *levelTwoViewController = [[LevelTwoViewController alloc] initWithNibName:@"LevelTwoView" bundle: nil];

UIBarButtonItem *name = [[UIBarButtonItem alloc] initWithTitle:@"Name" style:UIBarButtonItemStylePlain target:self action:@selector(popToLevelTwoView) ];

[levelTwoViewController.toolbar setItems:[NSArray arrayWithObjects:spacer,name,spacer,nil]];

[self.navigationController pushViewController:levelTwoViewController animated:YES];
and...
Code:
-(IBAction)popToLevelTwoView {
[self.navigationController popToViewController:levelTwoViewController animated:YES];
My popToLevelTwoView function does not work... it works if I say :self but then it pops to level 1 not level 2.... and if I create it inside of level two when it loads it does not get created correctly.... maybe I am pushing my views all wrong?
pcmofo is offline   Reply With Quote
Old 11-05-2008, 04:05 PM   #160 (permalink)
New Member
 
Join Date: Aug 2008
Posts: 361
Default

OK... the way you're going about this is incorrect.

I can't be sure but this is how I would go about it:

Create a property in level 3 of the class LevelTwoViewController, and set like this: level3ViewController.number2ViewController = self;

then at level 3 tell level 4 that to set level4ViewController.number2ViewController = number2ViewController;

then at level 4 tell level 5 to set a property of it's own level5ViewController.number2ViewController = number2ViewController;

then in level 5 when the toolbar button is pressed, say:
[self.navigationController popToViewController:number2ViewController];

Does that make sense? Make each higher view have the second level as its property.

I dunno if that would work. If it doesn't, I'd use [[UIApplication sharedApplication] delegate] to drill down to find level 2 as a property of level 1. That would almost definitely work as its a singleton object (only references, doesn't create another object).

Then, alternately again, you could set it all up with view Controllers in a nib file and reference it via an IBOutlet.

Last edited by DevTeamOfOne; 11-05-2008 at 04:07 PM.
DevTeamOfOne is offline   Reply With Quote
Old 11-09-2008, 01:30 PM   #161 (permalink)
New Member
 
Join Date: Oct 2008
Posts: 2
Default Tab Bar Controller and Navigation Controller Setup Using Interface Builder

I'm lucky to have stumbled across this thread a couple of days ago, and would like to than everyone for the information presented. I'm new to programming for the Mac/iPhone and have run into the following problem.

MainWindow.xib
I setup everything using IB (by following the video posted in this thread). My First Tab is set to a Navigation Controller (by clicking the status bar in IB). The view within the Navigation Controller is loaded from FirstView.xib.

FirstView.xib
In IB the File's Owner is FirstViewController (the view controller). I have a proxy object containing the App Delegate, a Table View displaying data, and a view controller for the detail (loaded from another xib file called Detail.xib after the selection is made). I've implemented the required methods to allow selection, and the table view is responding to click events.

When a row is clicked, I call the App Delegate and pass the text of the cell that was clicked. In the App Delegate I try to push the next view (detailController), but it doesn't load. The message is getting sent to the App Delegate but when I call pushViewController nothing happens. I don't get any compilation errors and as I click the cells they are highlighted.

[navController pushViewController:detailController animated:YES];

I tried adding a Navigation Controller to FirstView.xib, deleting the proxy object used for the App Delegate and handling the pushing of the view in FirstView.xib's file owner but I get the same results.

I guess my question is.. after following the video posted here
http://www.iphonedevsdk.com/forum/ip...html#post15844
how do I get the navigation portion to work?

Design wise; Should the app delegate be used to handle the pushing of views for each tab? Or would it be better handled by the file's owner of each xib loaded for each tab?

Any help would be appreciated. This is all very new to me. Thank you,
jmartin113 is offline   Reply With Quote
Old 11-09-2008, 01:35 PM   #162 (permalink)
Registered Member
 
Join Date: Aug 2008
Posts: 84
Default

Quote:
Originally Posted by jmartin113 View Post
Design wise; Should the app delegate be used to handle the pushing of views for each tab?
No, never call back to the app delegate, except perhaps if you need the odd static helper method.

Quote:
Originally Posted by jmartin113 View Post
Or would it be better handled by the file's owner of each xib loaded for each tab?
Yes, exactly. This is how the navigation controller was designed to be used.
indiekiduk is offline   Reply With Quote
Old 11-09-2008, 02:21 PM   #163 (permalink)
New Member
 
Join Date: Oct 2008
Posts: 2
Default Thanks

Thanks, how would I go about setting this up using IB? I removed the calls to the app delegate and moved the handling of pushing the view controller in FirstView.xib's File Owner (firstViewController). In IB I dragged a Navigation Controller and wired it to an outlet in firstViewController.

So now firstViewController has links to a tableView, detailController and the Navigation Controller. In the viewDidLoad method of firstViewController I put the following.

navController.viewControllers = [NSArray arrayWithObject:firstViewController];
[tv addSubview:navController.view];

In didSelectRowAtIndexPathNSIndexPath *) indexPath I push the view controller

[self.navController pushViewController:detailViewController animated:YES];

Am I heading in the right direction? I'm not getting any errors but nothing happens as well.

EDITED: After much headache I decided to try this using code and was successful. Surprisingly I was able to get a better understanding of Interface Builder doing it this way. If you're stuck trying something in IB, give it a try in code.

Last edited by jmartin113; 11-13-2008 at 06:34 PM.
jmartin113 is offline   Reply With Quote
Old 11-12-2008, 02:29 PM   #164 (permalink)
New Member
 
Join Date: Nov 2008
Posts: 1
Default Programatically adding new tab bar items on startup

Hello everyone.

I have viewed all that has been said in this thread about creating tabbars in code as well as in IB. I would like to keep using everything in IB because of the lazy loading aspects it offers.

What I need to be able to do is this:
1. At startup, a user logs in, and his/her role(s) is discovered. Once this info is known, for each role that he/her has rights, a separate tabbar item for each role is to be created that isolates (encapsulates) that role functionality into separate navcontroller/view controller stacks. Thus a role of "user" would have a tabbar item called "User" and likewise a role of "admin" would have a tabbar item called "Admin".

I know this can be all done programatically, but is there a way to do this using IB allowing dynamically adding ONLY the appropriate tab items on-the-fly, only when this xib file is referenced instead of statically building the view with the tabbars items that would contain all possible roles?

A sample app project demonstrating this would be a huge help!

Regards,

-Mark
mchipman is offline   Reply With Quote
Old 12-24-2008, 06:20 PM   #165 (permalink)
New Member
 
Join Date: Dec 2008
Posts: 5
Default

Quote:
Originally Posted by DevTeamOfOne View Post
Code:
@interface AppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    UITabBarController *tabBarController;
    MyTableViewController *myTableViewController;
    MySecondTableViewController *mySecondTableViewController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) UITabBarController *tabBarController;
@property (nonatomic, retain) MyTableViewController *myTableViewController;
@property (nonatomic, retain) MySecondTableViewController *mySecondTableViewController;

@end




@implementation AppDelegate

@synthesize window, myTableViewController, mySecondTableViewController, tabBarController;

- (void)applicationDidFinishLaunching:(UIApplication *)application {

       tabBarController = [[UITabBarController alloc] init];          // creates your tab bar so you can add everything else to it

       myTableViewController = [[MyTableViewController alloc] init];               // creates your table view - this should be a UIViewController with a table view in it, or UITableViewController
       UINavigationController *tableNavController = [[[UINavigationController alloc] initWithRootViewController:myTableViewController] autorelease];
       [myTableViewController release];                                                              // creates your table view's navigation controller, then adds the view controller you made. Note I then let go of the view controller as the navigation controller now holds onto it for me. This saves memory.

       mySecondTableViewController = [[MySecondTableViewController alloc] init];   
       UINavigationController *table2NavController = [[[UINavigationController alloc] initWithRootViewController:mySecondTableViewController] autorelease];
       [mySecondTableViewController release];                                                    // does exactly the same as the first round, but for your second tab at the bottom of the bar.

       tabBarController.viewControllers = [NSArray arrayWithObjects:tableNavController, table2NavController, nil]; add both of your navigation controllers to the tab bar. You can put as many controllers on as you like, but they will turn into the more button like in the iPod program.

       [window addSubview:tabBarController.view];                                              // adds the tab bar's view property to the window
       [window makeKeyAndVisible];                                                                  // makes the window visible
}

- (void)dealloc {
       [tabBarController release];
       [window release];
       [super dealloc];
}                                           // lets go of everything else, thats so your program doesn't create any leaks of memory.

@end

I just typed up this quick App Delegate to show you how to do it. Yes, you do have rights to use whatever part of it you wish, and yes, you can ask any questions you like.

Please do note:
a ) I release the table views because they have been retained by the Navigation Controllers. Thus, I have doubled up and am taking double the memory. Once you have a nav controller holding your view, drop it. This saves memory. These nav controllers are set to drop automattically with their autorelease so there is no leak issue.

b ) if you need to add only one item to your tabBar for some strange reason, or just to test, change "arrayWithObjects: blah, blah2, nil" to "arrayWithObject: blah" and drop the nil.

Does this help you???

I created a New XCode Project and pasted the above code in for the header and implementation files and I get nine errors building it....

I am sure there is one thing I am not doing since all the errors have to do with MyTableViewController and mySecondTableBiewController.

-I created a View Based Application...is that the problem?
-Am I supposed to do something in IB?

Please Help!

1) error: syntax error before 'MyTableViewController'
2) error: syntax error before 'MyTableViewController'
3) error: syntax error before 'MySecondTableViewController'
4)error: no declaration of property "myTableViewController" found in the interface
5) error: no declaration of property "mySecondTableViewController" found in the interface
6) error: 'myTableViewController' undeclared (first use in this function)
7) error: 'MyTableViewController' undeclared (first use in this function)
8) error: 'mySecondTableViewController' undeclared (first use in this function)
9) error: 'MySecondTableViewController' undeclared (first use in this function)
bruin18 is offline   Reply With Quote
Old 12-25-2008, 01:30 AM   #166 (permalink)
New Member
 
Join Date: Aug 2008
Posts: 361
Default

1. You should start with a window based application. I never start with anything else as they are usually IB rich and cumbersome.

2. Make sure you have created the classes and imported their header files into the app delegate's implementation file (.h's imported into appDelegate.m)

3. Make sure there are declarations in your appDelegate.h file of:

@class MyTableViewController;
@class MySecondTableViewController;

Place them before the @Interface bit.
DevTeamOfOne is offline   Reply With Quote
Old 01-05-2009, 01:46 AM   #167 (permalink)
Registered Member
 
Join Date: Jan 2009
Location: Long Beach, CA
Posts: 612
Send a message via AIM to bytor99999 Send a message via Yahoo to bytor99999
Default

Would this approach work the other way around. Instead of a TabBarView with a NavigationView as one of the tabs. But going from a NavigationView to a TabBarView?

Mark
bytor99999 is offline   Reply With Quote
Old 01-19-2009, 02:28 PM   #168 (permalink)
New Member
 
Join Date: Jan 2009
Posts: 1
Default

Hello! This code has helped me quite a bit, but I'm having trouble loading data into the UITableViews.

The 2 tabs load but they show a blank table.

If I simply load the UITableView as one of the tabs (without using the UINavigation), it displays the data in the table.

Any ideas?
andymilk is offline   Reply With Quote
Old 01-19-2009, 09:13 PM   #169 (permalink)
New Member
 
Join Date: Aug 2008
Posts: 361
Default

Hey Andy,

Hmm... send the code to me at thebarcodeproject@mac.com and I will have a look and get back to you.

If you are interested, I am currently developing full tutorials and from-the-ground-up samples that show exactly each stage of building things into an application with tab bars, navigation bars, etc. Look out for it at TheBarcodeProject

Thanks
DevTeamOfOne is offline   Reply With Quote
Old 01-21-2009, 05:59 AM   #170 (permalink)
New Member
 
Join Date: Jan 2009
Posts: 4
Default Hi About tabbarController & navigationController

Hi,

My issue is little bit different..

Some how related to this topic.

I have one tabbarController in IB.
And 10 Navigationcontroller in it.(view controller tableViewController)

more is automatically displayed.
Now my problem is that
in configure (tabbar) page i dont want to edit all item(navigation controller or tabbar item) in it.

And also Want to save it after configure..

Thanks in Advance.....

if any doubt then you can also send PM on ketanparekh.ce@gmail.com
ketanparekh.ce is offline   Reply With Quote
Old 02-03-2009, 01:20 PM   #171 (permalink)
Registered Member
 
Join Date: Jul 2008
Posts: 60
Default

Can someone please post a simple template for an application where there is a tab bar and beneath one of the tabs there is a navigation bar?

Thanks
japaternoster is offline   Reply With Quote
Old 02-06-2009, 05:32 AM   #172 (permalink)
Registered Member
 
Join Date: Jan 2009
Posts: 304
Default

I'm having the same problem of trying to understand what's the best way to have a simple application with Navigator + TabBar + tableView.

This thread is quite long and with many requests in the middle, so quite hard to read.

Would it be possible to provide two samples, one done using IB and the other one programmatically.
Or suggest some samples already around.

I think this could help a lot of people on this subject that it really seems a major cause of pain when starting developing for Iphone.

Thanks a lot in advance
melmoup is offline   Reply With Quote
Old 02-06-2009, 01:18 PM   #173 (permalink)
Registered Member
 
Join Date: Jan 2009
Location: Long Beach, CA
Posts: 612
Send a message via AIM to bytor99999 Send a message via Yahoo to bytor99999
Default

Quote:
Originally Posted by melmoup View Post
I'm having the same problem of trying to understand what's the best way to have a simple application with Navigator + TabBar + tableView.

This thread is quite long and with many requests in the middle, so quite hard to read.

Would it be possible to provide two samples, one done using IB and the other one programmatically.
Or suggest some samples already around.

I think this could help a lot of people on this subject that it really seems a major cause of pain when starting developing for Iphone.

Thanks a lot in advance
Um, I thought that information was already in this thread. First page has sample code, and like the third page had a link to a video to download showing it done in IB. I think post #78.

Mark
bytor99999 is offline   Reply With Quote
Old 02-09-2009, 08:57 AM   #174 (permalink)
New Member
 
Join Date: Apr 2008
Posts: 2
Cool

Hi guys, this is a terrific thread, thanks a lot!

I initially followed the video to create the tab bar + navigation structure...but gave up because I couldn't use the self.navigationController prop to push more views..don't ask me why, I don't know...

I used the few lines of code shown in page 1, and works great.

Only one question: a nice thing of the IB approach is that you can easily set-up tabs and assign them some built-in default images. For example there are images for a search tab, favorites, most recent etc. etc.

I'd like to use those images, since they are the typical one...how can I reference them in code?? Thanks!
futuremacdev is offline   Reply With Quote
Old 02-16-2009, 07:06 AM   #175 (permalink)
Registered Member
 
Join Date: Dec 2008
Posts: 83
Default full screen

Hi,

I did the trick with your code and i have now a tab bar and a navigation bar combined.

But do you have a trick to make a full screen so the navigation bar and the tab bar are hided. And also that i can switch back.

An example is the facebook app when you view some images or the photo app.

Any suggestions?
peterj is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 482
20 members and 462 guests
2WeeksToGo, aaronov, alfred1000351, Claricepqzx, Dattee, DaveDee, Delgernon, Domele, Evich, homasen, ilmman, loved1943, mistergreen2011, Ranahingts, sha, shiv@globussoft.com, Silus, Tauseef, TelTikky, walter_yaron
Most users ever online was 1,187, 10-11-2011 at 08:09 AM.
» Stats
Members: 157,869
Threads: 88,917
Posts: 379,300
Top Poster: BrianSlick (7,072)
Welcome to our newest member, homasen
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 02:23 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0