I'm using C# to create a windows forms aplication with appwarp.
I've added the .dll file as a reference and I have no compile errors.
My code
[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 com.shephertz.app42.gaming.multiplayer.client;
namespace Word_Puzzle_Level_Creator
{
public partial class Form1 : Form
{
private const String CodApi = "...the api key.";
private const String CodSecret = "...the secret key";
private String nume_random;
private WarpClient warpClient;
public Form1()
{
InitializeComponent();
}
private void Conectare()
{
WarpClient.initialize(CodApi, CodSecret);
warpClient = WarpClient.GetInstance();
nume_random = new Random().NextDouble()+".";
warpClient.Connect(nume_random);
}
private void Form1_Load(object sender, EventArgs e)
{
Conectare();
}
}
}
[/code]
I'm getting the runtime error
Could not load file or assembly 'AppWarp_WP7_SDK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
What should I do?