Forum: VB.NET Feb 5th, 2009 |
| Replies: 7 Views: 1,295 only one field is displaying? if this is the case you need to add another listbox add to the loop
While dr.Read()
ListBox1.Items.Add(dr(2))
ListBox1.Items.Add(dr(3))
End While |
Forum: VB.NET Feb 5th, 2009 |
| Replies: 16 Views: 1,953 took a quick, very quick look. to add the condition you need to finish the WHERE
cmd = New OleDbCommand("SELECT * from UMP WHERE ", cn)
'to
cmd = New OleDbCommand("SELECT * from UMP WHERE field... |
Forum: VB.NET Feb 4th, 2009 |
| Replies: 16 Views: 1,953 |
Forum: VB.NET Feb 4th, 2009 |
| Replies: 16 Views: 1,953 Do you already have your connection strings setup for the mdb? I will go with yes :)
are you sure that the search will only return one entry in the db? i would probably go with either a listbox or... |
Forum: VB.NET Dec 3rd, 2008 |
| Replies: 7 Views: 4,171 and this is how you reply to somebody trying to help. obviously other people have been able to figure it out. figure it out yourself. |
Forum: VB.NET Dec 3rd, 2008 |
| Replies: 7 Views: 4,171 not sure if this will help you much
http://bytes.com/groups/net-vb/356895-openfiledialog-problem |
Forum: VB.NET May 30th, 2008 |
| Replies: 5 Views: 1,636 would it be easier to only let the user select a date instead of insert? maybe change the textboxes to comboboxes and in the form load event do something like this:
Dim y As Date
y = Date.Today... |
Forum: VB.NET Jan 12th, 2008 |
| Replies: 1 Views: 2,616 I have used this as an example to create a marquee:
http://vbcity.com/forums/faq.asp?fid=15&cat=Forms&#TID78584 |
Forum: VB.NET Jan 11th, 2008 |
| Replies: 2 Views: 1,343 I have used this page as a reference in creating dll's
http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx |
Forum: VB.NET Jan 7th, 2008 |
| Replies: 5 Views: 7,092 i know of a couple of ways. in the properties of the button you can set the background as the image or you can pull a picturebox on the form and set its click event. |