Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

d_vaibhav

@d_vaibhav
About
Posts
7
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • using delegate
    D d_vaibhav

    hi Senthil, Thanks for the help. Now i have got the perfect clue. now i am not using gelegates, i am using reflection instade. thanks, vaibhav.

    C# tutorial question

  • using delegate
    D d_vaibhav

    I have a sample class as shown below
    public class MyAirport
    {
    delegate void ProcessAirport(string s);
    ProcessAirport pa;
    public MyAirport(string sAirportName)
    {
    pa = new ProcessAirport(ProcessMumbai);
    }
    private void ProcessMumbai(string s)
    {
    MessageBox.Show(s);
    }
    public void ProcessAirport()
    {
    pa("Hello Mumbai");
    }
    }

    in the class above i have used created a delegate instance with statement
    pa = new ProcessAirport(ProcessMumbai);
    where in i am passing 'ProcessMumbai' directly as a function pointer to ProcessAirport delegate.

    now my question is : can i pass function pointer referance by string like,

    pa = new ProcessAirport("ProcessMumbai");

    if so, please guide.

    thanks, vaibhav

    C# tutorial question

  • Oracle schema
    D d_vaibhav

    you can use select * from tab to get the list of all tables vaibhav.

    Database database question oracle xml

  • no keypressed event.. uh oh!
    D d_vaibhav

    hi, if u want to avoide postback after press of enter key, you can avoide using input type as submit. u can use the following tag. this will atleast restrict the enter key behavior. regards, vaibhav.

    ASP.NET question csharp help

  • Positioning web page after edit or cancel event on datagrid
    D d_vaibhav

    hi there, You can set the Page's SmartNavigation property to true to maintain users state. regards, vaibhav.

    ASP.NET question

  • HOW to Return to the Previous Position??
    D d_vaibhav

    hi there, :) You can set the Page's SmartNavigation property to true to maintain users state. this works only during postbacks. and includes heavy scripts in code. regards, vaibhav.

    ASP.NET question tutorial

  • Linefeed in normal text
    D d_vaibhav

    Hi Brendan, If you are using .net you can replace all your crlf's with Environment.NewLine or you can use \r\n as well regards vaibhav dhandarphale

    Web Development question html database help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups