Ok so its seems I wasnt setting the credentials correctly. I have it working now. I was using
TwitterCredentials.SetCredentials("token_AccessToken", "token_AccessTokenSecret", "token_ConsumerKey", "token_ConsumerSecret");
and I switched to
TwitterCredentials.Credentials = TwitterCredentials.CreateCredentials(userKey, userSecret, consumerKey, consumerSecret);
Everything runs smoot as can be. Cheers for the input. Im sure ill be back for more help once I really start getting into it
TwitterCredentials.SetCredentials("token_AccessToken", "token_AccessTokenSecret", "token_ConsumerKey", "token_ConsumerSecret");
and I switched to
TwitterCredentials.Credentials = TwitterCredentials.CreateCredentials(userKey, userSecret, consumerKey, consumerSecret);
Everything runs smoot as can be. Cheers for the input. Im sure ill be back for more help once I really start getting into it