<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: VBA Framework</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Karthik</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36572</link>
		<dc:creator>Karthik</dc:creator>
		<pubDate>Mon, 22 Dec 2008 17:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36572</guid>
		<description>&lt;p&gt;I dont know where to put the question. But I m kind of bugged so I am putting it here. I am a Major In Metallurgy and Material Science but interested in excel. I need help on a particular topic.&lt;br&gt;
I have made a userform in excel which has 1 combobox and 5 textboxes.&lt;br&gt;
i have source data as an excel sheet in the same workbook.&lt;br&gt;
I initialized the userform to display all values of my combobox which is in the 1st column&lt;br&gt;
Now if I select a particular value from the dropdown list of the combobox I want the textbox fields to be automatically filled by their corresponding values in the spreadsheet. How to do this. Please Help???&lt;br&gt;
Thanking in Advance&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I dont know where to put the question. But I m kind of bugged so I am putting it here. I am a Major In Metallurgy and Material Science but interested in excel. I need help on a particular topic.<br />
I have made a userform in excel which has 1 combobox and 5 textboxes.<br />
i have source data as an excel sheet in the same workbook.<br />
I initialized the userform to display all values of my combobox which is in the 1st column<br />
Now if I select a particular value from the dropdown list of the combobox I want the textbox fields to be automatically filled by their corresponding values in the spreadsheet. How to do this. Please Help???<br />
Thanking in Advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36381</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 11 Dec 2008 20:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36381</guid>
		<description>&lt;p&gt;Something else I noticed (just a error handling piece), how do you handle the run-time error you get when you click the windows close button instead of the form close button.&lt;/p&gt;
