![]() |
#1
|
|||
|
|||
![]()
Hi,
I want to populate textbox (activex) in word based on combobox(activex) selection - filled from excel. I have a column named Koda2 in excel file named "popravila" in worksheet basisdaten, and a want when i choose a value in combobox to fill a textbox with the value from the same worksheet in column "nanosi". ex. koda2 nanosi 12312 45m 78429 94m ... When I choose 12312 in combobox i want to fill automatically textbox with value 45m. I fill combobox with that code: Code:
Public Sub UserForm_Initialize() Dim db As DAO.Database Dim rs As DAO.Recordset Dim NoOfRecords As Long Set db = OpenDatabase("C:\Users\Ivan_Andriana\Documents\Iskra ISD\popravila\popravila.xls", False, False, "Excel 8.0;") Set rs = db.OpenRecordset("SELECT * FROM Koda2") With rs .MoveLast NoOfRecords = .RecordCount .MoveFirst End With ComboBox1.ColumnCount = rs.Fields.Count ComboBox1.Column = rs.GetRows(NoOfRecords) rs.Close db.Close Set rs = Nothing Set db = Nothing End Sub ![]() Last edited by macropod; 02-21-2013 at 07:29 PM. Reason: Added code tags & formatting |
#2
|
||||
|
||||
![]()
Cross-posted at: http://www.vbaexpress.com/forum/showthread.php?t=45401
For cross-posting etiquette, please read: http://www.excelguru.ca/content.php?184 Also, when posting code, please use the code tags. They're on the 'Go Advanced' tab.
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
how to populate textbox based on combobox selection in word | IvanGeorgiev | Word | 1 | 02-21-2013 07:32 PM |
![]() |
ramsgarla | Word VBA | 9 | 12-05-2012 03:23 AM |
![]() |
scarymovie | Word VBA | 5 | 05-16-2012 07:05 PM |
Macro to populate a text form field based on dropdown selection | koloa | Word | 0 | 10-20-2011 11:52 AM |
Textbox updating from combobox selection | paxile2k | Word VBA | 0 | 10-26-2010 02:30 PM |