| Recent Answers |
 |
 |
2008-12-17 VB.NET - Edit items directly from list box: You either need to use a custom third party listbox control to achieve that OR you can creation your own custom control using a listbox and a textbox to enable this functionality. Alternatively you can...
|
2008-12-12 VB.NET - search crieter in vb.net: On the textchange event of the textbox control you can re-load the data with the proper filter applied. Your select query can change e.g. cmd.CommandText = "Select * from tableName where FieldName Like...
|
2008-12-10 VB.NET - How to get the count(*) value: if you want to know about how many rows are returned by a query you can simply run the query like: countCommand = New SqlCommand("Select count(*) FROM itm_maccessctrl where FlexAD = '" & ousername...
|
2008-12-08 VB.NET - vb loop: For sanity to prevail you must understand first what the code is doing itself. Replace: If TypeOf ctl Is Page Then CType(ctl, Page).Visible = False End If With: If...
|
2008-12-07 VB.NET - parallel arrays in vb.net: lets say you have two arrays one contains ItemCode and the other contains quantity you can do it like this: dim idxItem as Integer for i as integer = 0 to arrayOfCodes.Length-1 if arrayOfCodes(i)...
|