&lt;p&gt;(I get this funky &quot;callee, not server callee, may have been executed, blah blah, etc etc&quot; message).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Something else I noticed (just a error handling piece), how do you handle the run-time error you get when you click the windows close button instead of the form close button.</p>
<p>(I get this funky &#8220;callee, not server callee, may have been executed, blah blah, etc etc&#8221; message).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36371</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Thu, 11 Dec 2008 01:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36371</guid>
		<description>&lt;p&gt;Re parent/child:  I think the class modules will be easy since they&#039;re naturally encapsulated.  But filling the classes presents the problem.  I can definitely create code that gets an Employees instance as an argument and fill a Paychecks class for that employee, but from where would I call that sub?  Would I modify the FillEmployeesClass to call FillPaychecksClass(clsEmployee as CEmployee)? That&#039;s seems tougher particularly since the user could have modified FillEmployeesClass and I wouldn&#039;t be sure just where everything is.  I could just not call it and leave that step to the user.  Or I could create the call code, put it outside of a module for the user to cut and paste into the proper place.  I need to do just enough to make this useful without going overboard.&lt;/p&gt;
&lt;p&gt;Keep the suggestions coming.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Re parent/child:  I think the class modules will be easy since they&#8217;re naturally encapsulated.  But filling the classes presents the problem.  I can definitely create code that gets an Employees instance as an argument and fill a Paychecks class for that employee, but from where would I call that sub?  Would I modify the FillEmployeesClass to call FillPaychecksClass(clsEmployee as CEmployee)? That&#8217;s seems tougher particularly since the user could have modified FillEmployeesClass and I wouldn&#8217;t be sure just where everything is.  I could just not call it and leave that step to the user.  Or I could create the call code, put it outside of a module for the user to cut and paste into the proper place.  I need to do just enough to make this useful without going overboard.</p>
<p>Keep the suggestions coming.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36369</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 10 Dec 2008 20:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36369</guid>
		<description>&lt;p&gt;Again, thinking out loud, specifically about the parent/child class thing, I&#039;m guessing you&#039;d need to read the available classes of whatever your target VBE Project is (or will be) and, chose one (via combobox, maybe?), then, if you choose to make that a child of the selected parent, then you&#039;d have to do a few additional steps:&lt;br&gt;
1. insert the child into the parent class&lt;br&gt;
2. (and this one would be optional, but handy) set up the parent pointer&lt;/p&gt;
&lt;p&gt;Also, looking through your example, what would be a great side-project to this one (ha, ha) would be to create the same kind of framework but for user forms (since they&#039;re really just class objects, after a fact). But just thinking about how to go about that makes my head want to explode.&lt;/p&gt;
&lt;p&gt;But, you&#039;d have one killer VBA Framework/Project Builder!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Again, thinking out loud, specifically about the parent/child class thing, I&#8217;m guessing you&#8217;d need to read the available classes of whatever your target VBE Project is (or will be) and, chose one (via combobox, maybe?), then, if you choose to make that a child of the selected parent, then you&#8217;d have to do a few additional steps:<br />
1. insert the child into the parent class<br />
2. (and this one would be optional, but handy) set up the parent pointer</p>
<p>Also, looking through your example, what would be a great side-project to this one (ha, ha) would be to create the same kind of framework but for user forms (since they&#8217;re really just class objects, after a fact). But just thinking about how to go about that makes my head want to explode.</p>
<p>But, you&#8217;d have one killer VBA Framework/Project Builder!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36367</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 10 Dec 2008 19:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36367</guid>
		<description>&lt;p&gt;Something else that came to mind this morning that would make it even more dynamic is to have an additional field at the top of the form where you can browse for the MDB you&#039;re looking for using  GetOpenFilename. That way you don&#039;t have to hardcode the path and filename.&lt;/p&gt;
&lt;p&gt;Just thinking out loud, really.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Something else that came to mind this morning that would make it even more dynamic is to have an additional field at the top of the form where you can browse for the MDB you&#8217;re looking for using  GetOpenFilename. That way you don&#8217;t have to hardcode the path and filename.</p>
<p>Just thinking out loud, really.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36364</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Wed, 10 Dec 2008 16:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36364</guid>
		<description>&lt;p&gt;Good one on the read-only, Scott. I think I&#039;ll also let the user choose the VBProject from a dropdown rather than write to the activeworkbook.  I really want to make the Paychecks class a child of the Employee class, but I&#039;m not sure the best way to implement it yet.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Good one on the read-only, Scott. I think I&#8217;ll also let the user choose the VBProject from a dropdown rather than write to the activeworkbook.  I really want to make the Paychecks class a child of the Employee class, but I&#8217;m not sure the best way to implement it yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36362</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 10 Dec 2008 14:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36362</guid>
		<description>&lt;p&gt;Love it. Love it love it LOVE IT.  I took the original code from the &quot;Create Classes&quot; post and started using it immediately because I found it just so very useful. But this is great stuff! It takes so much of the grunt work out of it for you.  &lt;/p&gt;
&lt;p&gt;I&#039;m afraid I can&#039;t offer any huge suggestions about what to add or keep at this point. You might want to let users chose whether the fields they&#039;re selecting for classes are read-only or read-write (that&#039;s all I&#039;ve got off the top of my head), but whatever the additions, I can&#039;t wait to see the next iteration of this thing.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Love it. Love it love it LOVE IT.  I took the original code from the &#8220;Create Classes&#8221; post and started using it immediately because I found it just so very useful. But this is great stuff! It takes so much of the grunt work out of it for you.  </p>
<p>I&#8217;m afraid I can&#8217;t offer any huge suggestions about what to add or keep at this point. You might want to let users chose whether the fields they&#8217;re selecting for classes are read-only or read-write (that&#8217;s all I&#8217;ve got off the top of my head), but whatever the additions, I can&#8217;t wait to see the next iteration of this thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36358</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Wed, 10 Dec 2008 03:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36358</guid>
		<description>&lt;p&gt;Oops.  Fixed.  Thanks Tom.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Oops.  Fixed.  Thanks Tom.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Wood</title>
		<link>http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/#comment-36350</link>
		<dc:creator>Tom Wood</dc:creator>
		<pubDate>Tue, 09 Dec 2008 15:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1919#comment-36350</guid>
		<description>&lt;p&gt;Dick&lt;br&gt;
The Payroll.mdb file was not included. Only the Payroll.idb locking file. Oops :)&lt;br&gt;
Tom&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dick<br />
The Payroll.mdb file was not included. Only the Payroll.idb locking file. Oops <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />
Tom</p>
]]></content:encoded>
	</item>
</channel>
</rss>

