Maybe any help to have some "UpdateContact" function ? Updating NOTES without changing all other fields is needed...
Hey everyone,
Now, Basic4Android still lack some functions that we, users, can implement with the form of a library.
Package Index | Android Developers
I won't wrap libraries. (Basically because I don't know on how to do it, or it is to hard )
Sincerely,
Tomas
Imports System.Net
Imports System.Net.Sockets
Public Class Form1
Dim sock As New TcpClient()
Dim ip As IPAddress = IPAddress.Parse("127.0.0.1")
Dim port As Integer = 10130
Private Sub connect()
If TextBox_IP.Text = "localhost" Then
TextBox_IP.Text = "127.0.0.1"
End If
ip = IPAddress.Parse(TextBox_IP.Text)
port = TextBox_Port.Text
Try
sock.Connect(ip, port)
lblState.Text = "Connected!"
Btn_Connect.Text = "Disconnect!"
Catch ex As Exception
MsgBox("Unable to connect to server. Other device might be offline.")
lblState.Text = "Disconnected!"
Btn_Connect.Text = "Connect!"
End Try
End Sub
Private Sub dat(ByVal dat As String)
Dim nstream As NetworkStream = sock.GetStream()
Dim bit As [Byte]() = System.Text.Encoding.ASCII.GetBytes(dat)
nstream.Write(bit, 0, bit.Length)
End Sub
Private Sub Btn_Connect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Btn_Connect.Click
connect()
End Sub
Private Sub Btn_Path_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
dat("0*" + TextBox_Path.Text)
End Sub
Private Sub Btn_Send_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
dat("1*" + TextBox_Send.Text)
End Sub
Private Sub Btn_OpenCD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
dat("2*")
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class
Have you seen the charts framework: Android Charts Framework[/
Yes Erel I saw it. Thanks for this lib, but the lib I mean has many advantages.
For example zooming an scrolling.
You can see this lib in action by OruxMaps.
Have a nice day
cheers
sigges
Me too would love more and better charts.
Would be useful in several projects.