No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
just a suggestion : i think it will work if you're trying to put the whole conversation on the TextBoxConversation. Sub FormMain_EnterKeyUp(sender As Object, e As KeyEventArgs) Handles Me.KeyUp Do Until e.KeyCode = Keys.Enter Sub Conversation() Loop End Sub -HappyCoding
Try this code and put in on the form where it loads(form load). Private Sub NotifyAccount() Dim start As Date = dr.ToString Dim ts As TimeSpan Dim days As Integer Dim cmd As SqlCommand Dim sql As String Dim reader As SqlDataReader ts = start.Subtract(Now) days = ts.Days If days …
check Database1.accdb if it has a security for log in. if it requires for a user and password. merge it into your connectionstring
look for an API to access their printer.
Try to convert it the image to byte: Public Function ConvertImageToByte(ByVal Img As Image) As Byte() Dim ms As MemoryStream = New MemoryStream() Img.Save(ms, Imaging.ImageFormat.Jpeg) Dim data(CInt(ms.Length)) As Byte ms.Position = 0 ms.Read(data, 0, CInt(ms.Length)) ms.Close() ms = Nothing ConvertImageToByte = data End Function
use getter and setter to get the value from SalesGView and bring it back when you exit ProdGView (e.g.) Public Property storedtype As String Get Dim o As Object = ViewState("storedtype") If Not o Is Nothing Then Return DirectCast(o, String) Return 0 End Get Set(ByVal value As String) ViewState("storedtype") = …
The End.
Richard Mon