Re: Ajax Combbox without submit button Programming by Hamis_3 … you suggested, but two more things again, Firstly, on the combbox selection I added some decimals 0.25, 0.5 and… id of an item so that when I select on combbox the update should only be done on a specific column… datagridview combobox colomn Hardware and Software Microsoft Windows by Rishad_rish2000 hi all, i hav added 2 combobox columns in to datagridview. when i click first combbox cell the second combbox cell value should chaged automatically. this is m y reqiurment.pls somone can hepl me to do this. Re: Having a problem with datagrid view and combobox Programming Software Development by scooby36 … filter when I added the Account name ,which is the combbox display member, to the sql select statement [CODE]Dim Count… Re: Need Help in TextBox Programming Software Development by Pgmer Hi Jemz.. No Need of combbox. for a text box there is a property called autocompleteSoruce you get all the text which u want to show in textbox when user enters a text from ur databse and bind it. and set the proprty autocompletemode of text box, APPEND,SUGGEST.. whatever u want. Hope this helps u Re: Need Help in TextBox Programming Software Development by jemz [QUOTE=Pgmer;1595009]Hi Jemz.. No Need of combbox. for a text box there is a property called autocompleteSoruce … Re: Sql query using Combobox Programming Software Development by ChrisHunter you need to make sure your combobox is accessable (make it public) and do something like [CODE] int id = Convert.ToInt32(combBox.text); string sqlStatement = "SELECT columnName1, columnName2, columnName3 FROM TableName WHERE IDColumn = ' + id + '"; [/CODE] Hope this helps Re: How to retrieve Items of ComboBox that are stored into Dictionary Programming Software Development by tinstaafl Try: Dim TempComboBox As CombBox = DirectCast(Me.Controls(selectedControl.Name), ComboBox) For Each item As String In TempComboBox.Items 'Do Stuff Next On a side not, the same concept can be used for the 'Text' property without the need for a dictionary. Inserting combbox text into different MySQL table. Programming Web Development by blivori I have an html page that gets data from 'hs_hr_employee' table and lays the info in a table on a web page. Then I have another table 'rights' which gets info from 4 columns from the 'hs_hr_employee' table and stores them in columns. In addition to those 4, the 'rights' table has an extra column 'Permissions'. Now, I have a combobox with 4 … Re: Inserting combbox text into different MySQL table. Programming Web Development by mathieu89 thats a very confusing post. however, something in the select name doesnt look right. [CODE]<select name='cb_permissions['".$row['emp_number']."'>[/CODE] Possibly an extra bracket at the start ...ions['".$row... maybe try this [CODE]<select name='cb_permissions'".$row['emp_number']."'>[/CODE] ref:line71 Ajax Combbox without submit button Programming by Hamis_3 Hi guys I need a help here, I’m trying to use Ajax to update the column of the table in the database with combobox without a submit button, by the way it update the column finely but unfortunately the column data is erased to **0** when a webpage is refreshed. May aim is to maintain the column’s data until is updated again. Any help will be … Re: Ajax Combbox without submit button Programming by grant.baker Because you are including idadi.php along with your form, it would reset the value to "0" if the page is loaded without any `$_GET` data sent. I'm not an expert in writing AJAX requests without using a framework, but it looks like what you have might be loading the form page. If you want to leave it this way, then you would need to catch … Re: Ajax Combbox without submit button Programming by grant.baker Regarding your first question. Do you have the column length set to 1? I'm not a database expert, and I haven't used Double as a column type before. I always use Decimal, but from what I've read, Double and Decimal are virtually the same except for precision. So the only reason I can think for it to be setting to 0 is if you have the column limited…