<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dialog Box:  Assigning IDs to controls.  Which button is which in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357150#M1139</link>
    <description>&lt;P&gt;The 'yet to be determined' red icon was part of it.&amp;nbsp; Failing to ID GroupBox controls around my radio buttons was another part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; have no longer lost track of which button is which!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_0-1664234437000.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30164i1CCD621E47D26972/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_0-1664234437000.jpeg" alt="MudratDetector_0-1664234437000.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2022 23:21:19 GMT</pubDate>
    <dc:creator>MudratDetector</dc:creator>
    <dc:date>2022-09-26T23:21:19Z</dc:date>
    <item>
      <title>Dialog Box:  Assigning IDs to controls.  Which button is which</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357145#M1136</link>
      <description>&lt;P&gt;Development in Archicad 24.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have lost track of which button is which in my dialog.&amp;nbsp; What I am about to describe is how I &lt;STRONG&gt;THINK&lt;/STRONG&gt; it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First few buttons in the .grc file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;'GDLG' 32500  Modal	0	   0  650  620		"JHP:  UL Fire Assembly details" {
/* [  1] */ Button	 20    40  135    35	LargePlain	"UL Assemblies - JHP"
/* [   ] */ Icon	 20   100  135    35	JHP_UL_RED_B
/* [  2] */ Button	179    40  135    35	LargePlain	"GA Assemblies - JHP"
/* [  3] */ Button	338    40  135    35	LargePlain	"UL Assemblies - ONLINE"
/* [  4] */ Button	497    40  135    35	LargePlain	"GA Assemblies - ONLINE"

/* [   ] */ GroupBox	20  100   295  250	LargePlain	Primary	"Floor-Ceilings:"
/* [  5] */ RadioButton	50  120   240   30	LargePlain	1  "A or B:  Concrete or Cellular Steel Floor"
/* [  6] */ RadioButton	50  150   240   30	LargePlain	1  "C:  Glazing Systems"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The help resource for the same buttons:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;'DLGH'  32500  DLG_32500_JHP_UL {
1		"JHP_UL_JHP"			Button_0
2		"JHP_GA_JHP"			Button_1
3		"JHP_UL_ONLINE"			Button_2
4		"JHP_GA_ONLINE"			Button_3

5		"JHP_UL_AB"			RadioButton_0
6		"JHP_UL_C"			RadioButton_1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dialog class, in the .hpp file, for the same buttons:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;class JHP_UL_Dialog :		public DG::ModalDialog,
				public DG::ButtonItemObserver,
				public DG::CompoundItemObserver
{
protected:
	enum Controls {
		UL_JHPID = 1,
		GA_JHPID = 2,
		UL_ONLINEID = 3,
		GA_ONLINEID = 4,

		UL_ABID = 5,
		UL_CID = 6,&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;	DG::Button UL_JHP_Button;
	DG::Button GA_JHP_Button;
	DG::Button UL_ONLINE_Button;
	DG::Button GA_ONLINE_Button;

	DG::RadioButton UL_AB_Radio;
	DG::RadioButton UL_C_Radio;
...
	virtual void ButtonClicked(const DG::ButtonClickEvent&amp;amp; ev) override;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The definition of the dialog class, for the same buttons:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;JHP_UL_Dialog::JHP_UL_Dialog() :
	DG::ModalDialog(ACAPI_GetOwnResModule(), 32500, ACAPI_GetOwnResModule()),
	UL_JHP_Button(GetReference(), UL_JHPID),
	GA_JHP_Button(GetReference(), GA_JHPID),
	UL_ONLINE_Button(GetReference(), UL_ONLINEID),
	GA_ONLINE_Button(GetReference(), GA_ONLINEID),

	UL_AB_Radio(GetReference(), UL_ABID),
	UL_C_Radio(GetReference(), UL_CID),&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;void JHP_UL_Dialog::ButtonClicked(const DG::ButtonClickEvent&amp;amp; ev)
{
	if (ev.GetSource() == &amp;amp;Cancel_Button)
		PostCloseRequest(Accept);
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And finally, my 'Cancel' button action:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;void JHP_UL_Dialog::ButtonClicked(const DG::ButtonClickEvent&amp;amp; ev)
{
	if (ev.GetSource() == &amp;amp;Cancel_Button)
		PostCloseRequest(Accept);
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Everything seems to be coordinated with regard to control names and ID numbers.&amp;nbsp; But my 'Cancel' button [further down the list of 20+ other controls] does not cancel.&lt;BR /&gt;&lt;BR /&gt;And if I hover over each control, I can see the name assigned to it.&lt;/P&gt;&lt;P&gt;For the first button, it is correct:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_5-1664227905706.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30158i77F11C17347A6EC8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_5-1664227905706.png" alt="MudratDetector_5-1664227905706.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;For the second, third, and fourth buttons, they are one off:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_7-1664228272137.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30160i67D0C55073685A7E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_7-1664228272137.png" alt="MudratDetector_7-1664228272137.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_8-1664228420742.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30161i1D987B0512A0AD87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_8-1664228420742.png" alt="MudratDetector_8-1664228420742.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_9-1664228554141.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30162iBE3DEA8D907E1D6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_9-1664228554141.png" alt="MudratDetector_9-1664228554141.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This offset continues throughout all the controls, until the very last one that is defined and the number of the offset has increased.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_10-1664228955202.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30163i9C55712AC195BE28/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_10-1664228955202.png" alt="MudratDetector_10-1664228955202.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;[Disregard 'OK04' - that is my way of confirming change when I build the new edits]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The complete dialog has buttons, radio buttons, a list box, and an image that will all be accessed, either by the user or programmatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have reviewed the 'Hello World' dialog example and other examples included in the API Kit.&lt;/P&gt;&lt;P&gt;I believe I understand [but obviously not] the relationship between:&lt;BR /&gt;-- the IDs used in the 'DLGH' help resource [2 "JHP_GA_JHP" Button_1]&lt;BR /&gt;-- the enums in the dialog class [GA_JHPID = 2] and [DG::Button GA_JHP_Button;]&lt;BR /&gt;-- the assignment of the ID to the button in the definition of the dialog class [GA_JHP_Button(GetReference(), GA_JHPID)]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT:&amp;nbsp; After posting, I saw the line in the .grc file for my red icon [/* [ ] */ Icon 20 100 135 35 JHP_UL_RED_B] and will be investigating the alignment once that is removed.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Can someone point me in the right direction?&lt;/P&gt;&lt;P&gt;Loads of thanks,&lt;BR /&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 22:15:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357145#M1136</guid>
      <dc:creator>MudratDetector</dc:creator>
      <dc:date>2022-09-26T22:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Box:  Assigning IDs to controls.  Which button is which</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357147#M1137</link>
      <description>&lt;P&gt;Hi Chris!&lt;BR /&gt;&lt;BR /&gt;I think your main issue is, that your item numbering is off. You cannot just leave out numbers for items. The numbering of items in the grc file e.g. "/* [&amp;nbsp; 1] */" are just comments and not instructions or specifications in the grc file! You could also leave out those comments. It's just a help to oneself to keep track of the item numbers. The items always get increasing number starting w/ 1, independent of you using them in the rest of your code or not. So the following snippet from your example is very misleading:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;'GDLG' 32500  Modal	0	   0  650  620		"JHP:  UL Fire Assembly details" {
/* [  1] */ Button	 20    40  135    35	LargePlain	"UL Assemblies - JHP"
/* [   ] */ Icon	 20   100  135    35	JHP_UL_RED_B
/* [  2] */ Button	179    40  135    35	LargePlain	"GA Assemblies - JHP"
/* [  3] */ Button	338    40  135    35	LargePlain	"UL Assemblies - ONLINE"
/* [  4] */ Button	497    40  135    35	LargePlain	"GA Assemblies - ONLINE"

/* [   ] */ GroupBox	20  100   295  250	LargePlain	Primary	"Floor-Ceilings:"
/* [  5] */ RadioButton	50  120   240   30	LargePlain	1  "A or B:  Concrete or Cellular Steel Floor"
/* [  6] */ RadioButton	50  150   240   30	LargePlain	1  "C:  Glazing Systems"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;I think a better way would be to have the following comments:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;'GDLG' 32500  Modal	0	   0  650  620		"JHP:  UL Fire Assembly details" {
/* [  1] */ Button	 20    40  135    35	LargePlain	"UL Assemblies - JHP"
/* [  2] */ Icon	 20   100  135    35	JHP_UL_RED_B
/* [  3] */ Button	179    40  135    35	LargePlain	"GA Assemblies - JHP"
/* [  4] */ Button	338    40  135    35	LargePlain	"UL Assemblies - ONLINE"
/* [  5] */ Button	497    40  135    35	LargePlain	"GA Assemblies - ONLINE"

/* [  6] */ GroupBox	20  100   295  250	LargePlain	Primary	"Floor-Ceilings:"
/* [  7] */ RadioButton	50  120   240   30	LargePlain	1  "A or B:  Concrete or Cellular Steel Floor"
/* [  8] */ RadioButton	50  150   240   30	LargePlain	1  "C:  Glazing Systems"&lt;/LI-CODE&gt;&lt;P&gt;and then adapt the numbers in your files accordingly.&lt;BR /&gt;&lt;BR /&gt;This also explains why the help is off by one in the for buttons 2-4 (in your old numbering) and why later the offset increases since you leave out an additional item (the groupBox "Floor-Ceilings:".&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Bernd&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 22:30:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357147#M1137</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2022-09-26T22:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Box:  Assigning IDs to controls.  Which button is which</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357148#M1138</link>
      <description>&lt;P&gt;Hi Chris,&lt;BR /&gt;&lt;BR /&gt;I'm trying again to answer this. I think my last reply is lost. (Mentioning this just in case there are 2 answers from me popping up).&lt;BR /&gt;&lt;BR /&gt;Your main issue is, that the item numbering is wrong. The numbering in the .grc file, e.g. "/* [&amp;nbsp; 1] */", are just comments and do not specify anything. The real numbering is just the order of appearance in the list. So there's no option to skip items in this numbering. I adapted your corresponding snippet with "more correct" comments:&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;'GDLG' 32500  Modal	0	   0  650  620		"JHP:  UL Fire Assembly details" {
/* [  1] */ Button	 20    40  135    35	LargePlain	"UL Assemblies - JHP"
/* [  2] */ Icon	 20   100  135    35	JHP_UL_RED_B
/* [  3] */ Button	179    40  135    35	LargePlain	"GA Assemblies - JHP"
/* [  4] */ Button	338    40  135    35	LargePlain	"UL Assemblies - ONLINE"
/* [  5] */ Button	497    40  135    35	LargePlain	"GA Assemblies - ONLINE"

/* [  6] */ GroupBox	20  100   295  250	LargePlain	Primary	"Floor-Ceilings:"
/* [  7] */ RadioButton	50  120   240   30	LargePlain	1  "A or B:  Concrete or Cellular Steel Floor"
/* [  8] */ RadioButton	50  150   240   30	LargePlain	1  "C:  Glazing Systems"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;That also explains why the dialog help seems to be off by 1 at first and then off by 2 buttons. So you'd have to adapt all your numbering to the above snippet. You still can skip items in your code files but you have to use the correct numbering. E.g. this should work:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;class JHP_UL_Dialog :		public DG::ModalDialog,
				public DG::ButtonItemObserver,
				public DG::CompoundItemObserver
{
protected:
	enum Controls {
		UL_JHPID = 1,
		GA_JHPID = 3,
		UL_ONLINEID = 4,
		GA_ONLINEID = 5,

		UL_ABID = 7,
		UL_CID = 8,&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Best,&lt;BR /&gt;Bernd&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 22:38:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357148#M1138</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2022-09-26T22:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Box:  Assigning IDs to controls.  Which button is which</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357150#M1139</link>
      <description>&lt;P&gt;The 'yet to be determined' red icon was part of it.&amp;nbsp; Failing to ID GroupBox controls around my radio buttons was another part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; have no longer lost track of which button is which!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MudratDetector_0-1664234437000.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/30164i1CCD621E47D26972/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MudratDetector_0-1664234437000.jpeg" alt="MudratDetector_0-1664234437000.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 23:21:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357150#M1139</guid>
      <dc:creator>MudratDetector</dc:creator>
      <dc:date>2022-09-26T23:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Box:  Assigning IDs to controls.  Which button is which</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357164#M1140</link>
      <description>&lt;P&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/8527"&gt;@BerndSchwarzenbacher&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;Sorry, your posts got auto detected as spam, probably due to the content.&lt;/P&gt;
&lt;P&gt;I have now released them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 02:46:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357164#M1140</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2022-09-27T02:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog Box:  Assigning IDs to controls.  Which button is which</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357221#M1141</link>
      <description>&lt;P&gt;Bernd,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I discovered shortly after the initial post.&amp;nbsp; I removed unused controls and renumbered all remaining controls, even ones I had no intention of accessing or modifying.&amp;nbsp; That is what tripped me up was not providing an ID for controls I knew I was not going to access or modify.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did understand that /* [&amp;nbsp; #] */ is only a comment and that was helpful in keeping track of what was what.&amp;nbsp; I left blank comments for controls that I was not numbering.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks to you for being Mr. AnswerMan for my continued discovery of dialog boxes and the Archicad API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 14:50:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Dialog-Box-Assigning-IDs-to-controls-Which-button-is-which/m-p/357221#M1141</guid>
      <dc:creator>MudratDetector</dc:creator>
      <dc:date>2022-09-27T14:50:15Z</dc:date>
    </item>
  </channel>
</rss>

