Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
Ranked #4K
~10.5K People Reached

6 Posted Topics

Member Avatar for Programmer592

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

Member Avatar for Programmer592
0
192
Member Avatar for OtepTheThird

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 …

Member Avatar for Santanu.Das
0
3K
Member Avatar for Xiao_1

check Database1.accdb if it has a security for log in. if it requires for a user and password. merge it into your connectionstring

Member Avatar for Xiao_1
0
113
Member Avatar for Mr.M
Member Avatar for Doogledude123

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

Member Avatar for Richard Mon
0
161
Member Avatar for ikocrush

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") = …

Member Avatar for Richard Mon
0
532

The End.