Click here to Skip to main content
15,889,865 members

Comments by Mattias Högström (Top 14 by date)

Mattias Högström 26-Mar-14 2:58am View    
How is the picture added to the report?
Is it linking to a picture on the hard drive, or is it embedded in the report?
A web server cannot follow links to the hard disk. It is a security issue.
Mattias Högström 25-Mar-14 5:02am View    
I haven't worked with Linq for a couple of years.
I remember vaguely that I used an extension method back in the days for this to work-around it.
Good finding.
Mattias Högström 25-Mar-14 5:01am View    
Deleted
I haven't worked with Linq for a couple of years.
I remember vaguely that I used an extension method back in the days for this to work-around it.
Good finding.
Mattias Högström 24-Mar-14 17:40pm View    
int KeyWordCount=2;
//Define the Searching Keywords;
string *Keywords=new string[KeyWordCount];
Keywords[2]="gmail";
Keywords[0]="facebook";

The indexes look bad.

The other people are right, without the datafile it is hard to know where it crashes.

Crashes are really easy to find in a debugger.
If you have memory overruns or underruns,
try running Valgrind on the application.
Mattias Högström 7-Feb-14 6:55am View    
How much time is a long time?
100,000 rows is quite a lot for a single report. Cant you implement some form of preview.
Retrieve 200 for displaying first and retrieve the full data report in the background? Or implement some kind of paging where you retrieve data on demand.