Tagged Questions

3
votes
8answers
6k views

OLEDB, Writing Excel cell without leading apostrophe

I'm writing to Excel file using OLEDB (C#). What I need is just RAW data format. I've noticed all cells (headers and values) are prefixed by apostrophe (') Is it a way to avoid adding them in all ...
2
votes
1answer
103 views

Can't use apostrophe in StringFormat of a XAML binding?

I'm trying use StringFormat to insert apostrophies (apostrophe's?) around a value that is bound to a TextBlock: <TextBlock Text="{Binding MyValue, StringFormat='The value is ...
1
vote
3answers
262 views

how to encode apostrophes for a webpage

i am using the cluetip plugin and the simple use case is to to put the content in a title attribute, like below: <a title='Top title|detail content'>Text</a> i am now running into ...
1
vote
1answer
352 views

Multiple rows for insert command - Apostrophe problem

I'm trying to insert multiple rows using SqlCommand from C# to SQL Server. I'm forming a simple query as below: Insert into temp(field1, field2) values (1, 'test'), (2, 'test1'), (3, 'test2') and so ...
0
votes
6answers
246 views

correct comment code for apostrophe s situation

Just curious how you would comment this line of code: string customerNm = customerNm.EndsWith("s") ? customerNm+= "'" : customerNm+="'s";