http://www.quack-war...harp.aspx?id=11
I impoteded the .dll file
and I think when twitterizer updated to beta 2 the code may have changed.
errors I get:
1) When using
using Twitterizer.Framework;Framework is underlined and tells me: "The type or namespace name 'Framework' could not be found"
2) in the tweet button:
Twtter t = new Twitter(ect.....)"'Twitter' (both of them) is underlined and says: "The type or namespace name 'Twitter' could not be found"
I assume that if error 1 gets fixed it will also take care of error 2....
Full Page of Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Twitterizer.Framework;
namespace WindowsFormsApplication1
{
public partial class TU : Form
{
public TU()
{
InitializeComponent();
}
private void TU_Load(object sender, EventArgs e)
{
}
private void tweetbtn_Click(object sender, EventArgs e)
{
Twitter t = new Twitter(txtbxuser.Text, txtbxpass.Text);
t.status.Update(rtbupdate.Text);
}
}
}
Any Ideas?
Edited by CanadianTaco, 26 March 2010 - 04:08 AM.


Sign In
Create Account


Back to top









