Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Create a group of conference and initial call!! HOW?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
13-06-2012 16:28
Hi,
this is my code c# for create a new group of conference:
string[] myUser={"user1","user2","user3","user4".....;
Skype myskype=new Skype();
.......
.....
public void CreateNew Group(string nameGroup)
{
Group mygroup;
int a;
mygroup=skype.CreateGroup(nameGroup);
for(a=0;a<myuser.Lenght;a++)
{
mygroup.add(myuser[a]);
}
}Now, I want call the "mygroup", but the process skype.PlaceCall, not work it!!
How do i call it?
Thank you
Re: Create a group of conference and initial call!! HOW?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
19-06-2012 22:24
so!!!
Re: Create a group of conference and initial call!! HOW?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
19-06-2012 22:46
I know very little about C# but I would try with myskype.PlaceCall(mygroup).
Re: Create a group of conference and initial call!! HOW?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
22-06-2012 17:42
PlaceCall(string Target1, string Target2, string Target3, string Target4)
It is not possible, why the "mygroup" is not string type!!!
