Hi
I am very new to web programming, trying to achieve a task, I have a form with 3 dropdown box and a text field(which is readonly).
My problem now is, after selecting the above 3 dropdown boxes, its values should be populated at the text box value, Ex
dropdown value 01 = Place (1MUM)
dropdown value 02 = Year (10)
dropdown value 03 = Course (MCA)
text value = Place+Year+Cour se
...
Search Result
Collapse
5 results in 0.0053 seconds.
Keywords
Members
Tags
-
Populate textbox value with option value
-
sql server ce
hi, is it possible to populate a sql server ce database from a rss feed using visual studio 2008? and if so could you show me an example?
Many Thanks -
problems with populating multiple combobox with data from other combobox
Hello!
I have this code:
Dim j, i As Integer
Dim dbs As Database
Dim tbl_name As Recordset
Set dbs = CurrentDb
For i = 0 To cboCol.ListCoun t - 1
cboCol.RemoveIt em s
Next i
'dbs.TableDefs( cboTable.Value) .Fields(i).Name
For j = 0 To dbs.TableDefs(c boTable.Value). Fields.Count - 1
With cboCol
.AddItem dbs.TableDefs(c boTable.Value). Fields(j).Name... -
Auto populate fields from sql database.
I need some help or tips on the following.
I have a .sql database file with the folowing structure:
Code:DROP TABLE IF EXISTS `car`; CREATE TABLE IF NOT EXISTS `car` ( `id` int(10) default NULL, `Make` text, `Model` text, `Year_` text, `Car_Fuel` text, ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
Populate table from data in subforms
I have a main form that contains a listbox. The user must choose from the list of Scheduled Classes.
I have the following tables
tblScheduleSetu p
tblSupplierInfo rmation
tblRoster
the tblScheduleSetu p contains all the class information. The user must choose the correct class, then the next subform tblSupplierInfo rmation contains all the Supplier number/address/etc.... User must choose the...