Click here to Skip to main content
Page 1 of 1,221
Page Size: 10 · 25 · 50


Author filtered by: Sergey Alexandrovich Kryukov [x]
Error While Uploading the image. by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
Don't write the type Image. Write the full name; either System.Web.UI.WebControls.Image or System.Drawing.Image, depending on which one you really...
how to view all directories of drive ina listview by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
You should rather use System.IO.Directory.GetDirectories:http://msdn.microsoft.com/en-us/library/c1sez4sc.aspx[^],http://msdn.microsoft.com/en-us/library/6ff71z1w.aspx[^],http://msdn.microsoft.com/en-us/library/ms143314.aspx[^].Also, you should better be aware of one unpleasant...
Answer 13 May 2013   license: CPOL
You could not answer my simple question so far, even after I asked you 3 times. OK, the site URI was enough for me. Here is the API you tried to keep silence about for such a long time: http://developer.worldweatheronline.com/[^].Sign up, obtain the documentation, and read on what it can do...
how to get label value using jquery by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
You don't need to use sibling if you already have the id value. Your selector will be just $("#lblSrNo"). You messed up all together.—SA
how to call vb methods from c# by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
The question makes no sense. You probably don't clearly see the difference between an application and a library.However, quite formally, any assembly can be used as a library: you can reference any valid assembly by another assembly, no matter if it compiled as application or a class...
C#
How can I display color values by each pixel? by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
This is the rare case when you can really use System.Drawing.Bitmap.GetPixel:http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.getpixel.aspx[^].Note that for any more or less massive read or write pixel operations GetPixel/SetPixel cannot be used, as they are prohibitively...
Answer 13 May 2013   license: CPOL
It your XML file contains some Unicode characters beyond ASCII, the console won't show then, replacing them by '?', as usually. You need to make console showing Unicode:Do this:System.Console.OutputEncoding = System.Text.Encoding.Unicode;This is confusing. System.Text.Encoding.Unicode...
C#
Learn c # how can slowly learn the API by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
Nobody can put one's own brain in your head. If you don't understand something in the API, which is quite well documented and simple enough, it means you need to take a step back and learn the basics: working mechanisms of variables, fields, methods, properties, method parameters and so on, how...
How To Create PrintEventArgs? by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
Wrong question. If you print, you never create this object; the library System.Drawing.Printing always does that when invoking the event. You cannot invoke it in principle. Every event can only be invoked in its declaring type. You cannot even write a derived class and invoke the event declared...
Change Busy Button Colour by Sergey Alexandrovich Kryukov
Answer 13 May 2013   license: CPOL
Instead of changing color, you should disable the button. Use the property IsEnabled or Enabled — it depends on the exact button type you did not bother to specify. Different UI libraries have different classes under the simple name "Button". When UI is involved, you always need to tag UI...
C#

Page 1 of 1,221
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid