Click here to Skip to main content
15,908,674 members

Comments by Shine Ashraf (Top 12 by date)

Shine Ashraf 18-Apr-17 7:06am View    
Adobe ActiveX controls for showing pdf files, and setting target platform to 32 or 64 is not practicable.
Shine Ashraf 6-Apr-17 0:22am View    
I have installed latest Adobe reader DC, and How can I update AcroPDFLib.dll ?
Shine Ashraf 2-Jul-13 6:56am View    
use foreach loop and fetch and merge each string item from array.
Shine Ashraf 18-Jun-13 5:51am View    
Have you tried,

foreach (DataGridViewColumn col in dataGridView1.Columns)
{

}
Shine Ashraf 14-Jun-13 4:35am View    
Try this,

string result = "1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1";
char[] temp = result.ToCharArray();
string singlText;
foreach (char chr in temp)
{
if (chr == ',')
continue;
int count = result.Count(f => f == chr);
if (count == 1)
{
singlText = chr.ToString();
break;
}
}