maybe the problem isnt with your statment, but with your connection?
StealthMaker
Posts
-
insert statment -
Combo Box row selectedcombobox1.selectedindex + 1 = the row number its +1 cause combobox index starts at 0 so the first item is at index 0 and the last is at count-1 in other words assuming the combobox is called combobox1 and the output is going to be in label1
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged Label1.Text = "You Clicked On row " & (ComboBox1.SelectedIndex + 1).ToString End Sub
-
Populating Dropdown listim not sure if this is what your looking for but...
Private Sub ddlStat_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ddlStat.SelectedIndexChanged ddlstat.items.clear dim i as integer For i = 0 To (DataSet11.Tables("status").Rows.Count - 1) ddlstat.items.add(DataSet11.Tables("employee").Rows(i).Item("Status_Name")) 'status_name = column name in table next end sub
-
Card32.dll mouse eventhello everybody, first off i wanna say thanks to everybody behind this website, its a great source of knowledge. now im having trouble adding mouse events to the cards being drawn using the cards32.dll functions, ive looked around but cant find anything that would explain what im supposed to do. what i need is to be able to click/drag (interact) with the cards drawn using cdtDrawExt function. thanks in advance.