User Profile

Collapse

Profile Sidebar

Collapse
JOHNYKUTTY
JOHNYKUTTY
Last Activity: Mar 11 '11, 03:57 PM
Joined: Dec 30 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • JOHNYKUTTY
    started a topic How to retain user control property values
    in .NET

    How to retain user control property values

    Help
    I am new to c#.net,
    and i am developing an application.
    For that, I want to retain some property values.
    That is, for example,
    I changed the selected index of a combobox at the time of debugging the app, and my need is to retain this index after restarting my app(that is once closed and again started).
    Please help me to achieve this
    thanks in advance
    See more | Go to post

  • Emgu CV is a C# wrapper of open cv(open source computer vision library) which is developed by intel corporation and is consists of some routines for computer vision programming.

    You can lean more about open cv here
    See more | Go to post

    Leave a comment:


  • the exception message is like this
    The type initializer for 'Emgu.CV.cvInvo ke' threw an exception
    can you explain the reason now
    See more | Go to post

    Leave a comment:


  • How to convert system.drawing.bitmap to emgu.cv.image in C#?

    i have to convert an image variable(system .drawing.bitmap orsystem.drawin g.image or AForge.Imaging. Image) to Emgu.CV.Image type i have used the code below
    Code:
    Image<Bgr, Byte> cvimage = new Image<Bgr, Byte>(bmp);
    but it is not working but also crashing the program
    When i put this code in a try block then it is not crashing.
    anyone can help me?????????????
    See more | Go to post

  • How to set a key in application configuration file?

    Hey,
    I am developing an application in C#.net, i want to store some settings in application configuration file. iused the followin code
    Code:
                ConfigurationSettings.AppSettings.Set("folder", txtfolder.Text.Trim());
    but it is not working properly. Anyone can help me???????
    thank you
    See more | Go to post

  • JOHNYKUTTY
    started a topic How to implement seo on asp.net?

    How to implement seo on asp.net?

    I want to do Search engine optimization on asp.net. Is this is possible to implement this on LAN. Page ranking, indexing and meta data are the features i wish to add
    See more | Go to post

  • JOHNYKUTTY
    started a topic How to track hand from an image?

    How to track hand from an image?

    hey,
    anybody can help me??????????
    I am developing an application, for that i want to track the position of hand from an image.How can I implement this. I know, that skin detection is the best method, but how can i distinguish the hand from the image.
    Plz reply if anybody knows the solution
    Thank you
    See more | Go to post

  • JOHNYKUTTY
    started a topic How can I send an SMS from my C# application

    How can I send an SMS from my C# application

    Hey,
    I want to send an SMS from my C# application.
    How can i do this. I have no GSM/GPRS modem, my mobile phone
    is gprs compatible. Can i send sms using my mobile phone

    Anybody can help me? plz.....

    Thank you
    See more | Go to post

  • Simulate mouse click

    Hai friend,
    use the code below to simulate mouse click
    Code:
    using System.Runtime.InteropServices;
    
    private const UInt32 MOUSEEVENTF_LEFTDOWN = 0x0002;
    private const UInt32 MOUSEEVENTF_LEFTUP = 0x0004;
    [DllImport("user32.dll")]
            private static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint dwData, uint dwExtraInf);
    private
    ...
    See more | Go to post

    Leave a comment:


  • JOHNYKUTTY
    started a topic How can i use mouse_event method from user32.dll
    in .NET

    How can i use mouse_event method from user32.dll

    How can i use mouse_event method from user32.dll
    Code:
    [DllImport("user32.dll")]
            private static extern void mouse_event(UInt32 dwFlags, UInt32 dx, UInt32 dy, UInt32 dwData, IntPtr dwExtraInf);
    Can you explain the arguments of the above method
    See more | Go to post
No activity results to display
Show More
Working...