Search Result

Collapse
8 results in 0.0015 seconds.
Keywords
Members
Tags
interface
  •  

  • tmccar
    started a topic Error: Does not implement interface member

    Error: Does not implement interface member

    Code:
    namespace HelloWorld
        
    {
       public class VaultFormsCmdExt : IExtension
        
       {
           public MyCustomTabControl tabControl;
    
           public static PropInst[] fileProperties = new PropInst[] { null };
    
            public static PropDef[] propDefs = new PropDef[] { null };
    
            public static File selectedFile = null;



    I am getting this message...
    See more | Go to post
    Last edited by Frinavale; Oct 12 '11, 05:47 PM. Reason: Added code tags. Please post code in code tags.

  • Saumitra Kumar Paul
    started a topic .net interfaces project type
    in .NET

    .net interfaces project type

    Dear friends,

    I am planning to use interfaces in my .net project.

    I would like to add a new project "MyInterfac es" in my existing solution. "MyInterfac es" intends to contain all the necessary interfaces of the solution.
    But i am somewhat confused about the project type. What type of project should i choose to start "MyInterfac es"? Class Library, or something else?

    ...
    See more | Go to post

  • ayan biswas
    started a topic Problems with comparable interface
    in Java

    Problems with comparable interface

    I got this code form "Head First Java".

    Code:
    class Song implements Comparable<Song>{  
    String art;  
    String tit;  
    Song(String a,String t)  
    {  
    tit=t;  
    art=a;  
    }  
    public int compareTo(Song s)  
    {  
    return title.compareTo(s.getTitle());  
    }  
    String getTitile()  
    {}  
    String getAuthor()  
    {}  
    }  
    class Songsort{
    ...
    See more | Go to post
    Last edited by Dheeraj Joshi; Apr 8 '11, 03:39 AM. Reason: Please use code tags to post code block

  • Samuel Jones
    started a topic How to monitor physical ports on a PC?

    How to monitor physical ports on a PC?

    I am looking to develop an interface to monitor traffic on a computer's USB/Serial ports.

    How would I accomplish this?

    I am just simply looking for a method on how to do it, the rest I can take care of.

    Thanks in advance.
    See more | Go to post

  • PKREMER
    started a topic Linux network: Network interface parameters
    in C

    Linux network: Network interface parameters

    Hi all! I'm joining the forum with my first question:

    Each time you start a network interface that uses DHCP there are parameters such as DNS server and IP gateway that are defined. Assuming that I have several interfaces via DHCP, How can I get these parameters for a specific interface? Using C code?
    See more | Go to post

  • urbn
    started a topic Visual studios interface menu name.

    Visual studios interface menu name.

    I've been searching for this answer for a few hours now. I even went to a local book store and looked through all their visual studio realted books.

    What is the name of the drop down menu in visual studios below the tabs of files your working on that displays the "Client objects & events" or "General" and "Decelarati ons" drop down menus.

    Is it something like the "object viewer"?...
    See more | Go to post

  • Agnieszka
    started a topic Problem with binding interface to DataGridView
    in .NET

    Problem with binding interface to DataGridView

    Hello,

    I developed two interfaces, one of them inherits from the another one. Then I wanted to set DataGridView datasource on the inherited interface - and, what a shame - it displays only the properties declared in the inherited interface, and ignores the properties declared in a basic interface.
    I found some solution, that I should write my own TypeConverter for my interface and override GetProperties method, but I couldn't...
    See more | Go to post

  • athar258
    started a topic Interface rendering issues

    Interface rendering issues

    hi all,
    i am working on a project, the details of the projects are not relevant so I am omitting that, the interface and the code behind are working smoothly, the real problem that i am facing is that, when i try to run the exe file on different computers (e.g on vista using different resolution than mine, or XP) the interface would not render properly, for example if i left align a label and a textbox on my .net IDE, and run it successfully,...
    See more | Go to post
Working...