Forum: C# 6 Days Ago |
| Replies: 7 Views: 167 option = Console.ReadLine(); |
Forum: VB.NET Oct 15th, 2009 |
| Replies: 28 Views: 1,237 i think there are extra inverted commas at the end of the update statement |
Forum: VB.NET Sep 30th, 2009 |
| Replies: 3 Views: 307 subquery is not the only way.
u can simply create another query and fetch the data from the other table.
alternatively u can also use data tables... |
Forum: VB.NET Sep 24th, 2009 |
| Replies: 4 Views: 566 what r u trying to do..?
do u want the user to enter only numeric values? |
Forum: VB.NET Sep 20th, 2009 |
| Replies: 7 Views: 636 first u have to think of a way to determine whether data is saved or not.
thn this factor can be used as a condition to determine if u want to run the above code or not.
Private Sub... |
Forum: VB.NET Sep 6th, 2009 |
| Replies: 6 Views: 420 r u using windows authentication login |
Forum: VB.NET Sep 6th, 2009 |
| Replies: 4 Views: 343 on button click event
me.close()
frmnewform.show() |
Forum: VB.NET Aug 13th, 2009 |
| Replies: 7 Views: 1,965 this is the property of the datagridview |
Forum: VB.NET Aug 13th, 2009 |
| Replies: 7 Views: 1,965 change the property
allow users to add row to false |
Forum: VB.NET Aug 12th, 2009 |
| Replies: 7 Views: 1,965 wht is the error tht u r geting |
Forum: VB.NET Aug 11th, 2009 |
| Replies: 6 Views: 480 lstData.items.add(datatable.rows("column name")(row).tostring) |
Forum: VB.NET Jul 27th, 2009 |
| Replies: 13 Views: 702 either delete the complete row and add a new row for the qty to be added or else use insert statement and specify only the qty column |
Forum: VB.NET Jul 27th, 2009 |
| Replies: 13 Views: 702 ok remove the try catch statement
and get the exact error tht u r getting |
Forum: VB.NET Jul 27th, 2009 |
| Replies: 13 Views: 702 why have u commented
dc.close.
the error might be because the connection is already open and u r again trying to open it |
Forum: VB.NET Jul 27th, 2009 |
| Replies: 13 Views: 702 u can use data table along with command builder to add data.
but u will have to create a new row in the data table.
the inserting part will be taken care by the command builder |
Forum: VB.NET Jul 27th, 2009 |
| Replies: 13 Views: 702 wht is the error tht u r getting? |
Forum: VB.NET Jul 26th, 2009 |
| Replies: 4 Views: 204 i also recommend using mdi form |
Forum: VB.NET Jul 26th, 2009 |
| Replies: 3 Views: 891 if its the selected value tht u want to add
then try
cbocustomer.selecteditem.tostring |
Forum: VB.NET Jul 11th, 2009 |
| Replies: 11 Views: 610 you can store each random no. in an array.
and when the next random no. is generated check whether it has been generated by checking the contents of the array. |
Forum: VB.NET Jul 10th, 2009 |
| Replies: 12 Views: 708 regarding ur parameter question
"?" indicates that this is the parameter. it is just any value.
but the value is decided by some other control.
eg.
insert into customer values "abc"
this is... |
Forum: VB.NET Jul 5th, 2009 |
| Replies: 12 Views: 708 u need to use queries to insert data.
eg.
u begin with establishing a connection with the statement
dim oledbcon As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data... |