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
K

kumarprabhakar74

@kumarprabhakar74
About
Posts
45
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible.

    abc

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    Thanks for reply. We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible.

    abc

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    Thanks for reply. We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible. Can you help us to make these functions are visible.

    abc

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    Thanks for reply. We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible. Can you help us to make these functions are visible. Thanks, Kumar Prabhakar

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    Thanks for reply. We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible. Can you help us to make these functions are visible. Thanks, Kumar Prabhakar

    abc

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    Thanks for reply. We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible. Can you help us to make these functions are visible. Thanks, Kumar Prabhakar

    abc

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    Thanks for reply. We have created object at run time on the basis of derived class that's why we had used base class object but we had faced his dificulty. All the abstract methods of base class which is override in derived class is visible but public functions of derived class are not visible. Can you help us to make these functions are visible. Thanks, Kumar Prabhakar

    abc

    C# help

  • derived class function is not accessible from base class object of type derived
    K kumarprabhakar74

    public class test { public void function1() { } } public class test1 : test { public void function2() { } } test t; test1 t1 = new test1(); t = t1; t.function1(); t.function2(); //Show error

    abc

    C# help

  • Can set value in HtmlInputFile
    K kumarprabhakar74

    I have HtmlInputFile control on asp.net page. It will take the value through browse button but it will not take the user value at the time of asp.net form load. For example Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here myFile.Value = "d:\myfile\test.txt" End Sub myFile is name of HtmlInputFile control. When I execute this page it generates the error like this The value property on HtmlInputFile is not settable. Can anybodu suggest how to set value of HtmlInputFile control. Thanks & Regards, Kumar Prabhakar

    abc

    ASP.NET tutorial csharp asp-net help

  • xml file syncronization
    K kumarprabhakar74

    Thanks for reply. Do you think instead of locking file, We have to used xQuery to Insert, Navigate, Update and Delte xml data. Do you have any example for using xQuery or any link of article who use xQuery for above operation.

    abc

    ASP.NET xml tutorial

  • xml file syncronization
    K kumarprabhakar74

    I have an xml file. This xml file is used by multiuser. How to store changes made by multi user at the same time to no user lost their changes from xml file.

    abc

    ASP.NET xml tutorial

  • how to store state of form after response.redirect
    K kumarprabhakar74

    In state Bag

    abc

    ASP.NET css database data-structures help tutorial

  • web/http automation
    K kumarprabhakar74

    I want to record action of web page like requesting of url, input in textbox, click on button. Record action should generate .net code. So next time I only run record action which save my time to do navigation from scratch

    abc

    Visual Basic csharp testing tools tutorial

  • web or http automation
    K kumarprabhakar74

    Is there any way to generate macros for web page icluding link,textbox,button etc.

    abc

    Visual Basic testing tools

  • web/http automation
    K kumarprabhakar74

    How to record web page link, button etc with .net. It is possible to automatic generate record code on any click on web page

    abc

    Visual Basic csharp testing tools tutorial

  • small question about Session("variables")
    K kumarprabhakar74

    Yes, It will be cleared after closing the browser.

    abc

    Visual Basic question tutorial

  • sql Table Lookup best methods?
    K kumarprabhakar74

    The simplest way is to use join in sql statement for i.e. select i.itemname, i.categorytype from item i inner join categorytype c on c.categorytype=i.categorytype pass above statement is sqlcommand object. Thanks & Regards Kumar Prabhakar

    abc

    Database database sysadmin tutorial question

  • SQL Mail
    K kumarprabhakar74

    Use xp_sendmail with variables EXEC xp_sendmail @recipients = 'robertk;laurac', @message = 'The master database is full.', @copy_recipients = 'anned;michaels', @subject = 'Master Database Status' Thanks & Regards Kumar Prabhakar

    abc

    Database html database sql-server sysadmin tutorial

  • VB.NET SQL procedures to return values
    K kumarprabhakar74

    dim comm as new sqlcommand("AddListing",connection) comm.commandtype=commandtype.storedprocedure 'For input parameters coom.parameters.add("@name","abc") comm.parameters.add("@nextid",sqldbtype.int).direction=parameterdirection.output comm.executenonquery comm.parameters("@nextid").value Thanks & Regards Kumar Prabhakar

    abc

    Database database csharp help

  • Access denied.
    K kumarprabhakar74

    Use application folder of system with system.environment.application. It will never give up access denied. Thanks & Regards Kumar Prabhakar

    abc

    Visual Basic help csharp sysadmin tutorial
  • Login

  • Don't have an account? Register

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