<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; VBA: Заголовок динамической таблицы в ComboBox]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=14628&amp;type=atom" />
	<updated>2019-03-04T09:49:18Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=14628</id>
		<entry>
			<title type="html"><![CDATA[Re: VBA: Заголовок динамической таблицы в ComboBox]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=132768#p132768" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Option Explicit
Private Sub UserForm_Activate()
    Dim i As Long, Text As String
    With ActiveWorkbook.ActiveSheet.UsedRange
        ComboBox1.Value = .Cells(1, 1).Text
        For i = 1 To .Columns.Count
            Text = .Cells(1, i).Text
            If Text &lt;&gt; &quot;&quot; Then ComboBox1.AddItem .Cells(1, i).Text
        Next
    End With
End Sub
</code></pre></div><p>Наверное как-то так.</p>]]></content>
			<author>
				<name><![CDATA[Xameleon]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=8836</uri>
			</author>
			<updated>2019-03-04T09:49:18Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=132768#p132768</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[VBA: Заголовок динамической таблицы в ComboBox]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=132699#p132699" />
			<content type="html"><![CDATA[<p>Здравствуйте.<br />Каким образом можно отобразить (путем загрузки или в свойствах объекта) в выпадающем списке объекта <strong>ComboBox</strong> (excel) заголовки динамической таблицы (tabl_group)?</p>]]></content>
			<author>
				<name><![CDATA[segail]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=39995</uri>
			</author>
			<updated>2019-03-03T10:29:49Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=132699#p132699</id>
		</entry>
</feed>
