|
Sharma Dinesh Kumar wrote: so i am using the paging in datagridview in winform
Ok, so where is the prboblem?
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
How to make a Datagrid view like ASP.NEt Gridview ....i want example
how make it
|
|
|
|
|
The GridView control is what you need. And, probably, a basic winforms book.
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
Sharma Dinesh Kumar wrote: i have 500000 record in make it fast so that user not to wait.
what is your requirement... what is the error you are getting... plzzzzzzz be clear while posting question...
|
|
|
|
|
Sharma Dinesh Kumar wrote: have 500000 record in make it fast so that user not to wait.
so i am using the paging in datagridview in winform
Sounds like a good plan. Reading a half million records at a time is obviously insane. Did you want an award, or did you have a question ?
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
Hi Christian,
500k rows (each maybe a few hundred bytes) is NO problem, if you are using FTL data transfer .... IF the user has his BORG implants online.
|
|
|
|
|
*grin* yeah, the borg can probably negotiate that level of data. Silly me.
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
hi all !
i wana get all the post data
i am using socket level tracking it takes times.
can any one suggest some other techniques
Thanks
|
|
|
|
|
What post?
Are your mail men as bad as mine, and you want to know how many letters they're carrying and their route?
Henry Minute
Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”
|
|
|
|
|
hi all
i am reading XML using XMLTextReader but can't get whole line
my XML is as follows
<para>This is test <b>XML</b> yes </para>
when i read
XmlReaderObject.Value then i get only [B]This is text[/B]
but i want whole line as
[B]This is test <b>XML</b> yes [/B]
how can i code it ???
any hint ??
thankx in advance
koolprasad2003
Be a good listener...Because Opprtunity knoughts softly...N-Joy
|
|
|
|
|
You're asking for the root node. This is poorly formed XML, to say the very least. Perhaps XMLTextReader demands a higher standard ? I don't know, but if you use XMLDocument, I'd expect the root contents to give you what you want. Your XML format sucks tho.
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
Adding to what CG said,
XML parser will take <b> as a new node rather than taking as the content of <para> . You need to read about CDATA[^] section and create a well formed XML.
|
|
|
|
|
Oh, I didn't even spot that the b was html, I never use b, I use em and strong in my HTML.
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
my decoder cannot detect picture of webcam. i change the brightness and contrast. some time can detect but some times cannot. i know thats picture problem. now i edit the image but its useless. can i change webcam setting or do any changes to my code..here is my code....
private void btnDecode_Click_1(object sender, EventArgs e)
{
try
{
DeviceManager manager = new DeviceManagerClass();
Device d = null;
foreach (DeviceInfo info in manager.DeviceInfos)
{
d = info.Connect();
}
Item item = d.ExecuteCommand(CommandID.wiaCommandTakePicture);
foreach (string format in item.Formats)
{
WIA.ImageFile imagefile = item.Transfer(format) as WIA.ImageFile;
{
}
imagefile.SaveFile("d:\\4.jpg");
Bitmap image = new Bitmap("d:\\4.jpg");
Bitmap bm = new Bitmap(image, 200, 150);
System.Drawing.Bitmap TempBitmap = bm;
float brightness = 0.6f;
float constrast = 6f;
System.Drawing.Bitmap NewBitmap = new System.Drawing.Bitmap(TempBitmap.Width, TempBitmap.Height);
System.Drawing.Graphics NewGraphics = System.Drawing.Graphics.FromImage(NewBitmap);
float[][] FloatColorMatrix ={
new float[] {constrast, 0, 0, 0, 0},
new float[] {0, constrast, 0, 0, 0},
new float[] {0, 0, constrast, 0, 0},
new float[] {0, 0, 0, constrast, 0},
new float[] {brightness, brightness, brightness, 1, 1}
};
System.Drawing.Imaging.ColorMatrix NewColorMatrix = new System.Drawing.Imaging.ColorMatrix(FloatColorMatrix);
System.Drawing.Imaging.ImageAttributes Attributes = new System.Drawing.Imaging.ImageAttributes();
Attributes.SetColorMatrix(NewColorMatrix);
NewGraphics.DrawImage(TempBitmap, new System.Drawing.Rectangle(0, 0, TempBitmap.Width, TempBitmap.Height), 0, 0, TempBitmap.Width, TempBitmap.Height, System.Drawing.GraphicsUnit.Pixel, Attributes);
Attributes.Dispose();
NewGraphics.Dispose();
picDecode.Image = NewBitmap;
break;
}
QRCodeDecoder decoder = new QRCodeDecoder();
String decodedString = decoder.decode(new QRCodeBitmapImage(new Bitmap(picDecode.Image)));
txtDecodedData.Text = decodedString;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
A S E L A
|
|
|
|
|
Your problem is not going to change. A webcam photo of a barcode is never going to be a scanned image of a barcode, and you need a much more complex algorithm to read it. I would imagine you could do some sort of auto cleanup to make sure the lines are straight ( a deskew ) and that the brightness/contrast levels are good, but I don't think you will ever get 100% success.
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
ya but how they do the mobile barcode decoder...? i mean mobile phone application...how it works...?
A S E L A
|
|
|
|
|
With a ton of image processing to find the barcode amongst the noise. That's what I keep telling you.
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
hi can just please tell me what kind of filters i should do for the omage....
noise filer and etc?
A S E L A
|
|
|
|
|
I told you already. You need to deskew, you need to remove noise and you need to get your balance right
Christian Graus
Driven to the arms of OSX by Vista.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
I can do things with my brain that I can't even google. I can flex the front part of my brain instantly anytime I want. It can be exhausting and it even causes me vision problems for some reason. - CaptainSeeSharp
|
|
|
|
|
Christian Graus wrote: I told you already
What's this he asked for the codz - why won't you snd the codz, advice will not get the job done he needs the codz......
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Hi,
I wanted to get a call chain(stack trace) starting from my code extended to a third party library which I don't have the source code access - the type of call chain shown in the exception window in visual studio when an exception occurs. How can I do that? I'm using VSTS 2008.
In addition, is there any difference between "call stack" and "stack trace"?
Thanks,
|
|
|
|
|
Hi,
Environment.StackTrace
A "stack trace" is the result of walking on the "call stack" to find methods and line numbers that have lead to the current position. They often are used interchangeably.
Luc Pattyn [Forum Guidelines] [My Articles]
DISCLAIMER: this message may have been modified by others; it may no longer reflect what I intended, and may contain bad advice; use at your own risk and with extreme care.
|
|
|
|
|
Thanks for the reply.
With the method I was able to see the previous stack trace that I can "step into", but when it came to untouchable third party calls in between, it didn't work.
Thanks,
|
|
|
|
|
hi friends, and wanna ask you:
1. what is the different between this code
catch (OleDbException ex)
{
throw ex;
}
and
catch (OleDbException ex)
{
throw new Exception(ex.Messege);
}
which is the best? or when should we use throw new Exception or just throw ex?
2. What about close() and dispose() method, what is the different?
if there is objek like OleDbDataReader which have close() and method() inside,
should we write objOleDbDataReader.close() and objOleDbDataReader.dispose() together in our code? why?
if we should only use one of them, which one should we use, close() or dispose() ?
Thanks..
Regards,
Willy
|
|
|
|
|
Hi,
welcome to CodeProject.
You could have found most of the answers yourself, by reading some of the documentation.
Here is a short reply:
1. new Exception(ex.Message) is non-sense, it is throwing away all information (inner exceptions, stack trace, whatever) and just keeping a one-line message.
2. simply catching an exception and throwing it again does not make much sense, you could as well not catch it in the first place.
3. the correct way to rethrow an exception is by just writing throw; which again only makes sense if you have more code in the catch block (e.g. logging something).
4. some classes have both a Close() and a Dispose() method, often one of these calls the other. Such details aren't very well documented, it helps to use this Reflector[^] tool which enables you to see a lot of internals of .NET classes.
Luc Pattyn [Forum Guidelines] [My Articles]
DISCLAIMER: this message may have been modified by others; it may no longer reflect what I intended, and may contain bad advice; use at your own risk and with extreme care.
|
|
|
|