Skip to content

Commit

Permalink
Better message about the Issue #822
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Nov 17, 2022
1 parent 2054607 commit 1bfbeb1
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
20 changes: 20 additions & 0 deletions FetchXmlBuilder/DockControls/XmlContentControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,26 @@ private void txtXML_KeyUp(object sender, KeyEventArgs e)

private void rbQExStyle_Click(object sender, EventArgs e)
{
if (rbQExQExFactory.Checked)
{
MessageBox.Show(@"This feature is not yet implemented... #sorry
Do you like that idea?
Click the ""Help"" button to vote on this Issue #822 and it will be implemented, one day...!
More votes == released sooner.", "QueryExpressionFactory",
MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, 0,
"https://github.com/rappen/FetchXMLBuilder/issues/822");
if (fxb.settings.CodeGenerators.Style == CodeGenerationStyle.EarlyBoundEBG)
{
rbQExEarly.Checked = true;
}
else
{
rbQExLate.Checked = true;
}
return;
}
fxb.settings.CodeGenerators.Style = rbQExEarly.Checked ? CodeGenerationStyle.EarlyBoundEBG : rbQExQExFactory.Checked ? CodeGenerationStyle.QueryExpressionFactory : CodeGenerationStyle.LateBound;
fxb.UpdateLiveXML();
}
Expand Down
12 changes: 6 additions & 6 deletions FetchXmlBuilder/DockControls/XmlContentControl.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion FetchXmlBuilder/DockControls/XmlContentControl.resx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACC
DQAAAk1TRnQBSQFMAgEBBQEAAUABAAFAAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
DQAAAk1TRnQBSQFMAgEBBQEAAUgBAAFIAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
Expand Down

0 comments on commit 1bfbeb1

Please sign in to comment.