Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Problem add CounterSoft_Gemini_API_v3_7_2 to references

api

I use CounterSoftGeminiAPIv372
  - CounterSoft.Gemini.Commons.dll
  - CounterSoft.Gemini.WebServices.dll
I create new project(application) in .net 2010 and add CounterSoft
GeminiAPIv372 to project reference, And using CounterSoft.Gemini.WebServices on header form code. Error output:

Error    1    The type or namespace name 'CounterSoft' could not be found (are you missing a using directive or an assembly reference?) 

Thank,
June

Punchai
· 1
Punchai
Replies (5)
helpful
0
not helpful

On which line (code sample will be good) are you getting this error?


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

After add Gemini *.dll to References:

using System;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CounterSoft.Gemini.WebServices;
using CounterSoft.Gemini.Commons;


namespace CallLogMail
{
    public partial class frmMain : Form
    {
        public frmMain()
        {
                  .........................................

Can't build and see this error in Error List:
Error    3    The type or namespace name 'CounterSoft' could not be found (are you missing a using directive or an assembly reference?)    E:\CPSCallLog\CPSCallLog\CPSCallLog\CallLogMail\frmMain.cs    13    7    CallLogMail
Error    4    The type or namespace name 'CounterSoft' could not be found (are you missing a using directive or an assembly reference?)    E:\CPSCallLog\CPSCallLog\CPSCallLog\CallLogMail\frmMain.cs    14    7    CallLogMail


Punchai
· 1
Punchai
helpful
0
not helpful

What is in line 13 and 14? Did you add the dll as references or just added the using statements?


Mark Wing
· 9108
Mark Wing
helpful
0
not helpful

public frmMain()
        {
                  UserEN user = new UserEN();
                  IssueEN issue = new IssueEN();
                  ..............................................


Punchai
· 1
Punchai
helpful
0
not helpful

Send us your project please (support at countersoft dot com)


Mark Wing
· 9108
Mark Wing