The idea was, to create a program that would type into GoogleDocs, and read from it, thereby creating a " chat ".
Now, I'm not exactly how to do this, what I've tried so far, in terms of typing into it is:
Which obviously doesn't work, as it's meant for local paths on the pc. Could you create a file that would reach this website to, create a shortcut of some sort?Code:Dim W As IO.StreamWriter Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnSendMessage.Click W = New IO.StreamWriter("GoogleDoc Link Here") W.WriteLine(TxtMessage.Text) End Sub
How can I do this?




Reply With Quote
