Send Data To Create A Post On My Facebook Wall From Desktop Application?

Jan 11, 2012

I have written a vb.net desktop application for pipe collectors and one of the requests that seems popular is to be able to post pipe details (text) and an image of the pipe onto the user's facebook wall.

Basically the user will bring up their pipe details of choice and be able to click a 'Post To Wall" button which would then post the pipe details onto their wall.

View 1 Replies


ADVERTISEMENT

Post To Wall On Facebook?

Dec 20, 2010

This is how you I did it when I make a similar program to this and it show how to click etc
vb
WebBrowser1.Document.GetElementById("username").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("password").SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.GetElementById("sublogin").InvokeMember("click")

View 5 Replies

Create An Auto-alert When Somebodys Post On Your Wall

Jun 5, 2011

How can i start to create a Auto alert when somebodys post on your wall. just like facebook.

View 3 Replies

Get User's Facebook Wall Feed In .net?

Dec 9, 2010

I want to display a user's wall feed and news feed on my site. How can I do this?Is there any way to pull the feed without having to get an authorization token? If I need a token, how do I get that?

View 1 Replies

POST And GET For A VB 2010 Desktop Application

Aug 28, 2010

I'm creating a desktop application that will update my IPv6 tunnel with my current IPv4 address. I've coded a couple of POST and GET statements years ago, but honestly I don't know how to do this in VB2010. The url is [URL] (I broke the url, so it would show in it's entirety). and I know that I'll have to create a string with the information in it. I just don't know what I need to use to code the POST to the website, or retrieve the server response (and place it into a label).

[Code]...

View 1 Replies

Log In To Facebook Using Post Method?

Jan 24, 2011

How can I log in to Facebook Using the Post Method? I don't need to know the GET method, I can use a firefox addon called Live Http Headers to get the cookies/Post content.

View 2 Replies

Asp.net - Can't Send Post Data To Another Server

May 17, 2011

this is my code right now:

[Code]...

View 2 Replies

Post An Image To Facebook And Flickr

Jun 3, 2010

I want to add the ability to post images to facebook or Flickr in my app. Basically, they just browser for the file using an OpenFileDialog to get the path. Then they click an 'Upload to Flickr' or 'Upload to Facebook' option. Unfortunately - i have no idea how to do the upload to facebook/flickr part? How is it done?

View 2 Replies

VS 2010 How To Post To Facebook Notes

Dec 27, 2011

I was looking at the Facebook Developers page trying to find out how to post notes from my VB desktop app. However, I could only seem to find info on how to have users log into websites using Facebook and info on building Facebook friendly iPhone apps. Does anyone have any idea how to do this from a desktop app?

View 5 Replies

Send E Mail From A .net Desktop Application?

Mar 25, 2011

Imports System.Net.Mail
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Mail As New MailMessage()

[code]....

then i am getting this error.The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required

View 6 Replies

VS 2008 How To Post Message On Twitter And Facebook

Sep 22, 2010

sendmessage on twitter and Facebook i use WPE for packet but that packet to encryption
please source code or example for sendmessage on Twitter and Facebook

View 4 Replies

[2008] Send POST Data To Current Webpage In Webbrowser

Mar 1, 2009

I wanna send POST data to the current web page viewed in my webbrowser. It's for logging into a page so the fields are "Username" and "Password". And then I might have to make it press the "Log in" button?

EDIT: It was easier than I thought when you don't need to do it silent in the background.

PHP
WebBrowser1.Document.GetElementById("username").SetAttribute("Value", txtPassword.Text)WebBrowser1.Document.GetElementById("password").SetAttribute("Value", txtPassword.Text)

Now I just need to figure out how to press the submit button

View 3 Replies

Make A Facebook App But Can't Seem To Find The Name To The Status Update Box And The Post Button?

Jun 9, 2012

Im attempting to make a Facebook app, but i cant seem to find the name to the status update box and the post button, if someone could help me that would be great. this is what i have so far.

i do have the name to the [CODE]WebBrowser1.Document.GetElementById("xhpc_message_text").SetAttribute("value", KryptonRichTextBox1.Text)[CODE] but it some reason wont work. im coding in visual studio.

Code:
Public Class Form11
Private Sub KryptonButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles KryptonButton1.Click

[code]....

View 1 Replies

How To Program Facebook Desktop Apps

Jan 10, 2010

how to program facebook desktop apps...but i downloaded the facebook dev kit but how do i ad it to the visual basic or visual studio library to be able to use it...because there is no installer...just 2 main files with sub-files. Csharp and Vb...what to do?

View 3 Replies

Send A Pure Oop Based Desktop Application Developed In .net 2008 And Sql Server 2005?

Dec 23, 2010

would like to send me a pure oop based desktop application developed in vb.net 2008 and sql server 2005?

View 3 Replies

Asp.net Mvc - Getting FanPage Wall Feed Without Application Using .NET?

Jul 25, 2011

