File tree Expand file tree Collapse file tree 6 files changed +42
-15
lines changed
Filter options
Expand file tree Collapse file tree 6 files changed +42
-15
lines changed
Original file line number Diff line number Diff line change
1
+ [* .cs ]
2
+
3
+ # CS1591: Missing XML comment for publicly visible type or member
4
+ dotnet_diagnostic.CS1591.severity = none
Original file line number Diff line number Diff line change 175
175
supertip=" This feature removes all nonprintable characters from text and trims leading and trailing spaces."
176
176
keytip =" CLE"
177
177
/>
178
- <button
179
- id=" btnZeroToNull"
180
- label=" Update to NULL"
181
- onAction=" OnAction"
182
- getEnabled=" GetEnabled"
183
- imageMso=" RecordsRefreshRecords"
184
- size=" normal"
185
- screentip=" Convert to NULL"
186
- supertip=" Replaces the zero string values with 'NULL'"
187
- keytip =" NUL"
178
+
179
+ <box id =" boxBlankValues" boxStyle =" horizontal" >
180
+ <button
181
+ id =" btnZeroToNull"
182
+ label =" Update Blanks"
183
+ onAction =" OnAction"
184
+ getEnabled =" GetEnabled"
185
+ imageMso =" RecordsRefreshRecords"
186
+ screentip =" Update blank values"
187
+ supertip =" Replaces the zero string values"
188
+ keytip =" NUL"
188
189
/>
190
+ <editBox
191
+ id =" txtBlankValuesReplacement"
192
+ label =" "
193
+ getText =" GetText"
194
+ onChange =" OnChange"
195
+ sizeString = " XXXXXX"
196
+ screentip =" Blank Values Replacement"
197
+ supertip =" This value will replace the zero string values in the table"
198
+ />
199
+ </box >
189
200
<button
190
201
id=" btnClearInteriorColor"
191
202
label=" Clear Interior Color"
Original file line number Diff line number Diff line change 113
113
<DocumentationFile >bin\Debug\ScriptHelp.xml</DocumentationFile >
114
114
<RunCodeAnalysis >true</RunCodeAnalysis >
115
115
<Prefer32Bit >false</Prefer32Bit >
116
+ <NoWarn >1591</NoWarn >
116
117
</PropertyGroup >
117
118
<!--
118
119
This section defines properties that are set when the "Release" configuration is selected.
258
259
<EmbeddedResource Include =" TaskPane\TableData.resx" >
259
260
<DependentUpon >TableData.cs</DependentUpon >
260
261
</EmbeddedResource >
262
+ <None Include =" .editorconfig" />
261
263
<None Include =" AnthonyDuguid.pfx" />
262
264
<None Include =" packages.config" />
263
265
<None Include =" Resources\ScriptTypeTSql.png" />
272
274
<None Include =" Resources\SaveCode.png" />
273
275
<None Include =" Resources\SaveVersion.png" />
274
276
<None Include =" Resources\camera.png" />
275
- <Content Include =" Resources\ScreenToGif.exe" >
276
- <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
277
- </Content >
278
277
<None Include =" Resources\ScriptTypeMarkdown.png" />
279
278
<None Include =" Resources\ScriptTypeMarkup.png" />
280
279
<Content Include =" sqlceca35.dll" >
Original file line number Diff line number Diff line change 1
1
2
2
Microsoft Visual Studio Solution File, Format Version 12.00
3
- # Visual Studio 14
4
- VisualStudioVersion = 14 .0.24720.0
3
+ # Visual Studio Version 16
4
+ VisualStudioVersion = 16 .0.30320.27
5
5
MinimumVisualStudioVersion = 10.0.40219.1
6
6
Project ("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" ) = "ScriptHelp" , "ScriptHelp.csproj" , "{2D2477A6-DC2F-4D3E-AE1B-8392C7AB56E4}"
7
7
EndProject
8
+ Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = "Solution Items" , "Solution Items" , "{1F66CFCD-87EC-41DC-A5AF-CAD232010A15}"
9
+ Project Section (SolutionItems ) = preProject
10
+ .editorconfig = .editorconfig
11
+ EndProject Section
12
+ EndProject
8
13
Global
9
14
GlobalSection (SolutionConfigurationPlatforms ) = preSolution
10
15
Debug| Any CPU = Debug| Any CPU
19
24
GlobalSection (SolutionProperties ) = preSolution
20
25
HideSolutionNode = FALSE
21
26
EndGlobalSection
27
+ GlobalSection (ExtensibilityGlobals ) = postSolution
28
+ SolutionGuid = {9EB2C0FB-C404-4A05-ABE0-C48B56139645}
29
+ EndGlobalSection
22
30
EndGlobal
Original file line number Diff line number Diff line change @@ -364,6 +364,8 @@ public string GetText(Office.IRibbonControl control)
364
364
return Properties . Settings . Default . Table_ColumnTableAlias ;
365
365
case "txtColumnSeparateValuesDelimiter" :
366
366
return Properties . Settings . Default . Table_ColumnSeparateValuesDelimiter . ToString ( ) ;
367
+ case "txtBlankValuesReplacement" :
368
+ return Properties . Settings . Default . Table_ColumnScriptNull ;
367
369
default :
368
370
return string . Empty ;
369
371
}
@@ -689,6 +691,9 @@ public void OnChange(Office.IRibbonControl control, string text)
689
691
case "txtColumnSeparateValuesDelimiter" :
690
692
Properties . Settings . Default . Table_ColumnSeparateValuesDelimiter = Convert . ToChar ( text ) ;
691
693
break ;
694
+ case "txtBlankValuesReplacement" :
695
+ Properties . Settings . Default . Table_ColumnScriptNull = text ;
696
+ break ;
692
697
}
693
698
}
694
699
catch ( Exception ex )
You can’t perform that action at this time.
0 commit comments