Hi, I am implementing one windows form. I am inserting some
values into ms access. In that table 5 columns there. But I
want to insert three columns only. when I am clicking
another button then other two values also insert into that
table. please help me
Answers were Sorted based on User's Feedback
Answer / karthik
1st button
Insert into table names (@column1,@column2,@column3,'','')
2nd button
update tablename set column4=@column4,column5=@column5
where column1=@column1 and column2=@column2 and
column3=@column3
hope it will help
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / balaji
first time insetr five columns but two columns are empty
value thats null value when we click another button update
query is used insert remaining columns (where condition
filled columns value)
| Is This Answer Correct ? | 8 Yes | 0 No |
What are the new events in textbox that has been included in VB ?
Name the class to be inherited for creating a custom control.
How to create class level variable that can be assigned value at the time of declaration and in the constructor alone?
What are the components of gui for windows?
What is a windows forms application?
What is the difference between the add() and insert() methods of a listbox control?
What is the extension of a compiled help project file?
Are windows forms still used?
Clear property is available in which control?
Which command prompt utility is used to convert a resource file from the text format into the binary format?
Which method grants a lock on a resource?
Suppose I have two combobox .. And I have some items in both combobox now I need to check the item in both combobox if same item is present in both combobox I need to display that item in message box?