I would like to show the latest updates from my fan page wall on my blog using .NET (C#/VB).After reading Facebook Graph API Docs I understand that I need access_token to make this call .I noticed that Wibiya's Toolbar show's wall feed without asking permissions but somehow, they got access_token to make this call.

View 3 Replies

Create An API For Desktop Application?

Sep 17, 2010

Is it just me or did google change the way it returns results - drastically - ? I can't seem to find anything I'm looking for in the last week or so!I'm trying to find out how to create an API for my desktop application.

View 7 Replies

VS 2005 - Create A "post Office" Program That Will Send Html Emails Thru The System.net.mail Framework

Oct 19, 2009

I am a one man dev shop and need some outside opinions on how to approach this project.

I need to create a "post office" program that will send html emails thru the system.net.mail framework.

For each job submitted to the postoffice the app would need to read a user created html email string from the database, read a string of email addresses to send to and send out the emails based on a set processing time.

The first step would be to parse out the email addresses to find out how many emails it needs to send out and determine how many it would need to send per minute to complete the job in 20 minutes tops. I.e. if 1000 email addresses are submitted per job it would determine that it needs to send 50 emails per minute to complete the job.

The part I am stuck on is how I should queue the emails. If the app determines it needs to send 50 a minute should I only load up the first 50 on a timer event then get the next 50 queued up for the next timer tick? Or would it be better to load up all 1000 in a loop and build in some kind of wait time after it sends the first 50?

View 3 Replies

Create A Desktop Shortcut To Application On Install

Dec 22, 2009

How do I create a desktop shortcut to my application when the user presses setup to install?

View 7 Replies

Create Desktop Icon When Installing An Application?

Jul 22, 2009

Does anyone know of a way to create a desktop icon when installing an application, in addition to adding it to the start menu.

View 5 Replies

Create Remember Me Chechkbox In Desktop Application?

Jan 26, 2011

this is me again.. a newbie to VB.NET..how to create Remember me Chechkbox in Desktop application with VB.NET.

so the case is, i have a login form, and my customer said that she will sell the application to people who doesnt good enough to memorize username and password, so she ask me to put remember me function to the login form...

View 10 Replies

Create Setup File Of A Desktop Application

Jun 12, 2009

I want to create setup file of a desktop application using vb.net.

View 3 Replies

Setup Application Create A Desktop Shortcut?

Jan 15, 2010

I have a project that I've published to a network drive with a setup file that works great but I cannot get it to create a Desktop shortcut. I don't have the option in the publish settings to allow this and I cannot find code that will work for me. Does anyone have any suggestions how to have the setup file automatically create a desktop shortcut? I'm using Visual Studio 2008.

View 1 Replies

Create A Program That Connects To Several Websites, Logins, Then Post Some Data?

Nov 29, 2009

I use Visual Basic.net to create a program that connects to several websites, logins, then post some data. I can't use the httpwebrequest, some java is required on those sites, so i use the webbrowser control.Now I created a form, some fields for input data and a submit button. The coding part is like this:

Code:
sub website1(vars)
'login here
'post some data

[code].....

The problem is that I can't control what happens after submit button is clicked. I need to pause or stop the process at any time. If I exit the program while processing, I can see that even if the window disappear, the program is still running!I tried to use a thread for this, but the subs only get called if I use begininvoke, or invoke on a starter thread.

View 1 Replies

GPS DATA To VB DESKTOP APPLICATION

Feb 25, 2011

i have a simple phone which supports GPS (to be more specific is HTC HD windows mobile) my main scope is to develop a desktop application which i can set up a connection between the phone and the desktop application to read some coordinates of the receiving gps data and display them to a simple textbox or msgbox. the only way to connect the phone to a pc is via USB port. can i do that? i have check on the internet but all they are referring to a non build in phone gps, but to an individual GPS devices only.

View 10 Replies

Making A Facebook Chat To Receive And Send Messages

Apr 15, 2012

I want to make a facebook bot that will answer questions that get sent to me. I need to know how to make my application send and receive messages.

View 3 Replies

Make An Application That Post Data To A Joomla Login Page?

Oct 17, 2009

i am trying to make an application that post data to a joomla login page but the only thing i get back is cookies is not enabled.

Function GetPage(ByVal Url As String) As String
Dim CookieJar As New Net.CookieContainer
Dim enc As Encoding = Encoding.GetEncoding(1252)
Dim Data As Byte() = Nothing

[code]....

View 1 Replies

Post A Windows Application That Uses Excel For Live Data Calculations?

Jul 14, 2009

Can I Post a Windows Application that uses Excel for live data calculations? Basically from the Windows app, a user makes a menu selection and which in turn opens an excel file in memory using it for calculations. These files are put together by different groups and formatted for the Windows app to build interfaces based on each file.I also accompany an .mdf file as well. Is all this possible for customers to access and run this with Windows Azure.

View 2 Replies

Get Data From A Website To My Desktop Application?

Dec 13, 2009

This website "[url]..." contains currency exchange rate, and it's useful to my desktop application " bill system " .the question is: How to get data from this website to my desktop application textboxes ?

View 4 Replies

Send Credentials To Facebook And Automatically Press The 'login Button'?

Aug 12, 2011

I wanna send my credentials to facebook.com and to automatically press the 'login button' and I've tried this:

webbrowser1.navigate(http://www.facebook.com/)
webbrowser1.document.GetElementById("email").SetAttribute("value", "my email")
webbrowser1.document.GetElementById("pass").setAttribute("value", "My password")
webbrowser1.document.GetElementById("I cannot find the ID for the login key..please help").invokemember("click")

Nothing happens?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved