Answered by:
compact framework...

Question
-
Hi,
Iam Developing application Facebook Using Compact Framework.. i Logged in successfully i Dont
Know How to retrive Photo Albums from facebook.. pls me how should i proceed using Dot
Compact Framework..
Thanks in advance............
Monday, January 24, 2011 5:30 AM
Answers
-
Hi,
I think you need to find the right forum to ask facebook related question, check these links to see whether it helps:
http://support.palringo.com/palringo/topics/my_facebook_service_was_working_but_now_it_wont_connect
http://msdn.microsoft.com/en-us/library/bb932386.aspx
Thanks
Binze
Binze Zhao [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Marked as answer by Bin-ze Zhao Wednesday, January 26, 2011 5:58 AM
Monday, January 24, 2011 9:14 AM
All replies
-
Hi Sachidanandam,
I am not sure how to do it , however you can refer the link below :
http://msdn.microsoft.com/en-us/library/bb932386.aspx#WorkingwithPhotos
This might help you.
Thanks, Mohsin Shaikh |Mohzz.comMonday, January 24, 2011 5:36 AM -
Hi,
This is my coding i dont know where i got wrong pls help me to proceed............ for retriving
albums from facebook application usong compact framework..
public void album()
{
FacebookService fservice = new FacebookService();
Collection<Album> albums = fservice.GetPhotoAlbums();
int j=0;
foreach ( Album b in albums )
{
ListViewItem lv1 = new ListViewItem();
lv1.Tag = b;
lv1.ImageIndex = j;
listView1.Items.Add(lv1);
j++;
}
}Monday, January 24, 2011 5:42 AM -
Hi,
Iam Developing application Facebook Using Compact Framework.. i Logged in successfully i Dont
Know How to retrive Photo Albums from facebook.. pls me how should i proceed using Dot
Compact Framework..
his is my coding i dont know where i got wrong pls help me to proceed............ for retriving
albums from facebook application usong compact framework..
public void album()
{
FacebookService fservice = new FacebookService();
Collection<Album> albums = fservice.GetPhotoAlbums();
int j=0;
foreach ( Album b in albums )
{
ListViewItem lv1 = new ListViewItem();
lv1.Tag = b;
lv1.ImageIndex = j;
listView1.Items.Add(lv1);
j++;
}
}Thanks in advance............
- Merged by Bin-ze Zhao Wednesday, January 26, 2011 6:09 AM duplicated
Monday, January 24, 2011 6:40 AM -
Hi,
I think you need to find the right forum to ask facebook related question, check these links to see whether it helps:
http://support.palringo.com/palringo/topics/my_facebook_service_was_working_but_now_it_wont_connect
http://msdn.microsoft.com/en-us/library/bb932386.aspx
Thanks
Binze
Binze Zhao [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Marked as answer by Bin-ze Zhao Wednesday, January 26, 2011 5:58 AM
Monday, January 24, 2011 9:14 AM -
I met such a problem when I was using SQL Stored Procedure, I am not sure wheather I can help u ,;when i sovle my problem there is a mistake that: parameters type are not match.......Tuesday, April 19, 2011 1:32 PM