Click here to Skip to main content
15,895,667 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVisual Basic Codes 6.0 Pin
Asheeledio5-Jul-18 23:32
Asheeledio5-Jul-18 23:32 
AnswerRe: Visual Basic Codes 6.0 Pin
Richard MacCutchan5-Jul-18 23:36
mveRichard MacCutchan5-Jul-18 23:36 
AnswerRe: Visual Basic Codes 6.0 Pin
Chris Quinn5-Jul-18 23:41
Chris Quinn5-Jul-18 23:41 
AnswerRe: Visual Basic Codes 6.0 Pin
Dave Kreskowiak6-Jul-18 13:48
mveDave Kreskowiak6-Jul-18 13:48 
Questioncan't connect to finger print scanning device from windows server 2003 Pin
Meax5-Jul-18 0:36
Meax5-Jul-18 0:36 
AnswerRe: can't connect to finger print scanning device from windows server 2003 Pin
Richard Deeming5-Jul-18 1:38
mveRichard Deeming5-Jul-18 1:38 
GeneralRe: can't connect to finger print scanning device from windows server 2003 Pin
Meax5-Jul-18 8:06
Meax5-Jul-18 8:06 
Questionhow to highlight dates of Month Calendar from database windows form Pin
Meax2-Jul-18 20:01
Meax2-Jul-18 20:01 
Dim DateAsString As New ArrayList

this is the part i am using in form load to get all the dates for the Meeting.
private sub getalldate()
Dim connectionString As String = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MyDB;Data Source=192.168.0.8"
Dim connection As SqlConnection = New SqlConnection(connectionString)
connection.Open()
Dim sql As String = "SELECT MeetingDate FROM Meetings"
Dim command As SqlCommand = New SqlCommand(sql, connection)
Dim reader As SqlDataReader = command.ExecuteReader()
If (reader.Read()) Then
If (reader.HasRows) Then
While reader.Read()
dateasstring.Add("#" & reader(0) & "#")
End While
End If
End If
reader.Close()
connection.Close()
end sub

private sub makedatesboldincalendar()
Dim num As Date
Dim dtArrSpecialDates() As Date
For Each num In dateasstring
    dtArrSpecialDates = {num}
    MonthCalendar1.BoldedDates = dtArrSpecialDates
Next

end sub

what happens is it makes date bold but only the last date it is getting from database. there are more than 10
entries in the Meetings table.

so, how can i highligh all the dates i am getting from database?
AnswerRe: how to highlight dates of Month Calendar from database windows form Pin
Richard MacCutchan2-Jul-18 21:08
mveRichard MacCutchan2-Jul-18 21:08 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Meax2-Jul-18 22:19
Meax2-Jul-18 22:19 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Richard MacCutchan2-Jul-18 22:20
mveRichard MacCutchan2-Jul-18 22:20 
AnswerRe: how to highlight dates of Month Calendar from database windows form Pin
Richard Deeming3-Jul-18 0:48
mveRichard Deeming3-Jul-18 0:48 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Meax5-Jul-18 0:25
Meax5-Jul-18 0:25 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Mycroft Holmes5-Jul-18 13:00
professionalMycroft Holmes5-Jul-18 13:00 
GeneralRe: how to highlight dates of Month Calendar from database windows form Pin
Meax15-Jul-18 18:18
Meax15-Jul-18 18:18 
Questionhow to create a VB ActiveX interface Pin
Sakthiu1-Jul-18 23:50
Sakthiu1-Jul-18 23:50 
AnswerRe: how to create a VB ActiveX interface Pin
Richard MacCutchan2-Jul-18 0:27
mveRichard MacCutchan2-Jul-18 0:27 
Questionvb.net parsing of string data Pin
dcof26-Jun-18 6:23
dcof26-Jun-18 6:23 
AnswerRe: vb.net parsing of string data Pin
Richard MacCutchan26-Jun-18 6:30
mveRichard MacCutchan26-Jun-18 6:30 
GeneralRe: vb.net parsing of string data Pin
dcof26-Jun-18 7:41
dcof26-Jun-18 7:41 
GeneralRe: vb.net parsing of string data Pin
Richard MacCutchan26-Jun-18 8:40
mveRichard MacCutchan26-Jun-18 8:40 
AnswerRe: vb.net parsing of string data Pin
Richard Deeming26-Jun-18 12:14
mveRichard Deeming26-Jun-18 12:14 
GeneralRe: vb.net parsing of string data Pin
dcof27-Jun-18 10:52
dcof27-Jun-18 10:52 
QuestionHow to call a 'C' program function from VB code ? Pin
Sakthiu26-Jun-18 3:45
Sakthiu26-Jun-18 3:45 
AnswerRe: How to call a 'C' program function from VB code ? Pin
Richard MacCutchan26-Jun-18 6:25
mveRichard MacCutchan26-Jun-18 6:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.