Click here to Skip to main content
15,878,945 members

Comments by abhishek.singh.valeteck (Top 22 by date)

abhishek.singh.valeteck 21-Dec-15 7:09am View    
Found a few B/W label printers but couldn't find any color label printer supported by Airprint
abhishek.singh.valeteck 10-Aug-15 6:42am View    
Please feel free to suggest another way to show PDF on HTML with links on the PDF clickable on HTML file too
abhishek.singh.valeteck 2-May-14 7:58am View    
I want my grids on reports to be rendered in same way after some calculations as I did in web app so that I can send it as attachment later on.
I can attach code to support my view
abhishek.singh.valeteck 2-May-14 4:21am View    
That's true (y)
abhishek.singh.valeteck 15-Apr-14 10:30am View    
This is some portions I converted to c#.
Can you please assist me where I am wrong

int check_definition(string row,string definition,string map,string seats,string command,int length,int count)
{
int n;
int s;
int n1;
int n2;
int m;
int c;
int i;
string definition;
string p;
string mb;
string[] mbuffer = new string[256];
string sb;
string[] sbuffer = new string[2001];
string cb;
string[] cbuffer = new string[256];

n = 0;
s = 0;
//mb = mbuffer;
//sb = sbuffer;
//cb = cbuffer;
while (definition != 0)
{
while (char.IsWhiteSpace(definition))
{
++definition;
}
if (!definition[0])
break;

if (*definition == '+')
break;
if (definition == ',')
{
++definition;
continue;
}

n1 = -1;
n2 = -1;
m = 0;

if (char.IsDigit(definition))
{
n1 = Convert.ToInt32(definition);
while (char.IsDigit(definition))
{
++definition;
}
while (char.IsWhiteSpace(definition))
{
++definition;
}
}

}
}
}
}